Sha256: 85ba0815556b720ddd5265d28c3dc77a00af79069e2ab77a6846824f5d8b3144
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 = 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.2.1 | lib/great_schools/version.rb |