1# -*- ruby -*- 2# encoding: utf-8 3require_relative 'version.rb' 4require_relative 'platform.rb' 5Gem::Specification.new do |s| 6 s.name = 'grpc-native-debug' 7 s.version = GRPC::NativeDebug::VERSION 8 s.authors = ['grpc Authors'] 9 s.email = '[email protected]' 10 s.homepage = 'https://github.com/google/grpc/tree/master/src/ruby/nativedebug' 11 s.summary = 'Debug symbols for the native library in Ruby gRPC' 12 s.description = 'Debug symbols to compliment the native libraries in pre-compiled Ruby gRPC binary gems' 13 s.license = 'Apache-2.0' 14 15 s.files = %w( platform.rb version.rb README.md ) 16 s.files += Dir.glob('symbols/*.dbg') 17 18 s.platform = GRPC::NativeDebug::PLATFORM 19end 20