futhr/spree-postal-service

View on GitHub
lib/spree_postal_service/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
module SpreePostalService

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

  module VERSION
    MAJOR = 3
    MINOR = 3
    TINY  = 0
    PRE   = 'alpha'

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