2012-03-01 19:57:38 -05:00
|
|
|
require "pry/default_commands/misc"
|
2012-02-23 02:05:10 -05:00
|
|
|
require "pry/default_commands/help"
|
2011-05-01 06:25:37 -04:00
|
|
|
require "pry/default_commands/gems"
|
|
|
|
require "pry/default_commands/context"
|
2012-03-01 19:36:59 -05:00
|
|
|
require "pry/default_commands/commands"
|
2012-02-22 22:28:00 -05:00
|
|
|
require "pry/default_commands/input_and_output"
|
2011-05-01 06:25:37 -04:00
|
|
|
require "pry/default_commands/introspection"
|
2012-02-22 22:28:00 -05:00
|
|
|
require "pry/default_commands/editing"
|
|
|
|
require "pry/default_commands/navigating_pry"
|
2011-05-01 06:25:37 -04:00
|
|
|
require "pry/default_commands/easter_eggs"
|
|
|
|
|
2011-05-15 13:31:07 -04:00
|
|
|
require "pry/extended_commands/experimental"
|
|
|
|
|
2011-01-11 20:16:04 -05:00
|
|
|
class Pry
|
2011-01-17 22:40:28 -05:00
|
|
|
|
2010-12-30 10:01:11 -05:00
|
|
|
# Default commands used by Pry.
|
2011-05-07 01:32:05 -04:00
|
|
|
Commands = Pry::CommandSet.new do
|
2012-03-01 19:57:38 -05:00
|
|
|
import DefaultCommands::Misc
|
2012-02-23 02:05:10 -05:00
|
|
|
import DefaultCommands::Help
|
2011-05-01 06:25:37 -04:00
|
|
|
import DefaultCommands::Gems
|
|
|
|
import DefaultCommands::Context
|
2012-02-22 22:28:00 -05:00
|
|
|
import DefaultCommands::NavigatingPry
|
|
|
|
import DefaultCommands::Editing
|
|
|
|
import DefaultCommands::InputAndOutput
|
2011-05-01 06:25:37 -04:00
|
|
|
import DefaultCommands::Introspection
|
|
|
|
import DefaultCommands::EasterEggs
|
2012-03-01 19:36:59 -05:00
|
|
|
import DefaultCommands::Commands
|
2011-05-10 22:49:32 -04:00
|
|
|
end
|
2010-12-26 08:39:46 -05:00
|
|
|
end
|