Sha256: 750493d782e2f031b7498519e48aba901900e3e26c2d0345810e71d9ccff1b9a

Contents?: true

Size: 344 Bytes

Versions: 1

Compression:

Stored size: 344 Bytes

Contents

module SpreeMobility
  module_function

  # Returns the version of the currently loaded SpreeMobility as a
  # <tt>Gem::Version</tt>.
  def version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 1
    MINOR = 3
    TINY  = 0
    PRE   = nil # 'beta'

    STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_mobility-1.3.0 lib/spree_mobility/version.rb