Skip to content

Commit

Permalink
Rebuild with patches from trunk.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://rubyforge.org/var/svn/rubygems/tags/REL_1_3_0@1891 3d4018f9-ac1a-0410-99e9-8a154d859a19
  • Loading branch information
drbrain committed Sep 25, 2008
1 parent 4d35f9c commit 4cd3f98
Show file tree
Hide file tree
Showing 215 changed files with 37,492 additions and 0 deletions.
18 changes: 18 additions & 0 deletions trunk/.autotest
@@ -0,0 +1,18 @@
Autotest.add_hook :initialize do |at|
at.order = :natural # I am a bad person - Eric Hodel

at.add_exception %r%/\.svn/%
at.add_exception %r%\.rbc$%

at.find_directories.clear
at.find_directories.push 'lib', 'test'

at.add_mapping %r%^lib/rubygems.rb$% do |_, m|
"test/test_gem.rb"
end

at.add_mapping %r%^lib/rubygems/(.*).rb$% do |_, m|
"test/test_gem_#{m[1].gsub '/', '_'}.rb"
end
end

4 changes: 4 additions & 0 deletions trunk/.document
@@ -0,0 +1,4 @@
README.txt
lib
GPL.txt
LICENSE.txt
4,979 changes: 4,979 additions & 0 deletions trunk/ChangeLog

Large diffs are not rendered by default.

340 changes: 340 additions & 0 deletions trunk/GPL.txt

Large diffs are not rendered by default.

53 changes: 53 additions & 0 deletions trunk/LICENSE.txt
@@ -0,0 +1,53 @@
RubyGems is copyrighted free software by Chad Fowler, Rich Kilmer, Jim
Weirich and others. You can redistribute it and/or modify it under
either the terms of the GPL (see the GPL.txt file), or the conditions
below:

1. You may make and give away verbatim copies of the source form of the
software without restriction, provided that you duplicate all of the
original copyright notices and associated disclaimers.

2. You may modify your copy of the software in any way, provided that
you do at least ONE of the following:

a) place your modifications in the Public Domain or otherwise
make them Freely Available, such as by posting said
modifications to Usenet or an equivalent medium, or by allowing
the author to include your modifications in the software.

b) use the modified software only within your corporation or
organization.

c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided.

d) make other distribution arrangements with the author.

3. You may distribute the software in object code or executable
form, provided that you do at least ONE of the following:

a) distribute the executables and library files of the software,
together with instructions (in the manual page or equivalent)
on where to get the original distribution.

b) accompany the distribution with the machine-readable source of
the software.

c) give non-standard executables non-standard names, with
instructions on where to get the original software distribution.

d) make other distribution arrangements with the author.

4. You may modify and include the part of the software into any other
software (possibly commercial).

5. The scripts and library files supplied as input to or produced as
output from the software do not automatically fall under the
copyright of the software, but belong to whomever generated them,
and may be sold commercially, and may be aggregated with this
software.

6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.
69 changes: 69 additions & 0 deletions trunk/README
@@ -0,0 +1,69 @@
= RubyGems

(See Releases for release-specific information)

== Installation

Get it from RubyForge (http://rubygems.rubyforge.org) and run (as root, if appropriate and necessary)

ruby setup.rb

For more details and other options, see:

ruby setup.rb --help

* {User Guide/Installation}[http://docs.rubygems.org/read/chapter/3]

== For User Documentation, see

* {RubyGems User Guide}[http://docs.rubygems.org/read/book/1]
* {Frequently Asked Questions}[http://docs.rubygems.org/read/book/3]

== For developer docs see

* {Creating Gems}[http://docs.rubygems.org/read/chapter/5]
* {GEM Specification}[http://docs.rubygems.org/read/chapter/20]

== The home page of the RubyGems Documentation

* {RubyGems Home}[http://rubygems.rubyforge.org]

== Additional directories

[./bin/...] binary commands (gem, gem_server, etc)
[./lib/...] the RubyGems library
[./pkgs/...] default RubyGems packages (currently only 'sources')
[./test/...] unit and functional tests

== Credits

RubyGems was originally developed at RubyConf 2003 by:

* Rich Kilmer -- rich(at)infoether.com
* Chad Fowler -- chad(at)chadfowler.com
* David Black -- dblack(at)wobblini.net
* Paul Brannan -- paul(at)atdesk.com
* Jim Weirch -- {jim(at)weirichhouse.org}[mailto:jim@weirichhouse.org]

== Contributors since then

* Gavin Sinclair -- gsinclair(at)soyabean.com.au
* George Marrows-- george.marrows(at)ntlworld.com
* Dick Davies -- rasputnik(at)hellooperator.net
* Mauricio Fernandez -- batsman.geo(at)yahoo.com
* Simon Strandgaard -- neoneye(at)adslhome.dk
* Dave Glasser -- glasser(at)mit.edu
* Paul Duncan -- pabs(at)pablotron.org
* Ville Aine -- vaine(at)cs.helsinki.fi
* Ryan Davis --
* Eric Hodel -- drbrain(at)segment7.net

(If your name is missing, PLEASE let us know!)

== Feedback

Please provide us feedback at http://rubyforge.org/projects/rubygems

Thanks!

-The RubyGems Team

0 comments on commit 4cd3f98

Please sign in to comment.