Skip to content

Commit 42e3208

Browse files
authored
Merge pull request #2 from matrejek/feature/matrejek/cocoapods
#1 Adds CocoaPods support
2 parents b48bd00 + 0842341 commit 42e3208

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

SwiftEntitlements.podspec

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'SwiftEntitlements'
3+
s.version = '0.1.1'
4+
s.summary = 'A simple Swift utility package that reads application entitlements.'
5+
s.description = 'SwiftEntitlements is a Swift package that helps you with decoding application entitlements. It reads them from the binary and makes them accessible as an extension on UIApplication.'
6+
s.homepage = 'https://github.com/matrejek/SwiftEntitlements'
7+
s.license = { :type => 'MIT', :file => 'LICENSE' }
8+
s.author = { 'Mateusz Matrejek' => 'mateusz@matrejek.eu' }
9+
s.source = { :git => 'https://github.com/matrejek/SwiftEntitlements.git', :tag => s.version.to_s }
10+
s.ios.deployment_target = '12.0'
11+
s.swift_version = '5.0'
12+
13+
s.source_files = 'Sources/SwiftEntitlements/*.swift'
14+
end

0 commit comments

Comments
 (0)