Skip to content

Commit

Permalink
[BUGFIX] Fix Ruby 3.3 for Rails 7.1 and 7.2 (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee authored Jan 16, 2025
1 parent 2dcb8ff commit 13b5baa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ jobs:
# - { 'rails': '7.0', 'ruby': '3.4.1' }
- { 'rails': '7.1', 'ruby': '3.1.6' }
- { 'rails': '7.1', 'ruby': '3.2.6' }
# - { 'rails': '7.1', 'ruby': '3.3.7' }
- { 'rails': '7.1', 'ruby': '3.3.7' }
# - { 'rails': '7.1', 'ruby': '3.4.1' }
- { 'rails': '7.2', 'ruby': '3.1.6' }
- { 'rails': '7.2', 'ruby': '3.2.6' }
# - { 'rails': '7.2', 'ruby': '3.3.7' }
- { 'rails': '7.2', 'ruby': '3.3.7' }
# - { 'rails': '7.2', 'ruby': '3.4.1' }
- { 'rails': '8.0', 'ruby': '3.2.6' }
- { 'rails': '8.0', 'ruby': '3.3.7' }
Expand Down
2 changes: 2 additions & 0 deletions spec/currency_select_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
require 'spec_helper'
# This line can be dropped once we no longer support Rails 7.0.
require 'logger'
# This line can be dropped once we no longer support Rails 7.1 and 7.2.
require 'uri'
require 'action_view'
require 'currency_select'
require 'support/dummy_user'
Expand Down
2 changes: 2 additions & 0 deletions spec/form_options_helper_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
require 'spec_helper'
# This line can be dropped once we no longer support Rails 7.0.
require 'logger'
# This line can be dropped once we no longer support Rails 7.1 and 7.2.
require 'uri'
require 'action_view'
require 'currency_select'

Expand Down

0 comments on commit 13b5baa

Please sign in to comment.