forked from JohnSundell/Files
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aea10cc
commit a01e1b6
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Files" | ||
s.version = "0.1" | ||
s.summary = "" | ||
s.version = "1.0" | ||
s.summary = "A nicer way to handle files & folders in Swift" | ||
s.description = <<-DESC | ||
Your description here. | ||
Files is a compact library that provides a nicer way to handle files and folders in Swift. It’s primarily aimed at Swift scripting and tooling, but can also be embedded in applications that need to access the file system. It's essentially a thin wrapper around the FileManager APIs that Foundation provides. | ||
DESC | ||
s.homepage = "https://github.com/johnsundell/files" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "John Sundell" => "[email protected]" } | ||
s.social_media_url = "" | ||
s.ios.deployment_target = "8.0" | ||
s.osx.deployment_target = "10.9" | ||
s.watchos.deployment_target = "2.0" | ||
s.tvos.deployment_target = "9.0" | ||
s.source = { :git => "https://github.com/johnsundell/files.git", :tag => s.version.to_s } | ||
s.source_files = "Sources/**/*" | ||
|