OLD | NEW |
(Empty) | |
| 1 Gem::Specification.new do |s| |
| 2 s.name = "google-protobuf" |
| 3 s.version = "3.0.0.alpha.5.0" |
| 4 s.licenses = ["BSD"] |
| 5 s.summary = "Protocol Buffers" |
| 6 s.description = "Protocol Buffers are Google's data interchange format." |
| 7 s.homepage = "https://developers.google.com/protocol-buffers" |
| 8 s.authors = ["Protobuf Authors"] |
| 9 s.email = "protobuf@googlegroups.com" |
| 10 s.require_paths = ["lib"] |
| 11 s.files = `git ls-files -z`.split("\x0").find_all{|f| f =~ /lib\/.+\.rb/
} |
| 12 unless RUBY_PLATFORM == "java" |
| 13 s.files += `git ls-files "*.c" "*.h" extconf.rb Makefile`.split |
| 14 s.extensions= ["ext/google/protobuf_c/extconf.rb"] |
| 15 else |
| 16 s.files += ["lib/google/protobuf_java.jar"] |
| 17 end |
| 18 s.test_files = ["tests/basic.rb", |
| 19 "tests/stress.rb", |
| 20 "tests/generated_code_test.rb"] |
| 21 s.add_development_dependency "rake-compiler" |
| 22 s.add_development_dependency "test-unit" |
| 23 s.add_development_dependency "rubygems-tasks" |
| 24 end |
OLD | NEW |