class Decoplan::Runner

Public Instance Methods

run() click to toggle source
# File lib/decoplan/runner.rb, line 7
def run
  # FIXME: set _pry_.prompt, _pry_.prompt_name, possibly other _pry_ config vars
  context = Class.new
  context.extend(DSL)
  context.class_eval { binding.pry }
end