1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/lib/pry/config
Robert Gleeson bb79885787 one step closer to the behavior we want.
$ rake pry
[1] pry(main)> _pry_.config.requires
=> []
[2] pry(main)> _pry_.config.requires << 1
=> [1]
[3] pry(main)> Pry.config.requires = [1,2,3]
=> [1, 2, 3]
[4] pry(main)> _pry_.config.requires
=> [1, 2, 3]
[5] pry(main)> _pry_.config.requires = [42]
=> [42]
[6] pry(main)> Pry.config.requires = [5667]
=> [5667]
[7] pry(main)> _pry_.config.requires
=> [42]
[8] pry(main)> exit
2014-01-26 19:56:09 +01:00
..
behavior.rb one step closer to the behavior we want. 2014-01-26 19:56:09 +01:00
convenience.rb fix the failing Pry#prompt specs. 2014-01-21 09:13:26 +01:00
default.rb one step closer to the behavior we want. 2014-01-26 19:56:09 +01:00