-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from thefuntasty/feature/spm
Swift package manager support
- Loading branch information
Showing
28 changed files
with
262 additions
and
770 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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,19 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "FuntastyKit" | ||
s.version = "1.4.0" | ||
s.version = "1.5.0" | ||
s.summary = "A collection of Swift utilities and protocols used in our projects." | ||
s.description = <<-DESC | ||
MVVM-C architecture, service holder for code injection of services | ||
some regularly used UIKit extensions, protocols for simple initialization from XIB files, | ||
storyboards and for handling keyboard, hairline and keyboard height constraints | ||
DESC | ||
s.homepage = "https://github.com/thefuntasty/FuntastyKit" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.license = { type: "MIT", file: "LICENSE" } | ||
s.author = { "Matěj K. Jirásek" => "matej.jirasek@thefuntasty.com" } | ||
s.social_media_url = "https://twitter.com/TheFuntasty" | ||
s.platform = :ios, "9.0" | ||
s.swift_version = "5.0" | ||
s.source = { :git => "https://github.com/thefuntasty/FuntastyKit.git", :tag => s.version.to_s } | ||
s.source_files = "Sources/**/*" | ||
s.source_files = "Sources/FuntastyKit/**/*" | ||
s.frameworks = "Foundation", "UIKit" | ||
end |
Oops, something went wrong.