Skip to content

Commit

Permalink
[FEATURE] Add support for Rails 8.0 (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee authored Nov 8, 2024
1 parent 1b37c6b commit 4e02d1e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,5 @@ jobs:
- { 'rails': '7.2', 'ruby': '3.1.6' }
- { 'rails': '7.2', 'ruby': '3.2.6' }
- { 'rails': '7.2', 'ruby': '3.3.6' }
- { 'rails': '8.0', 'ruby': '3.2.6' }
- { 'rails': '8.0', 'ruby': '3.3.6' }
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Added

- Add support for Rails 8.0 (#179)

### Changed

### Deprecated
Expand Down
2 changes: 1 addition & 1 deletion currency_select.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |s|
]
s.extra_rdoc_files = %w[CHANGELOG.md LICENSE README.md]

s.add_dependency 'actionview', '>= 6.1.0', '< 7.3'
s.add_dependency 'actionview', '>= 6.1.0', '< 8.1'
s.add_dependency 'money', '~> 6.0'

s.add_development_dependency 'rspec-rails', '~> 6.1.3'
Expand Down
7 changes: 7 additions & 0 deletions gemfiles/rails-8.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 8.0.0'

gemspec path: '../'

0 comments on commit 4e02d1e

Please sign in to comment.