aboutsummaryrefslogtreecommitdiff
path: root/ruby/google-protobuf.gemspec
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2015-02-02 13:29:15 -0800
committerJoshua Haberman <jhaberman@gmail.com>2015-02-02 13:29:15 -0800
commit17e4419188e5873c43d462d493fcbb2cc668aa71 (patch)
tree467caa69558129b90c56ea9fd971ce51c496747d /ruby/google-protobuf.gemspec
parent8ccaa42ffbe020f3d74ec90e954dd45a27ec32c6 (diff)
parenta3953da536751f2a77de0553b566bde5e8b5aa1e (diff)
downloadprotobuf-17e4419188e5873c43d462d493fcbb2cc668aa71.tar.gz
protobuf-17e4419188e5873c43d462d493fcbb2cc668aa71.tar.bz2
protobuf-17e4419188e5873c43d462d493fcbb2cc668aa71.zip
Merge pull request #168 from cfallin/ruby-oneof
Support oneofs in MRI Ruby C extension.
Diffstat (limited to 'ruby/google-protobuf.gemspec')
-rw-r--r--ruby/google-protobuf.gemspec4
1 files changed, 3 insertions, 1 deletions
diff --git a/ruby/google-protobuf.gemspec b/ruby/google-protobuf.gemspec
index 87033ac4..7bfa533c 100644
--- a/ruby/google-protobuf.gemspec
+++ b/ruby/google-protobuf.gemspec
@@ -18,5 +18,7 @@ Gem::Specification.new do |s|
s.files = ["lib/google/protobuf.rb"] +
# extension C source
find_c_source("ext/google/protobuf_c")
- s.test_files = `git ls-files -- tests`.split
+ s.test_files = ["tests/basic.rb",
+ "tests/stress.rb",
+ "tests/generated_code_test.rb"]
end