-
Notifications
You must be signed in to change notification settings - Fork 211
Expand file tree
/
Copy pathFileKit.podspec
More file actions
15 lines (15 loc) · 783 Bytes
/
FileKit.podspec
File metadata and controls
15 lines (15 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "FileKit"
s.version = "6.0.0"
s.summary = "Simple and expressive file management in Swift."
s.homepage = "https://github.com/nvzqz/FileKit"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = "Nikolai Vazquez"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
s.osx.exclude_files = "FileKit/*/FileProtection.swift"
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/nvzqz/FileKit.git", :tag => "v#{s.version}" }
s.source_files = "Sources/*.swift"
end