mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
712 B
24 lines
712 B
10 years ago
|
# -*- ruby -*-
|
||
|
# encoding: utf-8
|
||
|
|
||
|
Gem::Specification.new do |s|
|
||
10 years ago
|
s.name = 'grpc-demo'
|
||
10 years ago
|
s.version = '0.5.0'
|
||
10 years ago
|
s.authors = ['gRPC Authors']
|
||
|
s.email = 'temiola@google.com'
|
||
10 years ago
|
s.homepage = 'https://github.com/grpc/grpc-common'
|
||
10 years ago
|
s.summary = 'gRPC Ruby overview sample'
|
||
10 years ago
|
s.description = 'Simple demo of using gRPC from Ruby'
|
||
10 years ago
|
|
||
|
s.files = `git ls-files -- ruby/*`.split("\n")
|
||
10 years ago
|
s.executables = `git ls-files -- ruby/greeter*.rb ruby/route_guide/*.rb`.split("\n").map do |f|
|
||
10 years ago
|
File.basename(f)
|
||
|
end
|
||
|
s.require_paths = ['lib']
|
||
|
s.platform = Gem::Platform::RUBY
|
||
|
|
||
10 years ago
|
s.add_dependency 'grpc', '~> 0.6'
|
||
10 years ago
|
|
||
|
s.add_development_dependency 'bundler', '~> 1.7'
|
||
|
end
|