Sha256: 4f3253d2a1533afe9075141dbde5f4d18c907cb1cdb28df0fed264a23d60cab1

Contents?: true

Size: 677 Bytes

Versions: 2

Compression:

Stored size: 677 Bytes

Contents

#######################################################################################################
# Substantial portions of this code were adapted from the Radiant CMS project (http://radiantcms.org) #
#######################################################################################################

SPREE_ROOT = File.expand_path(File.join(File.dirname(__FILE__), "..")) unless defined? SPREE_ROOT

unless defined? Spree::Version
  module Spree
    module Version
      Major = '0'
      Minor = '9'
      Tiny  = '4'

      class << self
        def to_s
          [Major, Minor, Tiny].join('.')
        end
        alias :to_str :to_s
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
spree-enriquez-0.9.4 lib/spree.rb
spree-0.9.4 lib/spree.rb