forked from optimizely/objective-c-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OptimizelySDKDatafileManager.podspec
20 lines (20 loc) · 1.14 KB
/
OptimizelySDKDatafileManager.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "OptimizelySDKDatafileManager"
s.version = "1.5.0"
s.summary = "Optimizely server-side testing datafile manager framework."
s.homepage = "http://developers.optimizely.com/server/reference/index.html?language=objectivec"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "Optimizely" => "support@optimizely.com" }
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.source = {
:git => "https://github.com/optimizely/objective-c-sdk.git",
:tag => "datafileManager-"+s.version.to_s
}
s.source_files = "OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/*.{h,m}"
s.public_header_files = "OptimizelySDKDatafileManager/OptimizelySDKDatafileManager/*.h"
s.framework = "Foundation"
s.requires_arc = true
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => "OPTIMIZELY_SDK_DATAFILE_MANAGER_VERSION=@\\\"#{s.version}\\\"" }
s.dependency 'OptimizelySDKShared', '1.5.0'
end