blob: 68e2a7a1133e314b0ba4923b663ced55ac7910d4 [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
murgatroid99b5282c72016-07-26 13:14:27 -070021 s.executables = %w( grpc_tools_ruby_protoc grpc_tools_ruby_protoc_plugin )
murgatroid993b293252016-04-29 11:36:57 -070022end