Sha256: 73d9bcae32c76a36f708477913527efd913977432e52305625a719c52c63da71

Contents?: true

Size: 588 Bytes

Versions: 1

Compression:

Stored size: 588 Bytes

Contents

#
# This file is part of the apes gem. Copyright (C) 2016 and above Shogun <shogun@cowtech.it>.
# Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
#

# A tiny JSON API framework for Ruby on Rails.
module Apes
  # The current version of apes, according to semantic versioning.
  #
  # @see http://semver.org
  module Version
    # The major version.
    MAJOR = 1

    # The minor version.
    MINOR = 0

    # The patch version.
    PATCH = 2

    # The current version of apes.
    STRING = [MAJOR, MINOR, PATCH].compact.join(".")
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
apes-1.0.2 lib/apes/version.rb