Skip to content

Commit

Permalink
Support Ruby 2.7 (#117)
Browse files Browse the repository at this point in the history
* chore: add ruby 2.7
* ci: add ruby 2.7
* chore: add ruby 2.7 to requirements
  • Loading branch information
sergiogomez authored May 30, 2024
1 parent 6f35907 commit 6c34656
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
fail-fast: false
matrix:
ruby_version:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Ruby gem to handle settings for ActiveRecord instances by storing them as serial

## Requirements

- Ruby 3.0 or newer
- Ruby 2.7 or newer
- Rails 6.1 or newer (including Rails 7.0)

## Installation
Expand Down
2 changes: 1 addition & 1 deletion rails-settings.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
gem.summary =
'Ruby gem to handle settings for ActiveRecord instances by storing them as serialized Hash in a separate database table. Namespaces and defaults included.'
gem.homepage = 'https://github.com/ledermann/rails-settings'
gem.required_ruby_version = '>= 3.0'
gem.required_ruby_version = '>= 2.7'

gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
Expand Down

0 comments on commit 6c34656

Please sign in to comment.