Sha256: 8d6c35c7ee3212b72248aaf0e3af28d81c1a15f9c6072ba7abc1f3f0ec078f2f

Contents?: true

Size: 443 Bytes

Versions: 1

Compression:

Stored size: 443 Bytes

Contents

module GreatSchools # :nodoc:
  class Version # :nodoc:
    MAJOR = 0 # version when you make incompatible API changes
    MINOR = 2 # version when you add functionality in a backwards-compatible manner
    PATCH = 3 # version when you make backwards-compatible bug fixes

    class << self # Class methods
      # MAJOR.MINOR.PATCH per Semantic Versioning 2.0.0
      def to_s
        "#{MAJOR}.#{MINOR}.#{PATCH}"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
great_schools-0.2.3 lib/great_schools/version.rb