module Sycamore::VERSION
version representation
Constants
- EXTRA
- FILE
the file containing the project version number
- STRING
the normalized version string
Public Class Methods
==(other)
click to toggle source
@return [Boolean]
# File lib/sycamore/version.rb, line 24 def self.==(other) other == self.to_s end
to_a()
click to toggle source
@return [Array(Integer, Integer, Integer)]
# File lib/sycamore/version.rb, line 20 def self.to_a() [MAJOR, MINOR, TINY] end
to_s()
click to toggle source
@return [String]
# File lib/sycamore/version.rb, line 12 def self.to_s() STRING end
to_str()
click to toggle source
@return [String]
# File lib/sycamore/version.rb, line 16 def self.to_str() STRING end