Skip to content

Commit

Permalink
Reduce packaged gem size (#1140)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickarnett authored Dec 30, 2024
1 parent f399b45 commit a56f8d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ As such, _Breaking Changes_ are major. _Features_ would map to either major or m

* Features
* [@tagliala Add back Ruby 3.1 compatibility](https://github.com/mbleigh/acts-as-taggable-on/pull/1082)
* Reduce packaged gem size

### [v11.0.0) / 2024-08-23](https://github.com/mbleigh/acts-as-taggable-on/compare/v10.0.0...v11.0.0)
- Removed support for Ruby 2.7
Expand Down
3 changes: 1 addition & 2 deletions acts-as-taggable-on.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ Gem::Specification.new do |gem|
gem.homepage = 'https://github.com/mbleigh/acts-as-taggable-on'
gem.license = 'MIT'

gem.files = `git ls-files`.split($/)
gem.test_files = gem.files.grep(%r{^spec/})
gem.files = Dir['db/**/*', 'lib/**/*', 'LICENSE.md'].reject { |f| File.directory?(f) }
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 3.1.0'

Expand Down

0 comments on commit a56f8d0

Please sign in to comment.