Sha256: bdfd6d23df9988c5cee09e5a4a4b95d867662bd7a836e2f71a44ecfcb7c25f9e

Contents?: true

Size: 632 Bytes

Versions: 1

Compression:

Stored size: 632 Bytes

Contents

# encoding: utf-8
#
# This file is part of the elephas gem. Copyright (C) 2012 and above Shogun <shogun_panda@me.com>.
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
#

# This is the top level module for elephas gem.
module Elephas
  # The current version of elephas, according to semantic versioning.
  #
  # @see http://semver.org
  module Version
    # The major version.
    MAJOR = 1

    # The minor version.
    MINOR = 1

    # The patch version.
    PATCH = 2

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
elephas-1.1.2 lib/elephas/version.rb