1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: remove git usage
Authoer: Praveen Arimbrathodiyil <praveen@debian.org>
Last-Update: 2015-08-06
Forwarded: no
--- a/simple_oauth.gemspec
+++ b/simple_oauth.gemspec
@@ -20,12 +20,7 @@ Gem::Specification.new do |spec|
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
- spec.files = Dir.chdir(__dir__) do
- `git ls-files -z`.split("\x0").reject do |f|
- (File.expand_path(f) == __FILE__) ||
- f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
- end
- end
+ spec.files = Dir.glob("**/*")
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
|