-
Notifications
You must be signed in to change notification settings - Fork 16
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
c01c5bb
commit 262ef9e
Showing
1 changed file
with
35 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Pod::Spec.new do |s| | ||
|
||
# 1 | ||
s.platform = :ios | ||
s.ios.deployment_target = '12.2' | ||
s.name = "Cachy" | ||
s.summary = "RWPickFlavor lets a user select an ice cream flavor." | ||
s.requires_arc = true | ||
|
||
# 2 | ||
s.version = "1.0.0" | ||
|
||
# 3 | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
|
||
# 4 - Replace with your name and e-mail address | ||
s.author = { "Sadman Samee" => "[email protected]" } | ||
|
||
# 5 - Replace this URL with your own GitHub page's URL (from the address bar) | ||
s.homepage = "https://github.com/TheCodedSelf/RWPickFlavor" | ||
|
||
# 6 - Replace this URL with your own Git URL from "Quick Setup" | ||
s.source = { :git => "https://github.com/Sadmansamee/Cachy.git", | ||
:tag => "#{s.version}" } | ||
|
||
# 8 | ||
s.source_files = "Cachy/Classes/*.{swift}" | ||
|
||
# 9 | ||
#s.resources = "Cachy/Assets/*.{png,jpeg,jpg,storyboard,xib,xcassets}" | ||
|
||
# 10 | ||
s.swift_version = "5" | ||
|
||
end |