Module: GHI::Commands::Version

Defined in:
lib/ghi/commands/version.rb

Constant Summary collapse

MAJOR =
1
MINOR =
1
PATCH =
1
PRE =
nil
VERSION =
[MAJOR, MINOR, PATCH, PRE].compact.join '.'

Class Method Summary collapse

Class Method Details

.execute(args) ⇒ Object



11
12
13
# File 'lib/ghi/commands/version.rb', line 11

def self.execute args
  puts "ghi version #{VERSION}"
end