Module Heel::Version
In: lib/heel/version.rb
lib/heel/version.rb

Methods

to_a   to_a   to_s   to_s  

Constants

MAJOR = 2
MINOR = 0
BUILD = 0
STRING = Version.to_s
MAJOR = 2
MINOR = 0
BUILD = 0
STRING = Version.to_s

Public Instance methods

[Source]

    # File lib/heel/version.rb, line 12
12:     def to_a
13:       [MAJOR, MINOR, BUILD]
14:     end

[Source]

    # File lib/heel/version.rb, line 12
12:     def to_a
13:       [MAJOR, MINOR, BUILD]
14:     end

[Source]

    # File lib/heel/version.rb, line 16
16:     def to_s
17:       to_a.join(".")
18:     end

[Source]

    # File lib/heel/version.rb, line 16
16:     def to_s
17:       to_a.join(".")
18:     end

[Validate]