Directory : /opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/multi_json-1.15.0/lib/multi_json/ |
Current File : //opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/multi_json-1.15.0/lib/multi_json/version.rb |
module MultiJson class Version MAJOR = 1 unless defined? MultiJson::Version::MAJOR MINOR = 15 unless defined? MultiJson::Version::MINOR PATCH = 0 unless defined? MultiJson::Version::PATCH PRE = nil unless defined? MultiJson::Version::PRE class << self # @return [String] def to_s [MAJOR, MINOR, PATCH, PRE].compact.join('.') end end end VERSION = Version.to_s.freeze end