Class: Cello::Commands::Debug

Inherits:
Object
  • Object
show all
Defined in:
lib/cello/commands/debug.rb

Class Method Summary collapse

Class Method Details

.runObject



5
6
7
8
9
# File 'lib/cello/commands/debug.rb', line 5

def run
  Dir["./features/support/browsers/*.rb"].each {|file| require file }
  Dir["./features/pages/*.rb"].each {|file| require file }
  require "pry"; binding.pry
end