diff options
author | Kyrylo Silin <silin@kyrylo.org> | 2019-03-09 02:19:15 +0200 |
---|---|---|
committer | Kyrylo Silin <silin@kyrylo.org> | 2019-03-09 02:19:15 +0200 |
commit | 0b522b31475cd937fda7ab5cf111de0c10e1d123 (patch) | |
tree | 7a171d4ff4c29a95c38860ed6321efed06474c45 | |
parent | b7b064a5efb31ffc2d8d18261b5f4e2ed010bc0b (diff) | |
download | pry-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.rb | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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' |