Home | History | Annotate | Download | only in ruby
      1 # -*- ruby -*-
      2 # encoding: utf-8
      3 
      4 Gem::Specification.new do |s|
      5   s.name          = 'grpc-demo'
      6   s.version       = '1.0.0'
      7   s.authors       = ['gRPC Authors']
      8   s.email         = 'temiola (a] 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`.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', '~> 1.0'
     21   s.add_dependency 'multi_json', '~> 1.13.1'
     22   s.add_development_dependency 'bundler', '~> 1.7'
     23 end
     24