class Ppl::Command::Version

Attributes

format[W]

Public Instance Methods

execute(input, output) click to toggle source
# File lib/ppl/command/version.rb, line 12
def execute(input, output)
  output.line("ppl version #{Ppl::VERSION}")
  true
end
options(parser, options) click to toggle source
# File lib/ppl/command/version.rb, line 8
def options(parser, options)
  parser.banner = "usage: ppl version"
end