Sha256: 3dc2614a6d0b0ecad49a34b864f80799ffeeaef841673661d834d05b02b301de

Contents?: true

Size: 435 Bytes

Versions: 3

Compression:

Stored size: 435 Bytes

Contents

module MultiJson
  class Version
    MAJOR =  1 unless defined? MultiJson::Version::MAJOR
    MINOR = 11 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

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/multi_json-1.11.0/lib/multi_json/version.rb
shoppe-paypal-1.1.0 vendor/bundle/ruby/2.1.0/gems/multi_json-1.11.0/lib/multi_json/version.rb
multi_json-1.11.0 lib/multi_json/version.rb