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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to this project will be documented in this file.

## 2.7.1 (2025-11-03)
* Fixed: Removed some unnecessary files from the packaged gem. Gets rid of symlink warnings during installation.

## 2.7.0 (2025-11-03)
* Removed: Support for Ruby < 3.1, Rails < 7.
* Fixed: Exception when using ActiveType::Record with Rails 8.1.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
2 changes: 1 addition & 1 deletion Gemfile.7.1.sqlite3.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
active_type (2.7.0)
active_type (2.7.1)
activerecord (>= 6.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.7.2.mysql2.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
active_type (2.7.0)
active_type (2.7.1)
activerecord (>= 6.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.7.2.pg.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
active_type (2.7.0)
active_type (2.7.1)
activerecord (>= 6.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.7.2.sqlite3.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
active_type (2.7.0)
active_type (2.7.1)
activerecord (>= 6.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.8.0.sqlite3.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
active_type (2.7.0)
active_type (2.7.1)
activerecord (>= 6.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.8.1.pg.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
active_type (2.7.0)
active_type (2.7.1)
activerecord (>= 6.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.8.1.sqlite3.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
active_type (2.7.0)
active_type (2.7.1)
activerecord (>= 6.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
6 changes: 5 additions & 1 deletion active_type.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ Gem::Specification.new do |s|
'rubygems_mfa_required' => 'true',
}

s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
s.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
ls.readlines("\x0", chomp: true).select do |f|
f.start_with?(*%w[lib LICENSE README.md CHANGELOG.md])
end
end
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
Expand Down
2 changes: 1 addition & 1 deletion lib/active_type/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActiveType
VERSION = '2.7.0'
VERSION = '2.7.1'
end