class Deano::ConsoleCommand
Public Class Methods
command()
click to toggle source
# File lib/deano/commands/console_command.rb, line 4 def self.command "console" end
help()
click to toggle source
# File lib/deano/commands/console_command.rb, line 8 def self.help "[environment]\t\t# default: development" end
Public Instance Methods
call()
click to toggle source
# File lib/deano/commands/console_command.rb, line 12 def call path = app_path("setup.rb") cmd "pry -r #{path}" end