blob: d4e2ec7a2664c1a03eb15e83bf6ea8b1f499b6a3 [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 Emiola7b684002015-02-19 12:52:26 -08006 s.version = '0.1.0'
Tim Emiola49f3ccd2015-02-19 11:09:19 -08007 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")
Tim Emiola43f38412015-02-24 07:42:14 -080014 s.executables = `git ls-files -- ruby/*client.rb ruby/*server.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
20 s.add_dependency 'grpc', '~> 0.0.1'
21
22 s.add_development_dependency 'bundler', '~> 1.7'
23end