pry--pry/lib/pry/commands.rb

11 lines
259 B
Ruby
Raw Normal View History

# Default commands used by Pry.
Pry::Commands = Pry::CommandSet.new
Dir[File.expand_path('../default_commands/*.rb', __FILE__)].each do |file|
require file
end
2011-01-18 03:40:28 +00:00
Dir[File.expand_path('../extended_commands/*.rb', __FILE__)].each do |file|
require file
end