Skip to content

Commit 46552f4

Browse files
committed
Create LCAppSandboxFileKit.podspec
1 parent 890f526 commit 46552f4

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

LCAppSandboxFileKit.podspec

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Pod::Spec.new do |spec|
2+
3+
spec.name = "LCAppSandboxFileKit"
4+
5+
spec.version = "1.0.0"
6+
7+
spec.summary = "LCAppSandboxFileKit is a function to write and access files outside of the macOS application sandbox file!"
8+
9+
spec.description = <<-DESC
10+
LCAppSandboxFileKit is a framework for writing and accessing files outside of your macOS application's sandbox file!
11+
It uses a simple, easy-to-understand dialog consistent with Apple's documentation to request permission from the user,
12+
and uses secure bookmarks to retain permissions for the duration of your application!
13+
DESC
14+
15+
spec.homepage = "https://github.com/DevLiuSir/LCAppSandboxFileKit"
16+
17+
spec.license = { :type => "MIT", :file => "LICENSE" }
18+
19+
spec.author = { "Marvin" => "[email protected]" }
20+
21+
spec.swift_versions = ['5.0']
22+
23+
spec.platform = :osx
24+
25+
spec.osx.deployment_target = "10.14"
26+
27+
spec.source = { :git => "https://github.com/DevLiuSir/LCAppSandboxFileKit.git", :tag => "#{spec.version}" }
28+
29+
spec.source_files = "Sources/LCAppSandboxFileKit/**/*.{h,m,swift}"
30+
31+
spec.resources = ['Sources/LCAppSandboxFileKit/Resources/**/*.{lproj,strings}']
32+
33+
34+
end

0 commit comments

Comments
 (0)