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

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

Issue 1842653006: Update //third_party/protobuf to version 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 8 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
(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
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