CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 20:00:33 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100413161941
location: https://web.archive.org/web/20100413161941/https://github.com/breakpointer/ajax-rdoc/
server-timing: captures_list;dur=0.814553, exclusion.robots;dur=0.028547, exclusion.robots.policy;dur=0.014059, esindex;dur=0.016132, cdx.remote;dur=50.222412, LoadShardBlock;dur=435.740450, PetaboxLoader3.datanode;dur=150.349926, PetaboxLoader3.resolve;dur=166.256769
x-app-server: wwwb-app219
x-ts: 302
x-tr: 534
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app219; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 08 Aug 2025 20:00:34 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 13 Apr 2010 16:19:41 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "915a149172e0e67db953c7e1045fa7d4"
x-archive-orig-x-runtime: 202ms
x-archive-orig-content-length: 21847
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 13 Apr 2010 16:19:41 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 18 May 2008 00:35:42 GMT", ; rel="prev memento"; datetime="Tue, 02 Mar 2010 09:02:38 GMT", ; rel="memento"; datetime="Tue, 13 Apr 2010 16:19:41 GMT", ; rel="next memento"; datetime="Sat, 24 Jul 2010 06:19:41 GMT", ; rel="last memento"; datetime="Tue, 30 Jul 2024 17:44:54 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_15_20100413145133_crawl100-c/52_15_20100413161907_crawl101.arc.gz
server-timing: captures_list;dur=0.761099, exclusion.robots;dur=0.035541, exclusion.robots.policy;dur=0.016738, esindex;dur=0.018859, cdx.remote;dur=472.459871, LoadShardBlock;dur=404.960819, PetaboxLoader3.resolve;dur=497.600108, PetaboxLoader3.datanode;dur=144.397134, load_resource;dur=271.023000
x-app-server: wwwb-app219
x-ts: 200
x-tr: 1202
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
breakpointer's ajax-rdoc at master - GitHub
breakpointer / ajax-rdoc
- Source
- Commits
- Network (3)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sending Request…
Rdoc template and generator for Ruby source code that uses javascript to make searching for methods and classes very easy. — Read more

Brian Chamberlain (author)
Mon Nov 10 09:33:24 -0800 2008
name | age | message | |
---|---|---|---|
![]() |
README | Mon Nov 10 09:33:24 -0800 2008 | updated readme [Brian Chamberlain] |
![]() |
Rakefile | Mon Jun 30 11:43:46 -0700 2008 | added install and uninstall rake tasks to make ... [jnunemaker] |
![]() |
install.sh | Tue Jun 03 17:34:03 -0700 2008 | change for personal usage [tiendung] |
![]() |
rdoc/ | Sat Oct 04 12:30:34 -0700 2008 | Readme updates and a small css tweak [Brian] |
![]() |
tasks/ | Wed Oct 29 07:22:29 -0700 2008 | ReadME and rake install script tweaks [Brian Chamberlain] |
README
README for ajax-rdoc - the javascript enhanced rdoc template This template creates a javascript enhanced rdoc (similar to what is on https://www.railsbrain.com ). == Installation 1) Get the files (pick your flavor) * tarball: https://github.com/breakpointer/ajax-rdoc/tarball/master) * git: git clone git://github.com/breakpointer/ajax-rdoc.git 2) cd into the new ajax-rdoc directory 3) Install the generator and templates into your version of rdoc * RDOC=/usr/local/lib/ruby/1.8/rdoc rake install * If you are using macports ruby you can just rake install (no need to use 'sudo rake install' sudo will be invoked if needed) 4) Switch over to the directory where you want to run this rdoc template and run the following command * rdoc --fmt ajax 5) This should start the generator and you'll have your new rdoc template in no-time! It should be in a folder called "doc" For a shortcut you might try adding this to your .bash_profile >alias ajaxrdoc="rdoc --fmt ajax --exclude .*generator.* --exclude .*test.* --exclude .*spec.* --exclude .*pkg.*" Thanks to: Tien Dung (https://github.com/tiendung) for a neat title insertion hack. The title of your rails documentation is pulled from the directory name (with some humanizing). For example, standing in this directory /blah/ruby/rails-2.1.0 and running 'rdoc --fmt ajax' will create a title "Rails 2.1.0" for the generated documentation pages. John Nunemaker (https://github.com/jnunemaker) for the addition of the installation rake task. Also, for the very nice QuickSilver search failover if an exact name match is not found. Very nice indeed! ======= -Brian Alternatively you can set this env var and run the documentation generator from anywhere (ie your home dir) >export RUBYLIB=~/Usersbrian/rails/src/ajax-rdoc (for example)