Skip to content

Commit fc729eb

Browse files
authored
Merge branch 'master' into fix-a-pending-spec
2 parents f7af262 + 7c4b0df commit fc729eb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
## HEAD
33

44
* Fix a pending test [#387](https://github.com/Sorcery/sorcery/pull/387)
5+
* Limit the files included in the gem to only the necessary ones [#386](https://github.com/Sorcery/sorcery/pull/386)
56
* Remove check for rails-controller-testing gem [#385](https://github.com/Sorcery/sorcery/pull/385)
67
* Remove Testing Matrix from README [#384](https://github.com/Sorcery/sorcery/pull/384)
78
* 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)