mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
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.
This commit is contained in:
parent
8623d6851d
commit
244e4776f9
1 changed files with 5 additions and 0 deletions
5
Gemfile
5
Gemfile
|
@ -4,6 +4,11 @@ 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
|
||||
|
|
Loading…
Reference in a new issue