blob: be1afae7de28126a289d43190f706325ce6b80e4 [file] [log] [blame]
Tim Emiola49f3ccd2015-02-19 11:09:19 -08001# -*- ruby -*-
2# encoding: utf-8
3
4Gem::Specification.new do |s|
5 s.name = 'grpc'
6 s.version = '0.0.0'
7 s.authors = ['gRPC Authors']
8 s.email = 'temiola@google.com'
Tim Emiolac1500a52015-02-19 11:46:19 -08009 s.homepage = 'https://github.com/grpc/grpc-common'
Tim Emiola49f3ccd2015-02-19 11:09:19 -080010 s.summary = 'gRPC Ruby overview sample'
Tim Emiolac1500a52015-02-19 11:46:19 -080011 s.description = 'Simple demo of using gRPC from Ruby'
Tim Emiola49f3ccd2015-02-19 11:09:19 -080012
13 s.files = `git ls-files -- ruby/*`.split("\n")
14 s.executables = `git ls-files -- ruby/greeter*.rb`.split("\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.0.1'
21
22 s.add_development_dependency 'bundler', '~> 1.7'
23end