Class: GreatSchools::Version

Inherits:
Object
  • Object
show all
Defined in:
lib/great_schools/version.rb

Overview

:nodoc:

Constant Summary collapse

MAJOR =

version when you make incompatible API changes

0
MINOR =

version when you add functionality in a backwards-compatible manner

1
PATCH =

version when you make backwards-compatible bug fixes

2

Class Method Summary collapse

Class Method Details

.to_sObject

MAJOR.MINOR.PATCH per Semantic Versioning 2.0.0



9
10
11
# File 'lib/great_schools/version.rb', line 9

def to_s
  "#{MAJOR}.#{MINOR}.#{PATCH}"
end