Skip to content

Commit

Permalink
fix(ci): Add Ruby 3.0 support (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanVqz authored Jul 7, 2024
1 parent c882925 commit 3547be8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby: [2.6, 2.7]
ruby: ['2.6', '2.7', '3.0.7']
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion simple_form-theme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|

s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']

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

s.add_dependency 'rails', '~> 6.1.7', '>= 6.1.7.8'
s.add_dependency 'simple_form', '~> 5.3.0'
Expand Down

0 comments on commit 3547be8

Please sign in to comment.