forked from leighmcculloch/AppSandboxFileAccess
-
Notifications
You must be signed in to change notification settings - Fork 6
/
SwiftySandboxFileAccess.podspec
23 lines (19 loc) · 1.16 KB
/
SwiftySandboxFileAccess.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "SwiftySandboxFileAccess"
s.version = "2.0.2"
s.summary = "A simpler way to access and store permissions for files outside of the AppStore sandbox."
s.description = <<-DESC
Deprecated in favour version 3 which requires Swift Package Manager
A class that wraps up writing and accessing files outside a Mac apps App Sandbox files into a simple interface.
The class will request permission from the user with a simple to understand dialog consistent
with Apple's documentation and persist permissions across application runs.
DESC
s.homepage = "https://github.com/ConfusedVorlon/SwiftySandboxFileAccess"
s.license = { :type => "BSD-2", :file => "LICENSE" }
s.author = { "Rob Jonson" => "[email protected]","Leigh McCulloch" => "[email protected]" }
s.platform = :osx, "10.9"
s.source = { :git => "https://github.com/ConfusedVorlon/SwiftySandboxFileAccess.git", :tag => s.version }
s.source_files = "Sources/SwiftySandboxFileAccess/*.{swift}"
s.swift_version = '5'
s.deprecated = true
end