Skip to content

Commit

Permalink
Merge pull request #179 from kiskoza/fix-failing-test
Browse files Browse the repository at this point in the history
Fix failing test
  • Loading branch information
kiskoza authored Jun 16, 2024
2 parents b98bc49 + c13142e commit cd752d3
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly

3 changes: 3 additions & 0 deletions spec/gemfiles/Gemfile.rails-4.2
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ gem 'byebug'
if RUBY_VERSION < '2.5'
gem 'loofah', '< 2.21.0'
end

gem 'bigdecimal', '~> 1.4'
gem 'ffi', '< 1.17.0'
2 changes: 1 addition & 1 deletion spec/gemfiles/Gemfile.rails-6.0
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gemspec path: '../../'

gem 'rails', "~> 6.0.0"
gem 'responders', '~> 3.0'
gem 'sqlite3'
gem 'sqlite3', '~> 1.4'
gem 'sprockets', '~> 3.0'
gem "jquery-rails"
gem "thin"
Expand Down
2 changes: 1 addition & 1 deletion spec/gemfiles/Gemfile.rails-6.1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gemspec path: '../../'

gem 'rails', "~> 6.1.0"
gem 'responders', '~> 3.0'
gem 'sqlite3'
gem 'sqlite3', '~> 1.4'
gem 'sprockets', '~> 3.0'
gem "jquery-rails"
gem "thin"
Expand Down
2 changes: 1 addition & 1 deletion spec/gemfiles/Gemfile.rails-7.0
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gemspec path: '../../'

gem 'rails', "~> 7.0.0"
gem 'responders', '~> 3.0'
gem 'sqlite3'
gem 'sqlite3', '~> 1.4'
gem 'sprockets', '~> 3.0'
gem "jquery-rails"
gem "thin"
Expand Down
4 changes: 3 additions & 1 deletion spec/gemfiles/Gemfile.rails-7.1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ gemspec path: '../../'

gem 'rails', '~> 7.1.0'
gem 'responders', '~> 3.0'
gem 'sqlite3'
# Could sqlite3 constrains when this PR get released
# https://github.com/rails/rails/pull/51592
gem 'sqlite3', '~> 1.4'
gem 'sprockets', '~> 4.0'
gem 'jquery-rails'
gem 'thin'
Expand Down

0 comments on commit cd752d3

Please sign in to comment.