Sha256: d247ba945f7face62c01625fee28bab066819c65213f83feee5b554efe1ce97a
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 = 2 # 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.2 | lib/great_schools/version.rb |