forked from defagos/ComScore-iOS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComScore-iOS.podspec
More file actions
29 lines (28 loc) · 1.35 KB
/
ComScore-iOS.podspec
File metadata and controls
29 lines (28 loc) · 1.35 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
Pod::Spec.new do |s|
s.name = 'ComScore-iOS'
s.version = '5.6.1b'
s.summary = 'Official analytics library for iOS from comScore'
s.description = <<-DESC
This library is used to collect analytics from iOS applications. The library supports apps developed in native Objective C with Apple Xcode or in other languages/tools which can include and use native Objective C libraries.
DESC
s.homepage = 'https://github.com/comscore/ComScore-iOS-SDK'
s.license = 'Custom'
s.author = { "comScore" => "www.comscore.com" }
s.source = { :git => "https://github.com/comscore/ComScore-iOS-SDK.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/comScore'
s.platform = :ios
s.prepare_command = <<-CMD
touch .pod
CMD
s.ios.deployment_target = '8.0'
s.vendored_frameworks = 'comScore/ComScore.framework'
s.preserve_paths = 'comScore/ComScore.framework'
s.public_header_files = 'comScore/ComScore.framework/Headers/*.h'
s.source_files = 'comScore/ComScore.framework/Headers/*.h'
s.resource_bundle = { 'SCORBundle' => '.pod' }
s.frameworks = "SystemConfiguration", "Security"
s.libraries = "c++"
s.module_name = 'ComScore'
s.deprecated_in_favor_of = "ComScore"
s.deprecated = true
end