Sha256: 24c247dbb05add7d1a0ffbc877fdb09ea9c90480f3d8005f3cdfc9dc7a130096

Contents?: true

Size: 484 Bytes

Versions: 1

Compression:

Stored size: 484 Bytes

Contents

module Keeper
  # Current release version of Keeper
  #
  # @see http://semver.org/
  module Version
    # Incremented *only* on backwards **incompatible** changes.
    MAJOR  = 1
    
    # Incremented *only* after adding new, backwards compatible functionality.
    MINOR  = 0
    
    # Incremented *only* on backwards compatible bug fixes.
    PATCH  = 0
    
    # String representation of the current version in the form X.Y.Z
    STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
keeper-1.0.0 lib/keeper/version.rb