Skip to content
This repository has been archived by the owner on Sep 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #3 from JuanitoFatas/light-weight-gem
Browse files Browse the repository at this point in the history
Pack less files in released gem
  • Loading branch information
chrisenytc authored Aug 28, 2016
2 parents f05e781 + a83a43c commit 1832a7f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions uber-sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/chrisenytc/uber-sdk"
spec.license = "MIT"

spec.files = %w(LICENSE.txt README.md Rakefile uber-sdk.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.files += Dir.glob("test/**/*")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = Dir.glob("test/**/*")
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with?(".") || f =~ %r(^(spec|bin)/) }
spec.require_paths = ["lib"]
spec.required_rubygems_version = ">= 1.3.5"

Expand Down

0 comments on commit 1832a7f

Please sign in to comment.