We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d8928b commit 57c8458Copy full SHA for 57c8458
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# attr_encrypted
2
3
+## Unreleased
4
+
5
+* Reduce gem size by excluding test files
6
7
## 4.2.0
8
9
* Changed: Set minimum Ruby version as 2.7.
attr_encrypted.gemspec
@@ -21,8 +21,11 @@ Gem::Specification.new do |s|
21
22
s.require_paths = ['lib']
23
24
- s.files = `git ls-files`.split("\n")
25
- s.test_files = `git ls-files -- test/*`.split("\n")
+ s.files = Dir.glob('lib/**/*') + [
+ 'CHANGELOG.md',
26
+ 'MIT-LICENSE',
27
+ 'README.md'
28
+ ]
29
30
s.required_ruby_version = '>= 2.7.0'
31
0 commit comments