Skip to content

Commit

Permalink
Add support for rspec 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Thorsen committed Oct 17, 2017
1 parent ed69ee3 commit 41a428a
Show file tree
Hide file tree
Showing 12 changed files with 78 additions and 11 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ gemfile:
- gemfiles/rspec_3.4.gemfile
- gemfiles/rspec_3.5.gemfile
- gemfiles/rspec_3.6.gemfile
- gemfiles/rspec_3.7.gemfile
cache: bundler
sudo: false
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ end
appraise 'rspec-3.6' do
gem 'rspec', '~> 3.6.0'
end

appraise 'rspec-3.7' do
gem 'rspec', '~> 3.7.0'
end
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ specified number of times until the example succeeds.

| Rspec Version | Rspec-Retry Version |
|---------------|---------------------|
| 3.3-3.6       | 0.5.5             |
| 3.3-3.7       | 0.5.6             |
| 3.2       | 0.4.6             |
| 2.14.8       | 0.4.4             |

Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.5.6 - 2017-10-17
## enhancements
added support for rspec 3.7.0

# 0.5.5 - 2017-08-22
## enhancements
added retry_callback to help with cleanup between runs (thanks @abrom / #80)
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rspec_3.3.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
rspec-retry (0.5.5)
rspec-core (> 3.3, < 3.7)
rspec-retry (0.5.6)
rspec-core (> 3.3, < 3.8)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rspec_3.4.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
rspec-retry (0.5.5)
rspec-core (> 3.3, < 3.7)
rspec-retry (0.5.6)
rspec-core (> 3.3, < 3.8)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rspec_3.5.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
rspec-retry (0.5.5)
rspec-core (> 3.3, < 3.7)
rspec-retry (0.5.6)
rspec-core (> 3.3, < 3.8)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rspec_3.6.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
rspec-retry (0.5.5)
rspec-core (> 3.3, < 3.7)
rspec-retry (0.5.6)
rspec-core (> 3.3, < 3.8)

GEM
remote: https://rubygems.org/
Expand Down
7 changes: 7 additions & 0 deletions gemfiles/rspec_3.7.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rspec", "~> 3.7.0"

gemspec path: "../"
51 changes: 51 additions & 0 deletions gemfiles/rspec_3.7.gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
PATH
remote: ..
specs:
rspec-retry (0.5.6)
rspec-core (> 3.3, < 3.8)

GEM
remote: https://rubygems.org/
specs:
appraisal (2.2.0)
bundler
rake
thor (>= 0.14.0)
byebug (9.0.6)
coderay (1.1.2)
diff-lcs (1.3)
method_source (0.9.0)
pry (0.11.1)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
pry-byebug (3.4.3)
byebug (>= 9.0, < 9.1)
pry (~> 0.10)
rake (12.1.0)
rspec (3.7.0)
rspec-core (~> 3.7.0)
rspec-expectations (~> 3.7.0)
rspec-mocks (~> 3.7.0)
rspec-core (3.7.0)
rspec-support (~> 3.7.0)
rspec-expectations (3.7.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-mocks (3.7.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-support (3.7.0)
thor (0.20.0)

PLATFORMS
ruby

DEPENDENCIES
appraisal
byebug (~> 9.0.6)
pry-byebug
rspec (~> 3.7.0)
rspec-retry!

BUNDLED WITH
1.15.4
2 changes: 1 addition & 1 deletion lib/rspec/retry/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module RSpec
class Retry
VERSION = "0.5.5"
VERSION = "0.5.6"
end
end
2 changes: 1 addition & 1 deletion rspec-retry.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
gem.name = "rspec-retry"
gem.require_paths = ["lib"]
gem.version = RSpec::Retry::VERSION
gem.add_runtime_dependency(%{rspec-core}, '>3.3', '<3.7')
gem.add_runtime_dependency(%{rspec-core}, '>3.3', '<3.8')
gem.add_development_dependency %q{appraisal}
gem.add_development_dependency %q{rspec}
gem.add_development_dependency %q{byebug}, '~>9.0.6' # 9.1 deprecates ruby 2.1
Expand Down

0 comments on commit 41a428a

Please sign in to comment.