aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems/version.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-20 01:33:19 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-20 01:33:19 +0000
commit3f15d35f83dc91e1e5af6d98e6f6fcd52abd1649 (patch)
treef677f8d0bff97ded1c0995f27158fb91d32966dd /lib/rubygems/version.rb
parent8552f7aa680e1f1a31d76dc9038d80248a445960 (diff)
downloadruby-3f15d35f83dc91e1e5af6d98e6f6fcd52abd1649.tar.gz
* lib/rubygems: Update RubyGems to master 0886307. This commit
improves documentation and should bring ruby above 75% documented on rubyci. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rubygems/version.rb')
-rw-r--r--lib/rubygems/version.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/rubygems/version.rb b/lib/rubygems/version.rb
index 10b0503294..15e72292b1 100644
--- a/lib/rubygems/version.rb
+++ b/lib/rubygems/version.rb
@@ -174,8 +174,6 @@ class Gem::Version
# ver2 = Version.create(ver1) # -> (ver1)
# ver3 = Version.create(nil) # -> nil
- # REFACTOR: There's no real reason this should be separate from #initialize.
-
def self.create input
if self === input then # check yourself before you wreck yourself
input
@@ -188,7 +186,7 @@ class Gem::Version
@@all = {}
- def self.new version
+ def self.new version # :nodoc:
@@all[version] ||= super
end
@@ -255,17 +253,17 @@ class Gem::Version
initialize array[0]
end
- def yaml_initialize(tag, map)
+ def yaml_initialize(tag, map) # :nodoc:
@version = map['version']
@segments = nil
@hash = nil
end
- def to_yaml_properties
+ def to_yaml_properties # :nodoc:
["@version"]
end
- def encode_with coder
+ def encode_with coder # :nodoc:
coder.add 'version', @version
end