Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: third_party/protobuf/ruby/google-protobuf.gemspec

Issue 1983203003: Update third_party/protobuf to protobuf-v3.0.0-beta-3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: owners Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 Gem::Specification.new do |s| 1 Gem::Specification.new do |s|
2 s.name = "google-protobuf" 2 s.name = "google-protobuf"
3 s.version = "3.0.0.alpha.5.0" 3 s.version = "3.0.0.alpha.6.0.0"
4 s.licenses = ["BSD"] 4 s.licenses = ["BSD"]
5 s.summary = "Protocol Buffers" 5 s.summary = "Protocol Buffers"
6 s.description = "Protocol Buffers are Google's data interchange format." 6 s.description = "Protocol Buffers are Google's data interchange format."
7 s.homepage = "https://developers.google.com/protocol-buffers" 7 s.homepage = "https://developers.google.com/protocol-buffers"
8 s.authors = ["Protobuf Authors"] 8 s.authors = ["Protobuf Authors"]
9 s.email = "protobuf@googlegroups.com" 9 s.email = "protobuf@googlegroups.com"
10 s.require_paths = ["lib"] 10 s.require_paths = ["lib"]
11 s.files = `git ls-files -z`.split("\x0").find_all{|f| f =~ /lib\/.+\.rb/ } 11 s.files = Dir.glob('lib/**/*.rb')
12 unless RUBY_PLATFORM == "java" 12 if RUBY_PLATFORM == "java"
13 s.files += `git ls-files "*.c" "*.h" extconf.rb Makefile`.split 13 s.files += ["lib/google/protobuf_java.jar"]
14 else
15 s.files += Dir.glob('ext/**/*')
14 s.extensions= ["ext/google/protobuf_c/extconf.rb"] 16 s.extensions= ["ext/google/protobuf_c/extconf.rb"]
15 else 17 s.add_development_dependency "rake-compiler-dock"
16 s.files += ["lib/google/protobuf_java.jar"]
17 end 18 end
18 s.test_files = ["tests/basic.rb", 19 s.test_files = ["tests/basic.rb",
19 "tests/stress.rb", 20 "tests/stress.rb",
20 "tests/generated_code_test.rb"] 21 "tests/generated_code_test.rb"]
21 s.add_development_dependency "rake-compiler" 22 s.add_development_dependency "rake-compiler"
22 s.add_development_dependency "test-unit" 23 s.add_development_dependency "test-unit"
23 s.add_development_dependency "rubygems-tasks" 24 s.add_development_dependency "rubygems-tasks"
24 end 25 end
OLDNEW
« no previous file with comments | « third_party/protobuf/ruby/ext/google/protobuf_c/upb.c ('k') | third_party/protobuf/ruby/lib/google/protobuf.rb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698