forked from raymondtangsc/activerecord-userstamp
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: add configurations for rails 7.2, ruby {3.2, 3.3} #5
Open
adi-herwana-nus
wants to merge
1
commit into
master
Choose a base branch
from
adi/upgrade-rails-7-2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ on: | |
branches: ['master'] | ||
schedule: | ||
- cron: '0 0 * * 0' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
@@ -23,12 +24,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
ruby-version: ['3.0', '3.1'] | ||
activerecord: ['6.0', '6.1', '7.0', '7.1'] | ||
ruby-version: ['3.0', '3.1', '3.2', '3.3'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as active-record_acts-as, please just focus the testing for
|
||
activerecord: ['7.0', '7.1', '7.2'] | ||
exclude: | ||
- ruby-version: '3.0' | ||
activerecord: '7.2' | ||
env: | ||
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.activerecord }}.gemfile | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Ruby | ||
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, | ||
# change this to (see https://github.com/ruby/setup-ruby#versioning): | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ require 'active_record/userstamp/version' | |
Gem::Specification.new do |s| | ||
s.name = 'activerecord-userstamp' | ||
s.version = ActiveRecord::Userstamp::VERSION | ||
s.authors = ['Bivan Alzacky Harmanto'] | ||
s.authors = ['Joel Low', 'Bivan Alzacky Harmanto', 'Adi Suryanata Herwana'] | ||
s.email = ['[email protected]'] | ||
|
||
s.summary = 'Adds magic creator and updater attributes to your ActiveRecord models.' | ||
|
@@ -19,15 +19,15 @@ Gem::Specification.new do |s| | |
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } | ||
s.require_paths = ['lib'] | ||
|
||
s.add_dependency 'rails', '>= 6' | ||
s.add_dependency 'rails', '>= 7.0' | ||
|
||
s.required_ruby_version = ">= 3.0" | ||
|
||
s.add_development_dependency 'tzinfo-data' if RUBY_PLATFORM =~ /mswin|mingw/ | ||
s.add_development_dependency 'rake' | ||
s.add_development_dependency 'rdoc' | ||
s.add_development_dependency 'simplecov' | ||
s.add_development_dependency 'coveralls' | ||
s.add_development_dependency 'coveralls_reborn' | ||
s.add_development_dependency 'codeclimate-test-reporter' | ||
s.add_development_dependency 'sqlite3', "~> 1.7" | ||
s.add_development_dependency "appraisal", "~> 2.1" | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module ActiveRecord; end | ||
module ActiveRecord::Userstamp | ||
VERSION = '3.0.5' | ||
VERSION = '3.0.7' | ||
end |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, consider removing this scheduling. See the notes from active-record_acts-as