-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* math.c: Attach documentation for Math.
* object.c: Document NIL, TRUE, FALSE. * io.c: Improve grammar in ARGF comment. Document STDIN/OUT/ERR. Document ARGF global constant. * lib/rake: Hide deprecated toplevel constants from RDoc (import from rake trunk). * lib/thwait.rb: Document ThWait. * lib/mathn.rb: Hide Math redefinition from RDoc * lib/sync.rb: Add a basic comment for Sync_m, Synchronizer_m, Sync, Synchronizer. * parse.y: Document SCRIPT_LINES__. * hash.c: Document ENV class and global constant. * vm.c: Document TOPLEVEL_BINDING. * version.c: Document RUBY_* constants. * ruby.c: Document DATA and ARGV. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32281 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
14 changed files
with
144 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
Wed Jun 29 12:07:27 2011 Eric Hodel <[email protected]> | ||
|
||
* math.c: Attach documentation for Math. | ||
* object.c: Document NIL, TRUE, FALSE. | ||
* io.c: Improve grammar in ARGF comment. Document STDIN/OUT/ERR. | ||
Document ARGF global constant. | ||
* lib/rake: Hide deprecated toplevel constants from RDoc (import from | ||
rake trunk). | ||
* lib/thwait.rb: Document ThWait. | ||
* lib/mathn.rb: Hide Math redefinition from RDoc | ||
* lib/sync.rb: Add a basic comment for Sync_m, Synchronizer_m, Sync, | ||
Synchronizer. | ||
* parse.y: Document SCRIPT_LINES__. | ||
* hash.c: Document ENV class and global constant. | ||
* vm.c: Document TOPLEVEL_BINDING. | ||
* version.c: Document RUBY_* constants. | ||
* ruby.c: Document DATA and ARGV. | ||
|
||
Wed Jun 29 10:13:12 2011 Marc-Andre Lafortune <[email protected]> | ||
|
||
* lib/matrix.rb: Matrix.zero can build rectangular matrices. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,8 @@ | |
|
||
$trace = false | ||
|
||
# :stopdoc: | ||
# | ||
# Some top level Constants. | ||
|
||
FileList = Rake::FileList | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
# Copyright 2003-2010 by Jim Weirich ([email protected]) | ||
# All rights reserved. | ||
|
||
# :stopdoc: | ||
|
||
# Configuration information about an upload host system. | ||
# * name :: Name of host system. | ||
# * webdir :: Base directory for the web information for the | ||
# application. The application name (APP) is appended to | ||
# this directory before using. | ||
# * pkgdir :: Directory on the host system where packages can be | ||
# placed. | ||
# name :: Name of host system. | ||
# webdir :: Base directory for the web information for the | ||
# application. The application name (APP) is appended to | ||
# this directory before using. | ||
# pkgdir :: Directory on the host system where packages can be | ||
# placed. | ||
HostInfo = Struct.new(:name, :webdir, :pkgdir) | ||
|
||
# :startdoc: | ||
|
||
# Manage several publishers as a single entity. | ||
class CompositePublisher | ||
def initialize | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters