Index: third_party/protobuf/ruby/google-protobuf.gemspec |
diff --git a/third_party/protobuf/ruby/google-protobuf.gemspec b/third_party/protobuf/ruby/google-protobuf.gemspec |
index 312a0c8c98876120a228b8f4ecda21b7df313a29..c542abf6ab087f3c555c9901ce45d4665a24df3f 100644 |
--- a/third_party/protobuf/ruby/google-protobuf.gemspec |
+++ b/third_party/protobuf/ruby/google-protobuf.gemspec |
@@ -1,6 +1,6 @@ |
Gem::Specification.new do |s| |
s.name = "google-protobuf" |
- s.version = "3.0.0.alpha.5.0" |
+ s.version = "3.0.0.alpha.6.0.0" |
s.licenses = ["BSD"] |
s.summary = "Protocol Buffers" |
s.description = "Protocol Buffers are Google's data interchange format." |
@@ -8,12 +8,13 @@ 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/} |
- unless RUBY_PLATFORM == "java" |
- s.files += `git ls-files "*.c" "*.h" extconf.rb Makefile`.split |
- s.extensions= ["ext/google/protobuf_c/extconf.rb"] |
- else |
+ s.files = Dir.glob('lib/**/*.rb') |
+ if RUBY_PLATFORM == "java" |
s.files += ["lib/google/protobuf_java.jar"] |
+ else |
+ s.files += Dir.glob('ext/**/*') |
+ s.extensions= ["ext/google/protobuf_c/extconf.rb"] |
+ s.add_development_dependency "rake-compiler-dock" |
end |
s.test_files = ["tests/basic.rb", |
"tests/stress.rb", |