summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Eichelberger <dduugg@gmail.com>2022-09-12 10:01:21 -0700
committerDouglas Eichelberger <dduugg@gmail.com>2023-01-01 11:11:16 -0800
commit313bf4d701961160a29c9147fb89138c0afce11d (patch)
treee184344a34ffb1edc1d64d237eb925ff7faeb3c2
parentee81361936cb9b2241ef5947ec4a269e1326a5fe (diff)
downloadpry-313bf4d701961160a29c9147fb89138c0afce11d.tar.gz
Clean up MRI 1.9 code
-rw-r--r--Dockerfile1
-rw-r--r--lib/pry/helpers/platform.rb5
-rw-r--r--lib/pry/repl.rb6
3 files changed, 0 insertions, 12 deletions
diff --git a/Dockerfile b/Dockerfile
index e55c246c..90feb7f8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,7 +7,6 @@ RUN wget --no-check-certificate -O ruby-install-0.4.3.tar.gz https://github.com/
RUN tar -xzvf ruby-install-0.4.3.tar.gz
RUN cd ruby-install-0.4.3 && make install
-RUN ruby-install ruby 1.9.3
RUN ruby-install ruby 2.1.1
RUN ruby-install ruby 2.1.2
diff --git a/lib/pry/helpers/platform.rb b/lib/pry/helpers/platform.rb
index 3af4d3f7..632e71d4 100644
--- a/lib/pry/helpers/platform.rb
+++ b/lib/pry/helpers/platform.rb
@@ -47,11 +47,6 @@ class Pry
end
# @return [Boolean]
- def self.mri_19?
- mri? && RUBY_VERSION.start_with?('1.9')
- end
-
- # @return [Boolean]
def self.mri_2?
mri? && RUBY_VERSION.start_with?('2')
end
diff --git a/lib/pry/repl.rb b/lib/pry/repl.rb
index ba032c7f..c5550bc9 100644
--- a/lib/pry/repl.rb
+++ b/lib/pry/repl.rb
@@ -140,12 +140,6 @@ class Pry
should_retry = false
retry
- # Handle <Ctrl+C> like Bash: empty the current input buffer, but don't
- # quit. This is only for MRI 1.9; other versions of Ruby don't let you
- # send Interrupt from within Readline.
- rescue Interrupt
- return :control_c
-
# If we get a random error when trying to read a line we don't want to
# automatically retry, as the user will see a lot of error messages
# scroll past and be unable to do anything about it.