forked from raymondtangsc/activerecord-userstamp
-
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.
chore: add configurations for rails 7.2, ruby {3.2, 3.3}
- migrated pipeline from 'coveralls' to 'coveralls_reborn' - bump version and update changelog
- Loading branch information
adi-herwana-nus
committed
Sep 4, 2024
1 parent
3e9a184
commit 7e962f9
Showing
8 changed files
with
25 additions
and
18 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 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.required_ruby_version = ">= 3.1" | ||
|
||
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 |