Skip to content

Commit

Permalink
Fix version reqs in generated podspecs
Browse files Browse the repository at this point in the history
  • Loading branch information
jcanizales committed Jun 4, 2015
1 parent ba65a10 commit 9f95dcd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,21 @@ Pod::Spec.new do |s|
s.name = 'RemoteTest'
s.version = '0.0.1'
s.summary = 'Protobuf library generated from test.proto, messages.proto, and empty.proto'
s.homepage = 'https://github.com/grpc/grpc/tree/master/src/objective-c/examples/Sample/RemoteTestClient'
s.license = 'New BSD'
s.authors = { 'Jorge Canizales' => 'jcanizales@google.com' }

s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'

s.subspec 'Messages' do |ms|
ms.source_files = '*.pbobjc.{h,m}'
ms.requires_arc = false
ms.dependency 'Protobuf', '~> 3.0'
ms.dependency 'Protobuf', '~> 3.0.0-alpha-3'
end

s.subspec 'Services' do |ss|
ss.source_files = '*.pbrpc.{h,m}'
ss.requires_arc = true
ss.dependency 'gRPC', '~> 0.0'
ss.dependency 'gRPC', '~> 0.5'
ss.dependency 'RemoteTest/Messages'
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,21 @@ Pod::Spec.new do |s|
s.name = 'Route_guide'
s.version = '0.0.1'
s.summary = 'Protobuf library generated from route_guide.proto'
s.homepage = 'https://github.com/grpc/grpc/tree/master/src/objective-c/examples/Sample/RouteGuideClient'
s.license = 'New BSD'
s.authors = { 'Jorge Canizales' => 'jcanizales@google.com' }

s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'

s.subspec 'Messages' do |ms|
ms.source_files = '*.pbobjc.{h,m}'
ms.requires_arc = false
ms.dependency 'Protobuf', '~> 3.0'
ms.dependency 'Protobuf', '~> 3.0.0-alpha-3'
end

s.subspec 'Services' do |ss|
ss.source_files = '*.pbrpc.{h,m}'
ss.requires_arc = true
ss.dependency 'gRPC', '~> 0.0'
ss.dependency 'gRPC', '~> 0.5'
ss.dependency 'Route_guide/Messages'
end
end

0 comments on commit 9f95dcd

Please sign in to comment.