Sha256: b231c534b25db9ae7048f6bae4822154754b848cdab0dfb8f911c65c08c70754

Contents?: true

Size: 250 Bytes

Versions: 1

Compression:

Stored size: 250 Bytes

Contents

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