blob: af904de4a91006ef68832eea54e5df324c6683fd [file] [log] [blame]
murgatroid993b293252016-04-29 11:36:57 -07001# -*- 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
murgatroid99faf3bfc2016-04-29 12:39:05 -07007 s.authors = ['grpc Authors']
8 s.email = 'grpc-io@googlegroups.com'
murgatroid993b293252016-04-29 11:36:57 -07009 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 = 'BSD-3-Clause'
13
14 s.files = %w( version.rb os_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( protoc.rb protoc_grpc_ruby_plugin.rb )
22end