Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BIB-64: Fix 'ArgumentError: wrong number of arguments (given 1, expected 0)' #2588

Open
wants to merge 2 commits into
base: BIB-46-dual-boot-with-rails-7-1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,11 @@ group :development, :test do
gem "pry-byebug"
gem "pry-rails"
gem "rb-fsevent", "~> 0.10.3"
gem "rspec", "~> 3.4"
if next?
gem "rspec", "~> 3.12.0"
else
gem "rspec", "~> 3.4"
end
gem "rspec-rails", "~> 4.0"
gem "rspec_junit_formatter" # For circle ci
gem "standard" # Ruby linter
Expand Down
24 changes: 12 additions & 12 deletions Gemfile.next.lock
Original file line number Diff line number Diff line change
Expand Up @@ -643,18 +643,18 @@ GEM
rexml (3.2.5)
rqrcode (0.10.1)
chunky_png (~> 1.0)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.3)
rspec-support (~> 3.9.3)
rspec-expectations (3.9.4)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.3)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.4)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-mocks (3.9.1)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.7)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (~> 3.12.0)
rspec-rails (4.0.1)
actionpack (>= 4.2)
activesupport (>= 4.2)
Expand All @@ -668,7 +668,7 @@ GEM
rspec-sidekiq (3.0.3)
rspec-core (~> 3.0, >= 3.0.0)
sidekiq (>= 2.4.0)
rspec-support (3.9.4)
rspec-support (3.12.2)
rspec_junit_formatter (0.4.1)
rspec-core (>= 2, < 4, != 2.12.0)
rubocop (1.32.0)
Expand Down Expand Up @@ -907,7 +907,7 @@ DEPENDENCIES
rerun
responders
rqrcode (= 0.10.1)
rspec (~> 3.4)
rspec (~> 3.12.0)
rspec-rails (~> 4.0)
rspec-retry
rspec-sidekiq
Expand Down