Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlagger.podspec
More file actions
Latest commit
29 lines (22 loc) · 1.08 KB
/
Copy pathFlagger.podspec
File metadata and controls
29 lines (22 loc) · 1.08 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.newdo |s|
s.name="Flagger"
s.version="3.0.3"
s.summary="An open source Swift SDK for feature flagging (feature gating, feature toggles)"
s.swift_version="5.1"
s.swift_versions=["4.2","5.0","5.1"]
s.description=<<-DESC
An open source Swift SDK for feature flagging (feature gating, feature toggles).
Documentation available at https://docs.airdeploy.io
DESC
s.homepage="https://airdeploy.io"
s.license='MIT'
s.author={"Engineering"=>"engineering@airdeploy.io"}
s.source={:git=>"https://github.com/airdeploy/flagger-ios.git",:tag=>s.version.to_s}
s.ios.deployment_target='10.0'
s.requires_arc=true
s.source_files='Flagger/*.{swift,h}'
s.static_framework=true
s.vendored_frameworks="FlaggerGoWrapper.framework"
s.pod_target_xcconfig={'ONLY_ACTIVE_ARCH'=>'YES'}
s.user_target_xcconfig={'ONLY_ACTIVE_ARCH'=>'YES'}
end