summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2019-03-09 02:19:15 +0200
committerKyrylo Silin <silin@kyrylo.org>2019-03-09 02:19:15 +0200
commit0b522b31475cd937fda7ab5cf111de0c10e1d123 (patch)
tree7a171d4ff4c29a95c38860ed6321efed06474c45
parentb7b064a5efb31ffc2d8d18261b5f4e2ed010bc0b (diff)
downloadpry-extend-command-bundle-removal.tar.gz
Delete Pry::ExtendCommandBundleextend-command-bundle-removal
This hack is already covered in pry-rails: https://github.com/rweng/pry-rails/blob/8bea87dfef849f6f1c5e1f9d22a6a6ff238b025f/lib/pry-rails/railtie.rb#L12-L14 `IRB = Pry` is discouraged and people should use pry-rails instead.
-rw-r--r--lib/pry.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/pry.rb b/lib/pry.rb
index 7b78d41b..6cba1eb0 100644
--- a/lib/pry.rb
+++ b/lib/pry.rb
@@ -5,12 +5,6 @@ require 'pry/exceptions'
require 'pry/helpers/base_helpers'
require 'pry/hooks'
-class Pry
- # This is to keep from breaking under Rails 3.2 for people who are doing that
- # IRB = Pry thing.
- module ExtendCommandBundle; end
-end
-
require 'method_source'
require 'shellwords'
require 'stringio'