aboutsummaryrefslogtreecommitdiffhomepage
path: root/ruby/google-protobuf.gemspec
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-02-06 00:55:28 +0100
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-02-06 00:55:28 +0100
commit4e141bb3b885f2f79664958b7086fa4a0a526bef (patch)
tree967875e0790c88628d8f8f3148af148d33ff5232 /ruby/google-protobuf.gemspec
parent70a4b03086fae034d1cdf03b6a65d0eb7e8e92e7 (diff)
Removing usage of git - not everyone grabs the gem using it.
Diffstat (limited to 'ruby/google-protobuf.gemspec')
-rw-r--r--ruby/google-protobuf.gemspec4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby/google-protobuf.gemspec b/ruby/google-protobuf.gemspec
index 0762da97..7b64ee77 100644
--- a/ruby/google-protobuf.gemspec
+++ b/ruby/google-protobuf.gemspec
@@ -8,11 +8,11 @@ Gem::Specification.new do |s|
s.authors = ["Protobuf Authors"]
s.email = "protobuf@googlegroups.com"
s.require_paths = ["lib"]
- s.files = `git ls-files -z`.split("\x0").find_all{|f| f =~ /lib\/.+\.rb/}
+ s.files = Dir.glob('lib/**/*.rb')
if RUBY_PLATFORM == "java"
s.files += ["lib/google/protobuf_java.jar"]
else
- s.files += `git ls-files "*.c" "*.h" extconf.rb Makefile`.split
+ s.files += Dir.glob('ext/**/*')
s.extensions= ["ext/google/protobuf_c/extconf.rb"]
s.add_development_dependency "rake-compiler-dock"
end