This repository was archived by the owner on Nov 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathprotobuf-ios.podspec
More file actions
37 lines (33 loc) · 1.48 KB
/
Copy pathprotobuf-ios.podspec
File metadata and controls
37 lines (33 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "protobuf-ios"
# s.version = File.read('VERSION')
s.version = "2.3.2"
s.summary = "An Objective-C implementation of Google proto buffer for iOS"
s.description = <<-DESC
An Objective-C implementation of Google proto buffer for iOS
* Support write to / parse from delimited stream (protobuf 2.3 feature).
DESC
s.homepage = "https://github.com/mingchen/protobuf-ios"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Ming Chen" => "mockey.chen@gmail.com" }
s.source = { :git => "https://github.com/mingchen/protobuf-ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://github.com/mingchen/protobuf-ios'
s.platform = :ios, '5.0'
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = false
s.source_files = 'runtime/protobuf-ios/Classes'
# s.resources = 'Assets/*.png'
s.ios.exclude_files = ''
s.osx.exclude_files = ''
# s.public_header_files = 'Classes/**/*.h'
# s.frameworks = 'SomeFramework', 'AnotherFramework'
# s.dependency 'JSONKit', '~> 1.4'
end