class Flash::CLI

Public Class Methods

is_thor_reserved_word?(word, type) click to toggle source
Calls superclass method
# File lib/flash/cli.rb, line 9
def is_thor_reserved_word?(word, type)
  return false if word == 'run'
  super
end

Public Instance Methods

clone(group) click to toggle source
# File lib/flash/cli.rb, line 17
def clone(group)
  Flash::Command::Clone.new(group).execute
end
info(group = nil) click to toggle source
# File lib/flash/cli.rb, line 23
def info(group = nil)
  Flash::Command::Info.new(group).execute
end
run(command, group) click to toggle source
# File lib/flash/cli.rb, line 39
def run(command, group)
  Flash::Command::Run.new(command, group).execute
end
version() click to toggle source
# File lib/flash/cli.rb, line 47
def version
  puts Flash::VERSION
end