Skip to content
Snippets Groups Projects
Commit b7f970bc authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Point the Podfile to a "generated" local podspec

parent f4ddfab3
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ source 'https://github.com/CocoaPods/Specs.git' ...@@ -2,7 +2,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0' platform :ios, '8.0'
pod 'gRPC', :path => "../../../.." pod 'gRPC', :path => "../../../.."
pod 'ProtocolBuffers', '~> 1.9' pod 'Route_guide', :path => "protos"
link_with 'Sample', 'SampleTests' link_with 'Sample', 'SampleTests'
......
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/protos'
s.license = 'New BSD'
s.authors = { 'Jorge Canizales' => 'jcanizales@google.com' }
s.source_files = './*.{h,m}'
s.platform = :ios
s.ios.deployment_target = '6.0'
s.requires_arc = true
s.dependency 'ProtocolBuffers', '~> 1.9'
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment