1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/Gemfile
Kyrylo Silin 244e4776f9 Gemfile: lock rspec-expectations to v3.8.2
v3.8.2 has a bug on Ruby 1.9.3:
https://github.com/rspec/rspec-expectations/issues/1113

```
TypeError: bind argument must be an instance of Kernel
```

Lock for now, unlock when (if) fixed version is released.
2019-04-28 20:34:56 +03:00

17 lines
425 B
Ruby

source 'https://rubygems.org'
gemspec
gem 'rake', '~> 10.0'
gem 'yard'
gem 'rspec', '~> 3.8.0'
# TODO: unlock version when the bug is fixed:
# https://github.com/rspec/rspec-expectations/issues/1113
gem 'rspec-expectations', '= 3.8.2'
gem 'simplecov', '~> 0.16', require: false
# Rubocop supports only >=2.2.0
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.0')
gem 'rubocop', '= 0.66.0', require: false
end