-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCachyKit.podspec
35 lines (25 loc) · 893 Bytes
/
CachyKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
# 1
s.platform = :ios
s.ios.deployment_target = '10'
s.name = "CachyKit"
s.summary = "A Caching Library is written in Swift that can cache JSON, Image, Zip or AnyObject with expiry date and force refresh."
s.requires_arc = true
# 2
s.version = "1.0.14"
# 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/Sadmansamee"
# 6 - Replace this URL with your own Git URL from "Quick Setup"
s.source = { :git => "https://github.com/Sadmansamee/CachyKit.git",
:tag => "#{s.version}" }
# 8
s.source_files = "Sources/Cachy/*.{swift}"
# 9
#s.resources = "Cachy/Assets/*.{png,jpeg,jpg,storyboard,xib,xcassets}"
# 10
s.swift_version = "5"
end