0

Say I've been hacking away at something in Rails console and in the process I've created some classes and methods I'd like to keep. Is there a way to get this code somehow, and dump it to a file or something so I don't need to type it all again (and potentially forget something or make mistakes)?

zako42
  • 634
  • 9
  • 16

1 Answers1

0

Check out pry: http://pryrepl.org/ It has a nice feature for browsing methods source so probably there will be no difference do the same with class instances.

Leszek Andrukanis
  • 2,114
  • 2
  • 19
  • 30