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.
spec.files
sentry-ruby.gemspec
1 parent 7ff81bf commit 09308abCopy full SHA for 09308ab
CHANGELOG.md
@@ -1,3 +1,10 @@
1
+## 5.4.1
2
+
3
+### Bug Fixes
4
5
+- Fix missing `spec.files` in `sentry-ruby.gemspec`
6
+ - Fixes [#1856](https://github.com/getsentry/sentry-ruby/issues/1856)
7
8
## 5.4.0
9
10
### Features
sentry-ruby/sentry-ruby.gemspec
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
spec.platform = Gem::Platform::RUBY
13
spec.required_ruby_version = '>= 2.4'
14
spec.extra_rdoc_files = ["README.md", "LICENSE.txt"]
15
+ spec.files = `git ls-files | grep -Ev '^(spec|benchmarks|examples)'`.split("\n")
16
17
spec.metadata["homepage_uri"] = spec.homepage
18
spec.metadata["source_code_uri"] = spec.homepage
0 commit comments