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

Side by Side Diff: third_party/grpc/examples/ruby/grpc-demo.gemspec

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 # -*- ruby -*-
2 # encoding: utf-8
3
4 Gem::Specification.new do |s|
5 s.name = 'grpc-demo'
6 s.version = '0.11.0'
7 s.authors = ['gRPC Authors']
8 s.email = 'temiola@google.com'
9 s.homepage = 'https://github.com/grpc/grpc'
10 s.summary = 'gRPC Ruby overview sample'
11 s.description = 'Simple demo of using gRPC from Ruby'
12
13 s.files = `git ls-files -- ruby/*`.split("\n")
14 s.executables = `git ls-files -- ruby/greeter*.rb ruby/route_guide/*.rb`.spl it("\n").map do |f|
15 File.basename(f)
16 end
17 s.require_paths = ['lib']
18 s.platform = Gem::Platform::RUBY
19
20 s.add_dependency 'grpc', '~> 0.11'
21
22 s.add_development_dependency 'bundler', '~> 1.7'
23 end
OLDNEW
« no previous file with comments | « third_party/grpc/examples/ruby/greeter_server.rb ('k') | third_party/grpc/examples/ruby/lib/helloworld.rb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698