Sha256: e564162ff2a9c2bfd0ee5d16473716007e5916b7b4125d66f207fde7d62a70e8

Contents?: true

Size: 671 Bytes

Versions: 1

Compression:

Stored size: 671 Bytes

Contents

# Returns the version of the currently loaded gem as a <tt>Gem::Version</tt>
module WashoutBuilder
  #  Returns the version of the currently loaded gem as a <tt>Gem::Version</tt>
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  # the module that is used to generate the gem version
  module VERSION
    # the major version of the gem
    MAJOR = 0
    # the minor version of the gem
    MINOR = 16
    # the tiny version of the gem
    TINY = 5
    # if the version should be a e
    PRE = nil

    # the full version of the gem composed from major minor tiny and prerelease versions
    STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
washout_builder-0.16.5 lib/washout_builder/version.rb