mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
8552f7aa68
commit
3f15d35f83
13 changed files with 306 additions and 54 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue