Skip to content

Commit

Permalink
Merge pull request #2 from matrejek/feature/matrejek/cocoapods
Browse files Browse the repository at this point in the history
#1 Adds CocoaPods support
  • Loading branch information
matrejek authored May 18, 2021
2 parents b48bd00 + 0842341 commit 42e3208
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions SwiftEntitlements.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Pod::Spec.new do |s|
s.name = 'SwiftEntitlements'
s.version = '0.1.1'
s.summary = 'A simple Swift utility package that reads application entitlements.'
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.'
s.homepage = 'https://github.com/matrejek/SwiftEntitlements'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Mateusz Matrejek' => '[email protected]' }
s.source = { :git => 'https://github.com/matrejek/SwiftEntitlements.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'

s.source_files = 'Sources/SwiftEntitlements/*.swift'
end

0 comments on commit 42e3208

Please sign in to comment.