Sha256: 6b7bf27be5a804962e196ac85f28fc9006b0b80eb1e0ae9921cc64ba30d4a5af

Contents?: true

Size: 335 Bytes

Versions: 1

Compression:

Stored size: 335 Bytes

Contents

module SolidusSocial
  module_function

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

  module VERSION
    MAJOR = 1
    MINOR = 0
    TINY  = 0
    PRE   = nil

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
solidus_social-1.0.0 lib/solidus_social/version.rb