Method: Codily::Root#run_string

Defined in:
lib/codily/root.rb

#run_string(str, file = '(eval)', line = 1) ⇒ Object



64
65
66
67
# File 'lib/codily/root.rb', line 64

def run_string(str, file = '(eval)', line = 1)
  instance_eval str, file, line
  self
end