diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 429fc0435..94f1c86a1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -161,7 +161,6 @@ your normal development workflow. Example `Gemfile.local`: ```ruby -gem 'pry-byebug' gem 'byebug' ``` diff --git a/aruba.gemspec b/aruba.gemspec index 7c651afcf..457131661 100644 --- a/aruba.gemspec +++ b/aruba.gemspec @@ -33,7 +33,6 @@ Gem::Specification.new do |spec| spec.add_development_dependency 'json', '~> 2.1' spec.add_development_dependency 'kramdown', '~> 2.1' spec.add_development_dependency 'minitest', '~> 5.10' - spec.add_development_dependency 'pry', ['>= 0.13.0', '< 0.15.0'] spec.add_development_dependency 'rake', ['>= 12.0', '< 14.0'] spec.add_development_dependency 'rake-manifest', '~> 0.2.0' spec.add_development_dependency 'rspec', '~> 3.11' diff --git a/fixtures/cli-app/script/console b/fixtures/cli-app/script/console index 147473a63..ae692146d 100755 --- a/fixtures/cli-app/script/console +++ b/fixtures/cli-app/script/console @@ -7,9 +7,5 @@ require 'cli/app' # You can add fixtures and/or initialization code here to make experimenting # with your gem easier. You can also use a different console, if you like. -# (If you use this, don't forget to add pry to your Gemfile!) -# require "pry" -# Pry.start - require 'irb' IRB.start diff --git a/spec/support/configs/pry.rb b/spec/support/configs/pry.rb deleted file mode 100644 index 5db48e129..000000000 --- a/spec/support/configs/pry.rb +++ /dev/null @@ -1,5 +0,0 @@ -# frozen_string_literal: true - -# Otherwise pry doesn't find it's RC file -# if ENV['HOME'] is mocked -ENV['PRYRC'] = File.expand_path('~/.pryrc')