Skip to content

Commit

Permalink
Change dependent pry version
Browse files Browse the repository at this point in the history
The `pry-inline` doesn't work with `pry` v0.13.0 because of the
`Pry::Config` problem (see: pry/pry#2126).

This commit changes dependent pry version.
  • Loading branch information
seikichi committed May 6, 2020
1 parent 80a368f commit e16d9ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pry-inline.gemspec
Expand Up @@ -18,9 +18,9 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ['lib']

spec.add_dependency 'pry', '> 0.10.0', '<= 0.13'
spec.add_dependency 'pry', '> 0.10.0'
spec.add_dependency 'unicode', '~> 0.4.4'
spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'simplecov', '~> 0.16.0'
spec.add_development_dependency 'test-unit', '>= 3.0.0'
Expand Down

0 comments on commit e16d9ac

Please sign in to comment.