Sha256: 0ce2de16e21d55281f11215aecdb446d498e0c7bd68e773998d410a5b91bd109

Contents?: true

Size: 587 Bytes

Versions: 1

Compression:

Stored size: 587 Bytes

Contents

#
# This file is part of the pinterest-ruby gem. Copyright (C) 2017 and above Shogun <shogun@cowtech.it>.
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
#

module Pinterest
  # The current version of pinterest-ruby, according to semantic versioning.
  #
  # @see http://semver.org
  module Version
    # The major version.
    MAJOR = 1

    # The minor version.
    MINOR = 0

    # The patch version.
    PATCH = 0

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pinterest-ruby-1.0.0 lib/pinterest/version.rb