2011-05-11 14:49:32 +12:00
|
|
|
require "pry/default_commands/basic"
|
2011-05-01 22:25:37 +12:00
|
|
|
require "pry/default_commands/documentation"
|
|
|
|
require "pry/default_commands/gems"
|
|
|
|
require "pry/default_commands/context"
|
|
|
|
require "pry/default_commands/input"
|
|
|
|
require "pry/default_commands/shell"
|
|
|
|
require "pry/default_commands/introspection"
|
|
|
|
require "pry/default_commands/easter_eggs"
|
|
|
|
|
2011-05-16 05:31:07 +12:00
|
|
|
require "pry/extended_commands/user_command_api"
|
|
|
|
require "pry/extended_commands/experimental"
|
|
|
|
|
2011-01-12 12:16:04 +11:00
|
|
|
class Pry
|
2011-01-18 16:40:28 +13:00
|
|
|
|
2010-12-31 04:01:11 +13:00
|
|
|
# Default commands used by Pry.
|
2011-05-07 07:32:05 +02:00
|
|
|
Commands = Pry::CommandSet.new do
|
2011-05-11 14:49:32 +12:00
|
|
|
import DefaultCommands::Basic
|
2011-05-01 22:25:37 +12:00
|
|
|
import DefaultCommands::Documentation
|
|
|
|
import DefaultCommands::Gems
|
|
|
|
import DefaultCommands::Context
|
2011-05-16 05:31:07 +12:00
|
|
|
import DefaultCommands::Input
|
|
|
|
import DefaultCommands::Shell
|
2011-05-01 22:25:37 +12:00
|
|
|
import DefaultCommands::Introspection
|
|
|
|
import DefaultCommands::EasterEggs
|
2011-05-11 14:49:32 +12:00
|
|
|
end
|
2010-12-27 02:39:46 +13:00
|
|
|
end
|