Sha256: a5362030f011227d18e8288743b236b354250975f6edf0b80612dec0c4edc5c5
Contents?: true
Size: 576 Bytes
Versions: 1
Compression:
Stored size: 576 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 https://choosealicense.com/licenses/mit. # 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 = 2 # 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.2 | lib/pinterest/version.rb |