Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com//), and thi

## [Unreleased] - TBD

- Add minitest 6 as dev dependency ([#86])
- Enhance build matrix ([#85])

## [2.0.1] - 2025-08-27
Expand Down Expand Up @@ -169,6 +170,7 @@ Added multibyte whitespace support to `:collapse_spaces` option ([#32])
[1.0.0]: https://github.com/rmm5t/strip_attributes/compare/v0.9.0..v1.0.0
[0.9.0]: https://github.com/rmm5t/strip_attributes/compare/a78b807..v0.9.0

[#86]: https://github.com/rmm5t/strip_attributes/pull/86
[#85]: https://github.com/rmm5t/strip_attributes/pull/85
[#82]: https://github.com/rmm5t/strip_attributes/pull/82
[#80]: https://github.com/rmm5t/strip_attributes/pull/80
Expand Down
1 change: 0 additions & 1 deletion gemfiles/activemodel-3.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ source "https://rubygems.org"
ENV["SKIP_VACCINE"] = "true"

gem "activemodel", "~> 3.2.0"

gem "minitest", "~> 4.7"
gem "minitest-matchers", "~> 1.2"
gem "i18n", "~> 0.6.0"
Expand Down
1 change: 1 addition & 0 deletions gemfiles/activemodel-4.2.gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source "https://rubygems.org"

gem "activemodel", "~> 4.2.0"
gem "minitest", "~> 5.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/activemodel-5.2.gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source "https://rubygems.org"

gem "activemodel", "~> 5.2.0"
gem "minitest", "~> 5.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/activemodel-6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ source "https://rubygems.org"

gem "activemodel", "~> 6.0.0"
gem "concurrent-ruby", "< 1.3.5"
gem "minitest", "~> 5.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/activemodel-6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ source "https://rubygems.org"

gem "activemodel", "~> 6.1.0"
gem "concurrent-ruby", "< 1.3.5"
gem "minitest", "~> 5.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/activemodel-7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ source "https://rubygems.org"

gem "activemodel", "~> 7.0.0"
gem "concurrent-ruby", "< 1.3.5"
gem "minitest", "~> 5.0"

gemspec path: "../"
4 changes: 2 additions & 2 deletions strip_attributes.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Gem::Specification.new do |spec|
}

spec.add_runtime_dependency "activemodel", ">= 3.0", "< 9.0"
spec.add_development_dependency "active_attr", "~> 0.15"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "active_attr", "~> 0.17"
spec.add_development_dependency "minitest", "~> 6.0"
spec.add_development_dependency "minitest-matchers_vaccine", "~> 1.0" unless ENV["SKIP_VACCINE"]
spec.add_development_dependency "minitest-reporters", ">= 0.14.24"
spec.add_development_dependency "rake"
Expand Down