Sha256: 69f443a691772961c3edbbf159ffa29e65068ca8025738aba11a5efb36a171b7

Contents?: true

Size: 250 Bytes

Versions: 1

Compression:

Stored size: 250 Bytes

Contents

module Gamebox
  module VERSION #:nodoc:
    MAJOR = 0
    MINOR = 5
    TINY  = 5
    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.5.5 lib/gamebox/version.rb