class Decko::Commands

Public Instance Methods

rake_prefix() click to toggle source
# File lib/decko/commands.rb, line 17
def rake_prefix
  "decko"
end
run_cucumber() click to toggle source
# File lib/decko/commands.rb, line 12
def run_cucumber
  require "decko/commands/cucumber_command"
  CucumberCommand.new(args).run
end
run_rails() click to toggle source
Calls superclass method
# File lib/decko/commands.rb, line 21
def run_rails
  require "decko/generators" if command == "generate"
  super
end