-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLCAppSandboxFileKit.podspec
34 lines (19 loc) · 1.19 KB
/
LCAppSandboxFileKit.podspec
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
30
31
32
33
34
Pod::Spec.new do |spec|
spec.name = "LCAppSandboxFileKit"
spec.version = "1.0.0"
spec.summary = "LCAppSandboxFileKit is a function to write and access files outside of the macOS application sandbox file!"
spec.description = <<-DESC
LCAppSandboxFileKit is a framework for writing and accessing files outside of your macOS application's sandbox file!
It uses a simple, easy-to-understand dialog consistent with Apple's documentation to request permission from the user,
and uses secure bookmarks to retain permissions for the duration of your application!
DESC
spec.homepage = "https://github.com/DevLiuSir/LCAppSandboxFileKit"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Marvin" => "[email protected]" }
spec.swift_versions = ['5.0']
spec.platform = :osx
spec.osx.deployment_target = "10.14"
spec.source = { :git => "https://github.com/DevLiuSir/LCAppSandboxFileKit.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/LCAppSandboxFileKit/**/*.{h,m,swift}"
spec.resources = ['Sources/LCAppSandboxFileKit/Resources/**/*.{lproj,strings}']
end