Skip to content

Commit

Permalink
add support for rails 7
Browse files Browse the repository at this point in the history
  • Loading branch information
KinWang-2013 committed Sep 27, 2024
1 parent b03a73a commit 8f25b18
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
gemfile: gemfiles/rails_5.2.gemfile
- ruby-version: 3.2
gemfile: gemfiles/rails_6.0.gemfile
- ruby-version: 3.2
gemfile: gemfile/rails_7.0.gemfile
- ruby-version: 3.2
gemfile: gemfile/rails_7.1.gemfile
- ruby-version: 3.2
gemfile: gemfile/rails_7.2.gemfile
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* [#131](https://github.com/radar/distance_of_time_in_words/pull/131): Deprecates `highest_measure_only`. Adds alternate form of `highest_measures` option to permit rounding up whatever part of the duration was previously silently discarded - [@seansfkelley](https://github.com/seansfkelley).
* [#133](https://github.com/radar/distance_of_time_in_words/pull/133): Test on Ruby 3.0 and 3.1 - [@dblock](https://github.com/dblock).
* [#135](https://github.com/radar/distance_of_time_in_words/pull/135): Add support for Ruby 2.7 and 3.2, removed support for ruby 2.4, 2.5, 2.6 and Rails 4 - [@KinWang-2013](https://github.com/KinWang-2013).
* [#136](https://github.com/radar/distance_of_time_in_words/pull/136): Add support for Rails 7 - [@KinWang-2013](https://github.com/KinWang-2013).
* Your contribution here.

## 5.3.3 (2022/04/25)
Expand Down
9 changes: 9 additions & 0 deletions gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'http://rubygems.org'

gem 'rails', '~> 7.0.0'

gemspec path: '../'
9 changes: 9 additions & 0 deletions gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'http://rubygems.org'

gem 'rails', '~> 7.1.0'

gemspec path: '../'
9 changes: 9 additions & 0 deletions gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'http://rubygems.org'

gem 'rails', '~> 7.2.0'

gemspec path: '../'

0 comments on commit 8f25b18

Please sign in to comment.