1# -*- ruby -*- 2# encoding: utf-8 3require_relative 'version.rb' 4Gem::Specification.new do |s| 5 s.name = 'grpc-tools' 6 s.version = GRPC::Tools::VERSION 7 s.authors = ['grpc Authors'] 8 s.email = 'grpc-io@googlegroups.com' 9 s.homepage = 'https://github.com/google/grpc/tree/master/src/ruby/tools' 10 s.summary = 'Development tools for Ruby gRPC' 11 s.description = 'protoc and the Ruby gRPC protoc plugin' 12 s.license = 'Apache-2.0' 13 14 s.files = %w( version.rb platform_check.rb README.md ) 15 s.files += Dir.glob('bin/**/*') 16 17 s.bindir = 'bin' 18 19 s.platform = Gem::Platform::RUBY 20 21 s.executables = %w( grpc_tools_ruby_protoc grpc_tools_ruby_protoc_plugin ) 22end 23