Sha256: 9c194b49e9f3dd217183bc656cba59e59ae1bdc90c3463ac7b54dad7b7c14f20

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 = 1 # version when you add functionality in a backwards-compatible manner
    PATCH = 1 # 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.1.1 lib/great_schools/version.rb