module Launchy::Version

Constants

BUILD
MAJOR
MINOR
STRING

Public Class Methods

to_a() click to toggle source
# File lib/launchy/version.rb, line 7
def self.to_a
  [MAJOR, MINOR, BUILD]
end
to_s() click to toggle source
# File lib/launchy/version.rb, line 11
def self.to_s
  to_a.join(".")
end