Sha256: 649f5ccf32c855489cd525416900c18c55e5d82c336c4b36dcf0c8a2ac7123a4

Contents?: true

Size: 295 Bytes

Versions: 1

Compression:

Stored size: 295 Bytes

Contents

module Nimbleshop
  class Version
    @major = 0
    @minor = 0
    @tiny  = 1
    @build = 'rc4'

    class << self
      attr_reader :major, :minor, :tiny, :build

      def to_s
        [@major, @minor, @tiny, @build].compact.join('.')
      end
    end
  end

  RailsVersion = '= 3.2.6'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nimbleshop_core-0.0.1.rc4 lib/nimbleshop/version.rb