2011-05-10 22:49:32 -04:00
|
|
|
require "pry/default_commands/basic"
|
2011-05-01 06:25:37 -04: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-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
|
2011-05-10 22:49:32 -04:00
|
|
|
import DefaultCommands::Basic
|
2011-05-01 06:25:37 -04:00
|
|
|
import DefaultCommands::Documentation
|
|
|
|
import DefaultCommands::Gems
|
|
|
|
import DefaultCommands::Context
|
2011-05-15 13:31:07 -04:00
|
|
|
import DefaultCommands::Input
|
|
|
|
import DefaultCommands::Shell
|
2011-05-01 06:25:37 -04:00
|
|
|
import DefaultCommands::Introspection
|
|
|
|
import DefaultCommands::EasterEggs
|
2011-05-10 22:49:32 -04:00
|
|
|
end
|
2010-12-26 08:39:46 -05:00
|
|
|
end
|