Skip to content

Commit

Permalink
Exclude spec files from gem package
Browse files Browse the repository at this point in the history
  • Loading branch information
amatsuda committed Aug 2, 2024
1 parent c2bf677 commit 6399bcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### 2.4.1 (Next)

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

### 2.4.0 (2024/07/14)
Expand Down
2 changes: 1 addition & 1 deletion slack-ruby-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.7'
s.required_rubygems_version = '>= 1.3.6'
s.files = `git ls-files`.split("\n")
s.files = `git ls-files`.split("\n").grep_v(%r{^spec/})
s.require_paths = ['lib']
s.homepage = 'http://github.com/slack-ruby/slack-ruby-client'
s.licenses = ['MIT']
Expand Down

0 comments on commit 6399bcd

Please sign in to comment.