Skip to content

Commit b81f297

Browse files
author
Jon Elverkilde
authored
Merge pull request #175 from pusher/gem_exclude_files
Only include lib and doc files in gem
2 parents 8c25091 + e8146ea commit b81f297

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.0.1
4+
5+
* [CHANGED] Only include lib and essential docs in gem.
6+
37
## 2.0.0
48

59
* [CHANGED] Use TLS by default.

lib/pusher/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Pusher
2-
VERSION = '2.0.0'
2+
VERSION = '2.0.1'
33
end

pusher.gemspec

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ Gem::Specification.new do |s|
2929
s.add_development_dependency "json", "~> 2.3"
3030
s.add_development_dependency "rbnacl", "~> 7.1"
3131

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

0 commit comments

Comments
 (0)