Skip to content

Commit

Permalink
fix(deps): Add Rails 7.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanVqz committed Jul 7, 2024
1 parent e50c4d2 commit 114a3a9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
matrix:
gemfile:
- Gemfile
- gemfiles/rails-7-0.gemfile
- gemfiles/rails-6-1.gemfile
- gemfiles/rails-6-0.gemfile
ruby:
Expand All @@ -25,6 +26,7 @@ jobs:
- ruby: '3.0'
gemfile: gemfiles/rails-6-0.gemfile
- ruby: '2.6'
gemfile: gemfiles/rails-7-0.gemfile
gemfile: Gemfile
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ group :development do
gem 'sqlite3', '~> 1.6.9' # supports Ruby 2.6 and above
end

gem 'rails', '~> 7.0'
gem 'rails', '~> 7.1'
gem 'simple_form', '~> 5.3.0'
gem 'sprockets-rails', require: 'sprockets/railtie'
10 changes: 10 additions & 0 deletions gemfiles/rails-7-0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
source 'https://rubygems.org'

gemspec path: '..'

group :development do
gem 'sqlite3', '~> 1.6.9'
end

gem 'rails', '~> 7.0'
gem 'simple_form', '~> 5.3.0'
2 changes: 1 addition & 1 deletion simple_form-theme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 2.6.0', '< 3.1'

s.add_dependency 'rails', '>= 6.0', '< 7.1'
s.add_dependency 'rails', '>= 6.0', '< 7.2'
s.add_dependency 'simple_form', '~> 5.3.0'
end

0 comments on commit 114a3a9

Please sign in to comment.