Sha256: 833031fbb93d7e160b4045983198db646b81b019a6e1566303231cba3bdb25d4
Contents?: true
Size: 575 Bytes
Versions: 1
Compression:
Stored size: 575 Bytes
Contents
# encoding: utf-8 # # This file is part of the pincerna gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>. # Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit. # module Pincerna # The current version of pincerna, according to semantic versioning. # # @see http://semver.org module Version # The major version. MAJOR = 1 # The minor version. MINOR = 1 # The patch version. PATCH = 3 # The current version of pincerna. STRING = [MAJOR, MINOR, PATCH].compact.join(".") end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pincerna-1.1.3 | lib/pincerna/version.rb |