blob: b1dfdae6ab3f835ee8384324fb2cc7578f8380a5 [file] [log] [blame]
Tim Emiola49f3ccd2015-02-19 11:09:19 -08001# -*- ruby -*-
2# encoding: utf-8
3
4Gem::Specification.new do |s|
Tim Emiola43f38412015-02-24 07:42:14 -08005 s.name = 'grpc-demo'
Tim Emiola5972e582015-09-23 14:46:32 -07006 s.version = '0.11.0'
Tim Emiola49f3ccd2015-02-19 11:09:19 -08007 s.authors = ['gRPC Authors']
8 s.email = 'temiola@google.com'
Stanley Cheung0a268212015-08-27 14:38:38 -07009 s.homepage = 'https://github.com/grpc/grpc'
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")
Tim Emiola91b73f72015-02-26 01:25:56 -080014 s.executables = `git ls-files -- ruby/greeter*.rb ruby/route_guide/*.rb`.split("\n").map do |f|
Tim Emiola49f3ccd2015-02-19 11:09:19 -080015 File.basename(f)
16 end
17 s.require_paths = ['lib']
18 s.platform = Gem::Platform::RUBY
19
Tim Emiola5972e582015-09-23 14:46:32 -070020 s.add_dependency 'grpc', '~> 0.11'
Tim Emiola49f3ccd2015-02-19 11:09:19 -080021
22 s.add_development_dependency 'bundler', '~> 1.7'
23end