Skip to content

Commit 6399bcd

Browse files
committed
Exclude spec files from gem package
1 parent c2bf677 commit 6399bcd

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
@@ -1,5 +1,6 @@
11
### 2.4.1 (Next)
22

3+
* [#525](https://github.com/slack-ruby/slack-ruby-client/pull/525): Exclude spec files from gem package - [@amatsuda](https://github.com/amatsuda).
34
* Your contribution here.
45

56
### 2.4.0 (2024/07/14)

slack-ruby-client.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
1212
s.platform = Gem::Platform::RUBY
1313
s.required_ruby_version = '>= 2.7'
1414
s.required_rubygems_version = '>= 1.3.6'
15-
s.files = `git ls-files`.split("\n")
15+
s.files = `git ls-files`.split("\n").grep_v(%r{^spec/})
1616
s.require_paths = ['lib']
1717
s.homepage = 'http://github.com/slack-ruby/slack-ruby-client'
1818
s.licenses = ['MIT']

0 commit comments

Comments
 (0)