Skip to content

Commit

Permalink
Merge pull request #48 from tas50/master
Browse files Browse the repository at this point in the history
Only ship the required libs in the gem artifact
  • Loading branch information
Patrick Way authored Dec 21, 2018
2 parents 59829fe + c33f37d commit 99514e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ rvm:
- 1.9.3
- 2.0.0-p648 # macOS
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6
- ruby-head
- jruby-head
before_install: gem install bundler -v '~> 1.14' --conservative
6 changes: 1 addition & 5 deletions plist.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/patsplat/plist"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.files = %w{LICENSE.txt} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.14"
Expand Down

0 comments on commit 99514e3

Please sign in to comment.