Skip to content

Commit

Permalink
Merge pull request #26 from serpapi/feat/upgrade-rspec-dependency
Browse files Browse the repository at this point in the history
fix: don't duplicate blank `extra_failure_lines`
  • Loading branch information
ilyazub authored Feb 15, 2023
2 parents 4aa06a4 + 3f9e66e commit ec37cee
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
PATH
remote: .
specs:
turbo_tests (1.4.0)
turbo_tests (1.4.1)
bundler (>= 2.1)
parallel_tests (~> 3.3)
rspec (~> 3.10)
rspec (>= 3.10)

GEM
remote: https://rubygems.org/
specs:
coderay (1.1.3)
diff-lcs (1.4.4)
diff-lcs (1.5.0)
method_source (1.0.0)
parallel (1.21.0)
parallel_tests (3.7.3)
Expand All @@ -19,19 +19,19 @@ GEM
coderay (~> 1.1)
method_source (~> 1.0)
rake (13.0.6)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
rspec-mocks (~> 3.10.0)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.1)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.1)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-mocks (3.10.2)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
rspec-support (~> 3.12.0)
rspec-support (3.12.0)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/turbo_tests/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module TurboTests
VERSION = "1.4.0"
VERSION = "1.4.1"
end
2 changes: 1 addition & 1 deletion turbo_tests.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = ">= 2.6"

spec.add_dependency "rspec", "~> 3.10"
spec.add_dependency "rspec", ">= 3.10"
spec.add_dependency "parallel_tests", "~> 3.3"

spec.add_development_dependency "pry", "~> 0.14"
Expand Down

0 comments on commit ec37cee

Please sign in to comment.