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"
|
2011-05-11 05:39:15 -04:00
|
|
|
require "pry/default_commands/user_command_api"
|
2011-05-01 06:25:37 -04:00
|
|
|
require "pry/default_commands/easter_eggs"
|
|
|
|
|
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
|
|
|
|
import DefaultCommands::Input, DefaultCommands::Shell
|
|
|
|
import DefaultCommands::Introspection
|
|
|
|
import DefaultCommands::EasterEggs
|
2011-04-13 01:16:12 -04:00
|
|
|
|
2011-05-15 05:58:27 -04:00
|
|
|
# Helpers::CommandHelpers.try_to_load_pry_doc
|
2011-04-07 10:13:16 -04:00
|
|
|
|
2011-05-10 22:49:32 -04:00
|
|
|
end
|
2010-12-26 08:39:46 -05:00
|
|
|
end
|