module SolidusSalePricing module_function # Returns the version of the currently loaded SpreeSalePricing as a # Gem::Version. def version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 2 MINOR = 0 TINY = 1 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end end