1Pod::Spec.new do |s| 2 s.name = 'Common' 3 s.version = "0.0.1" 4 s.license = "Apache License, Version 2.0" 5 s.authors = { 'gRPC contributors' => '[email protected]' } 6 s.homepage = "https://grpc.io/" 7 s.summary = "Shared common test utils" 8 s.source = { :git => 'https://github.com/grpc/grpc.git' } 9 10 s.ios.deployment_target = '10.0' 11 s.osx.deployment_target = '10.12' 12 s.tvos.deployment_target = '12.0' 13 s.watchos.deployment_target = '6.0' 14 s.framework = 'XCTest' 15 16 s.dependency "gRPC-ProtoRPC" 17 18 s.source_files = '**/*.{m}' 19 s.public_header_files = '**/*.{h}' 20 end 21