Sha256: c2c6fb2c822358dc6d47b2d31c4365bd722b7611f15c342d96160a2622d818a7

Contents?: true

Size: 250 Bytes

Versions: 1

Compression:

Stored size: 250 Bytes

Contents

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