summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--lib/pry/command_set.rb11
2 files changed, 3 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0c8ab8c5..a443510e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -60,7 +60,9 @@
`gem-readme`, `gem-search`, `gem-stats`
([#1981](https://github.com/pry/pry/pull/1981))
* Deleted deprecated commands: `edit-method` and `show-command`
- ([#1981](https://github.com/pry/pry/pull/1981))
+ ([#2001](https://github.com/pry/pry/pull/2001))
+* Deleted `Pry::Command#disabled_commands`
+ ([#2001](https://github.com/pry/pry/pull/2001))
#### Bug fixes
diff --git a/lib/pry/command_set.rb b/lib/pry/command_set.rb
index d4e4cd85..737a5cf7 100644
--- a/lib/pry/command_set.rb
+++ b/lib/pry/command_set.rb
@@ -236,17 +236,6 @@ class Pry
@commands.delete(cmd.match)
end
- def disabled_command(disabled_command_name, message, matcher = disabled_command_name)
- create_command(disabled_command_name) do
- match matcher
- description ""
-
- define_method(:process) do
- output.puts "DISABLED: #{message}"
- end
- end
- end
-
# Sets or gets the description for a command (replacing the old
# description). Returns current description if no description
# parameter provided.