summaryrefslogtreecommitdiffstats
path: root/lib/rdoc/ri
Commit message (Collapse)AuthorAgeFilesLines
...
* Add --version option to ridave2004-03-251-2/+16
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add the --list-names optiondave2004-03-246-8/+70
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Must now use "::" to separate nested classes. This fixes bug where "ri ↵dave2004-03-241-0/+1
| | | | | | Kernel.Array" was looking for a class called Array git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6019 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/syck/rubyext.c: get rid of warnings.nobu2004-03-031-1/+1
| | | | | | | | | | | * lib/rss/taxonomy.rb: ditto. * lib/rdoc/ri/ri_formatter.rb: ditto. * test/ruby/test_assignment.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/rdoc/ri/ri_display.rb (DefaultDisplay::page): wait until thenobu2004-03-031-18/+7
| | | | | | | pager terminates. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5881 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/rdoc/ri/ri_display.rb (DefaultDisplay::setup_pager): ensurenobu2004-03-031-9/+8
| | | | | | | pager closes and stdout is restored. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (pipe_open): erred program name should be reported bynobu2004-03-021-16/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | exceptions, instead of the first argument. * process.c (rb_spawn): ditto. * process.c (proc_spawn_v): use first argument as program name. * win32/win32.c (rb_w32_aspawn): ditto. * win32/win32.c (CreateChild): search executable file if no program name given. * lib/drb/extservm.rb (invoke_service_command): use Process.spawn. [ruby-dev:23103] * lib/rdoc/ri/ri_display.rb (setup_pager): use IO.popen. [ruby-dev:23086], [ruby-dev:23103] * lib/rdoc/diagram.rb (convert_to_png): ditto. * lib/rdoc/generators/chm_generator.rb (compile_project): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix typos (Doug Kearns)dave2004-02-191-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5779 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * Makefile.in, bcc32/Makefile.sub, win32/Makefile.sub, configure.in,nobu2004-02-091-7/+1
| | | | | | | | | | | | | | | | | | | | | | runruby.rb: run rdoc, test and so on with compiled extension libraries. [ruby-dev:22688] * ext/extmk.rb, lib/mkmf.rb: make extension libraries in separated directory, similar to the actual directory structure. * lib/fileutils.rb (FileUtils.copy_file): use the mode of the original file to create new file. * lib/rdoc/ri/ri_paths.rb (RI::Paths::SYSDIR): get rid of unexpected influence by envirionment variable. * bcc32/configure.bat, win32/configure.bat: add install-doc options. * win32/win32.c, win32/win32.h (rb_w32_fstat): fix Borland C runtime bug which returns wrong mode. [ruby-dev:22846] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Display full name in class listdave2004-01-122-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5451 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Checked in wrong version... :(dave2004-01-121-1/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5449 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add explicit line breaks in method signatures for ri. Fixup some comments in ↵dave2004-01-122-3/+18
| | | | | | object.c. Support changes comments for "in xxx.c" git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add HTML formatter to ridave2004-01-111-25/+152
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* ri now accepts options via RI environment variabledave2004-01-101-0/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5428 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix problem with agreesive name matching (see ChangeLog)dave2004-01-072-9/+23
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Split out ri display code and make pluggabledave2004-01-063-0/+386
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add RDoc to build. Add --ri-system to RDocdave2004-01-051-30/+45
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Finish documenting internal stuff. See Changelog for other detailsdave2004-01-023-32/+42
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5364 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add RDoc documentation for stuff in object.cdave2003-12-281-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5330 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add support for rules in ri outputdave2003-12-271-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Forgot to save buffer.... sighdave2003-12-244-31/+353
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add file.c comments (and necessary support in parse_c.rb)dave2003-12-212-10/+39
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5234 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add boot_classes to rdoc parsing, fix a couple of bugsdave2003-12-192-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5216 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix dependency issuedave2003-12-191-17/+65
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5215 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Annotate enum.c. Add pager support, and report on methods in included modulesdave2003-12-185-8/+54
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add pager support to ri, and start implementing command line optionsdave2003-12-171-0/+158
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5205 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* commit missdave2003-12-161-1/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Put RDoc comments into array.c, and refine rdoc/ri to deal with stuff that arosedave2003-12-166-18/+36
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5202 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Initial load of support for ri/rdoc integrationdave2003-12-167-0/+571
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e