diff options
author | Josh Haberman <jhaberman@gmail.com> | 2016-02-04 14:18:14 -0800 |
---|---|---|
committer | Josh Haberman <jhaberman@gmail.com> | 2016-02-04 14:18:14 -0800 |
commit | 70a4b03086fae034d1cdf03b6a65d0eb7e8e92e7 (patch) | |
tree | aa81191a9c242648645fde195be508e14f185877 /ruby/google-protobuf.gemspec | |
parent | af4aa9bd64229d726d62a532f5f31a415ff74725 (diff) |
Add rake-compiler-dock as a dep.
Diffstat (limited to 'ruby/google-protobuf.gemspec')
-rw-r--r-- | ruby/google-protobuf.gemspec | 7 |
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", |