aboutsummaryrefslogtreecommitdiffhomepage
path: root/ruby/google-protobuf.gemspec
diff options
context:
space:
mode:
authorGravatar Josh Haberman <jhaberman@gmail.com>2016-02-04 14:18:14 -0800
committerGravatar Josh Haberman <jhaberman@gmail.com>2016-02-04 14:18:14 -0800
commit70a4b03086fae034d1cdf03b6a65d0eb7e8e92e7 (patch)
treeaa81191a9c242648645fde195be508e14f185877 /ruby/google-protobuf.gemspec
parentaf4aa9bd64229d726d62a532f5f31a415ff74725 (diff)
Add rake-compiler-dock as a dep.
Diffstat (limited to 'ruby/google-protobuf.gemspec')
-rw-r--r--ruby/google-protobuf.gemspec7
1 files changed, 4 insertions, 3 deletions
diff --git a/ruby/google-protobuf.gemspec b/ruby/google-protobuf.gemspec
index 312a0c8c..0762da97 100644
--- a/ruby/google-protobuf.gemspec
+++ b/ruby/google-protobuf.gemspec
@@ -9,11 +9,12 @@ Gem::Specification.new do |s|
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"
+ if RUBY_PLATFORM == "java"
+ s.files += ["lib/google/protobuf_java.jar"]
+ else
s.files += `git ls-files "*.c" "*.h" extconf.rb Makefile`.split
s.extensions= ["ext/google/protobuf_c/extconf.rb"]
- else
- s.files += ["lib/google/protobuf_java.jar"]
+ s.add_development_dependency "rake-compiler-dock"
end
s.test_files = ["tests/basic.rb",
"tests/stress.rb",