Sha256: f382f501ed3beb4bde890f4381f20cfa93ef83df5a5274f8683a0b5dd8e8b98b

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 = 3

    # 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.3 lib/apes/version.rb