Sha256: d2c3fe3d1271492439fde99c1cf45ed34127e84f4e478bbc10726c758c6f03bb

Contents?: true

Size: 251 Bytes

Versions: 1

Compression:

Stored size: 251 Bytes

Contents

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

    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.0.rc11 lib/gamebox/version.rb