aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems/version.rb
diff options
context:
space:
mode:
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