Skip to content

Commit 7c4b0df

Browse files
authored
Merge pull request #386 from willnet/gem-files
Limit the files included in the gem to only the necessary ones
2 parents 24463e0 + 0ce772e commit 7c4b0df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22
## HEAD
3-
3+
* Limit the files included in the gem to only the necessary ones [#386](https://github.com/Sorcery/sorcery/pull/386)
44
* Remove check for rails-controller-testing gem [#385](https://github.com/Sorcery/sorcery/pull/385)
55
* Remove Testing Matrix from README [#384](https://github.com/Sorcery/sorcery/pull/384)
66
* Drop support for versions below Ruby 3.2 and Rails 7.1 [#383](https://github.com/Sorcery/sorcery/pull/383)

sorcery.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
2727
s.post_install_message += 'You may need oauth2 if you use external providers such as any of these: https://github.com/Sorcery/sorcery/tree/master/lib/sorcery/providers'
2828
# rubocop:enable Layout/LineLength
2929

30-
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
30+
s.files = Dir['lib/**/*'] + ['README.md', 'LICENSE.md', 'CHANGELOG.md']
3131
s.require_paths = ['lib']
3232

3333
s.licenses = ['MIT']

0 commit comments

Comments
 (0)