aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/GRPCClient.podspec
blob: a34c50b54eb4cb469c5c848c2edde9d732fc65c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Pod::Spec.new do |s|
  s.name         = 'GRPCClient'
  s.version      = '0.0.1'
  s.summary      = 'Generic gRPC client library for iOS'
  s.author = {
    'Jorge Canizales' => 'jcanizales@google.com'
  }
  s.source_files = '*.{h,m}', 'private/*.{h,m}'
  s.private_header_files = 'private/*.h'
  s.platform = :ios
  s.ios.deployment_target = '6.0'
  s.requires_arc = true
  s.dependency 'RxLibrary', '~> 0.0'
end