Class: Cheat::Version
- Inherits:
-
Object
- Object
- Cheat::Version
- Defined in:
- lib/cheat/version.rb
Class Method Summary collapse
Class Method Details
.major ⇒ Integer
6 7 8 |
# File 'lib/cheat/version.rb', line 6 def major 1 end |
.minor ⇒ Integer
11 12 13 |
# File 'lib/cheat/version.rb', line 11 def minor 3 end |
.patch ⇒ Integer
16 17 18 |
# File 'lib/cheat/version.rb', line 16 def patch 3 end |
.to_s ⇒ String
26 27 28 |
# File 'lib/cheat/version.rb', line 26 def to_s [major, minor, patch, pre].compact.join('.') end |