Class: NewRelic::VersionNumber
- Inherits:
-
Object
- Object
- NewRelic::VersionNumber
- Includes:
- Comparable
- Defined in:
- lib/new_relic/version.rb
Overview
Helper class for managing version comparisons
Instance Attribute Summary collapse
-
#parts ⇒ Object
readonly
Returns the value of attribute parts.
Instance Method Summary collapse
- #<=>(other) ⇒ Object
- #eql?(other) ⇒ Boolean
- #hash ⇒ Object
-
#initialize(version_string) ⇒ VersionNumber
constructor
A new instance of VersionNumber.
- #major_version ⇒ Object
- #minor_version ⇒ Object
- #tiny_version ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(version_string) ⇒ VersionNumber
Returns a new instance of VersionNumber.
26 27 28 29 |
# File 'lib/new_relic/version.rb', line 26 def initialize(version_string) version_string ||= '1.0.0' @parts = version_string.split('.').map{|n| n =~ /^\d+$/ ? n.to_i : n} end |
Instance Attribute Details
#parts ⇒ Object (readonly)
Returns the value of attribute parts.
24 25 26 |
# File 'lib/new_relic/version.rb', line 24 def parts @parts end |
Instance Method Details
#<=>(other) ⇒ Object
34 35 36 37 |
# File 'lib/new_relic/version.rb', line 34 def <=>(other) other = self.class.new(other) if other.is_a? String self.class.compare(self.parts, other.parts) end |
#eql?(other) ⇒ Boolean
47 48 49 |
# File 'lib/new_relic/version.rb', line 47 def eql? other (self <=> other) == 0 end |
#hash ⇒ Object
43 44 45 |
# File 'lib/new_relic/version.rb', line 43 def hash @parts.hash end |
#major_version ⇒ Object
30 |
# File 'lib/new_relic/version.rb', line 30 def major_version; @parts[0]; end |
#minor_version ⇒ Object
31 |
# File 'lib/new_relic/version.rb', line 31 def minor_version; @parts[1]; end |
#tiny_version ⇒ Object
32 |
# File 'lib/new_relic/version.rb', line 32 def tiny_version; @parts[2]; end |
#to_s ⇒ Object
39 40 41 |
# File 'lib/new_relic/version.rb', line 39 def to_s @parts.join(".") end |