Bump minimum required pry version to 0.10.4

Running pry-rails against versions of pry prior to version 0.10.4 will
cause an 'uninitialized constant' exception for Pry::Prompt. No class by
this name existed prior to version 0.10.4.
This commit is contained in:
Chris LaRose 2017-02-15 19:41:57 -08:00
parent 41417231d0
commit a8693e7ee7
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ Gem::Specification.new do |s|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "pry", ">= 0.9.10"
s.add_dependency "pry", ">= 0.10.4"
s.add_development_dependency "appraisal"
s.add_development_dependency "minitest"
end