Class: CommandBuilder::CodeGenerator::Version

Inherits:
Object
  • Object
show all
Defined in:
lib/command_builder/code_generator/version.rb

Constant Summary collapse

VERSION_REGEX =
'(?:\d+\.)+(?:\d+)'
DELIMITER =
'.'

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(version) ⇒ Version

Returns a new instance of Version.



10
11
12
13
# File 'lib/command_builder/code_generator/version.rb', line 10

def initialize(version)
  raise "#{version} is not a valid version." unless Version.is_valid? version
  @version = version
end

Instance Attribute Details

#versionObject

Returns the value of attribute version.



8
9
10
# File 'lib/command_builder/code_generator/version.rb', line 8

def version
  @version
end

Class Method Details

.match(value) ⇒ Object



31
32
33
34
35
36
# File 'lib/command_builder/code_generator/version.rb', line 31

def self.match(value)
  exp = Regexp.new VERSION_REGEX
  version = value.scan(exp)[0]
  return unless version
  Version.new(version)
end

Instance Method Details

#compactObject



15
16
17
# File 'lib/command_builder/code_generator/version.rb', line 15

def compact
  first 2, ''
end

#first(count, delimiter = DELIMITER) ⇒ Object



19
20
21
# File 'lib/command_builder/code_generator/version.rb', line 19

def first(count, delimiter=DELIMITER)
  to_a.first(count).join(delimiter)
end

#to_aObject



27
28
29
# File 'lib/command_builder/code_generator/version.rb', line 27

def to_a
  @version.split DELIMITER
end

#to_sObject



23
24
25
# File 'lib/command_builder/code_generator/version.rb', line 23

def to_s
  @version
end