forked from open-feature/swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenFeature.podspec
More file actions
20 lines (17 loc) · 919 Bytes
/
OpenFeature.podspec
File metadata and controls
20 lines (17 loc) · 919 Bytes
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 = 'OpenFeature'
s.version = '0.3.0' # x-release-please-version
s.summary = 'OpenFeature iOS SDK'
s.description = <<-DESC
OpenFeature is an open specification that provides a vendor-agnostic, community-driven API for feature flagging that works with your favorite feature flag management tool or in-house solution.
DESC
s.homepage = 'https://github.com/open-feature/swift-sdk'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.author = { 'OpenFeature' => 'https://github.com/open-feature' }
s.source = { :git => 'https://github.com/open-feature/swift-sdk.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '11.0'
s.swift_version = '5.5'
s.source_files = 'Sources/OpenFeature/**/*'
s.frameworks = 'Foundation'
end