forked from diffcrypt/diffcrypt-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support rails.7.2 & update CI to run on Ruby 3 x Rails 6 & 7 (#2)
* Support Rails 7.2 * Bumped ruby version requirement to 3.0.0 * Rubocop Ruby target as well * remove redundant sort * Update Rakefile * Update test/rails_test.rb * chore: update CI to run on Ruby 3 x Rails 6 & 7 (#3) * chore: add appraisal * update CI to run on ruby/rails matrix * continue on error * no need for dark magic rails test? * Fixed rubocop * don't use deprecated OpenStruct * exclude ruby head / rails 6.1 --------- Co-authored-by: Lud <[email protected]>
- Loading branch information
1 parent
b25a3bd
commit 8b854c2
Showing
12 changed files
with
98 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ | |
/tmp/ | ||
Gemfile.lock | ||
*.gem | ||
.ruby-version | ||
gemfiles/*.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# frozen_string_literal: true | ||
|
||
SUPPORTED_RAILS_VERSIONS = %w[ | ||
6.1 | ||
7.1 | ||
7.2 | ||
].freeze | ||
|
||
SUPPORTED_RAILS_VERSIONS.each do |version| | ||
appraise "rails-#{version}" do | ||
gem 'rails', "~> #{version}" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by Appraisal | ||
|
||
source 'https://rubygems.org' | ||
|
||
gem 'appraisal' | ||
gem 'minitest', '~> 5.0' | ||
gem 'minitest-reporters', '~> 1.6.0' | ||
gem 'rails', '~> 6.1' | ||
gem 'rake', '~> 13.2' | ||
gem 'rubocop', '~> 1.25.1' | ||
gem 'simplecov', '~> 0.22.0', require: false | ||
gem 'simplecov-lcov', '< 0.9' | ||
|
||
gemspec path: '../' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by Appraisal | ||
|
||
source 'https://rubygems.org' | ||
|
||
gem 'appraisal' | ||
gem 'minitest', '~> 5.0' | ||
gem 'minitest-reporters', '~> 1.6.0' | ||
gem 'rails', '~> 7.1' | ||
gem 'rake', '~> 13.2' | ||
gem 'rubocop', '~> 1.25.1' | ||
gem 'simplecov', '~> 0.22.0', require: false | ||
gem 'simplecov-lcov', '< 0.9' | ||
|
||
gemspec path: '../' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by Appraisal | ||
|
||
source 'https://rubygems.org' | ||
|
||
gem 'appraisal' | ||
gem 'minitest', '~> 5.0' | ||
gem 'minitest-reporters', '~> 1.6.0' | ||
gem 'rails', '~> 7.2' | ||
gem 'rake', '~> 13.2' | ||
gem 'rubocop', '~> 1.25.1' | ||
gem 'simplecov', '~> 0.22.0', require: false | ||
gem 'simplecov-lcov', '< 0.9' | ||
|
||
gemspec path: '../' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.