module FalkorLib::Version

Management of the current version of the library @see falkorlib/tasks/versioning.rake

Constants

PATCH

Public Instance Methods

major() click to toggle source

Returns the major version ( big release based off of multiple minor releases )

# File lib/falkorlib/version.rb, line 26
def major
  MAJOR
end
minor() click to toggle source

Returns the minor version ( small release based off of multiple patches )

# File lib/falkorlib/version.rb, line 31
def minor
  MINOR
end
patch() click to toggle source

Returns the patch version ( updates, features and (crucial) bug fixes )

# File lib/falkorlib/version.rb, line 36
def patch
  PATCH
end
to_s() click to toggle source

@return the full version string

# File lib/falkorlib/version.rb, line 41
def to_s
  [MAJOR, MINOR, PATCH].join('.')
end