Class: Dor::VersionTag
- Inherits:
-
Object
- Object
- Dor::VersionTag
- Includes:
- Comparable
- Defined in:
- lib/dor/datastreams/version_metadata_ds.rb
Instance Attribute Summary collapse
-
#admin ⇒ Object
readonly
Returns the value of attribute admin.
-
#major ⇒ Object
readonly
Returns the value of attribute major.
-
#minor ⇒ Object
readonly
Returns the value of attribute minor.
Class Method Summary collapse
Instance Method Summary collapse
- #<=>(anOther) ⇒ Object
- #increment(sig) ⇒ Object
-
#initialize(maj, min, adm) ⇒ VersionTag
constructor
A new instance of VersionTag.
- #to_s ⇒ Object
Constructor Details
#initialize(maj, min, adm) ⇒ VersionTag
Returns a new instance of VersionTag.
22 23 24 25 26 |
# File 'lib/dor/datastreams/version_metadata_ds.rb', line 22 def initialize(maj, min, adm) @major = maj.to_i @minor = min.to_i @admin = adm.to_i end |
Instance Attribute Details
#admin ⇒ Object (readonly)
Returns the value of attribute admin.
6 7 8 |
# File 'lib/dor/datastreams/version_metadata_ds.rb', line 6 def admin @admin end |
#major ⇒ Object (readonly)
Returns the value of attribute major.
6 7 8 |
# File 'lib/dor/datastreams/version_metadata_ds.rb', line 6 def major @major end |
#minor ⇒ Object (readonly)
Returns the value of attribute minor.
6 7 8 |
# File 'lib/dor/datastreams/version_metadata_ds.rb', line 6 def minor @minor end |
Class Method Details
.parse(raw_tag) ⇒ Object
17 18 19 20 |
# File 'lib/dor/datastreams/version_metadata_ds.rb', line 17 def self.parse(raw_tag) return nil unless raw_tag =~ /(\d+)\.(\d+)\.(\d+)/ VersionTag.new $1, $2, $3 end |
Instance Method Details
#<=>(anOther) ⇒ Object
8 9 10 11 12 13 14 |
# File 'lib/dor/datastreams/version_metadata_ds.rb', line 8 def <=>(anOther) diff = @major <=> anOther.major return diff if diff != 0 diff = @minor <=> anOther.minor return diff if diff != 0 @admin <=> anOther.admin end |
#increment(sig) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/dor/datastreams/version_metadata_ds.rb', line 30 def increment(sig) case sig when :major @major += 1 @minor = 0 @admin = 0 when :minor @minor += 1 @admin = 0 when :admin @admin += 1 end self end |
#to_s ⇒ Object
45 46 47 |
# File 'lib/dor/datastreams/version_metadata_ds.rb', line 45 def to_s "#{@major}.#{@minor}.#{admin}" end |