Skip to content

Commit

Permalink
Merge pull request #175 from pusher/gem_exclude_files
Browse files Browse the repository at this point in the history
Only include lib and doc files in gem
  • Loading branch information
Jon Elverkilde authored Mar 25, 2021
2 parents 8c25091 + e8146ea commit b81f297
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.1

* [CHANGED] Only include lib and essential docs in gem.

## 2.0.0

* [CHANGED] Use TLS by default.
Expand Down
2 changes: 1 addition & 1 deletion lib/pusher/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Pusher
VERSION = '2.0.0'
VERSION = '2.0.1'
end
4 changes: 1 addition & 3 deletions pusher.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ Gem::Specification.new do |s|
s.add_development_dependency "json", "~> 2.3"
s.add_development_dependency "rbnacl", "~> 7.1"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = Dir["lib/**/*"] + %w[CHANGELOG.md LICENSE README.md]
s.require_paths = ["lib"]
end

0 comments on commit b81f297

Please sign in to comment.