Sha256: 36dfc6a8aba9975f5f0d1845cd432d10311ac0b2f75b355f09c17dbd8ae3e6c3

Contents?: true

Size: 250 Bytes

Versions: 1

Compression:

Stored size: 250 Bytes

Contents

module Gamebox
  module VERSION #:nodoc:
    MAJOR = 0
    MINOR = 4
    TINY  = 1
    RC    = 0

    if RC > 0
      ARRAY = [MAJOR, MINOR, TINY, "rc#{RC}"]
    else
      ARRAY = [MAJOR, MINOR, TINY]
    end
    STRING = ARRAY.join('.')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gamebox-0.4.1 lib/gamebox/version.rb