-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathSerrata.podspec
22 lines (20 loc) · 1.05 KB
/
Serrata.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Serrata"
s.version = "1.0.10"
s.summary = "Slide image viewer library similar to Twitter and LINE."
s.description = <<-DESC
You can use it simply by passing the necessary information.
It is a UI library that allows you to intuitively view images.
Kingfisher is a lightweight and pure Swift implemented library.
Kingfisher is used in the Serrata. I sincerely respect Kingfisher.
DESC
s.homepage = "https://github.com/horitaku46/Serrata"
s.license = { :type => "MIT", :file => "./LICENSE" }
s.author = { "Takuma Horiuchi" => "horitaku46@gmail.com" }
s.social_media_url = "https://twitter.com/horitaku46"
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/horitaku46/Serrata.git", :tag => "#{s.version}" }
s.source_files = "Serrata/Sources/*.{swift}"
s.resources = "Serrata/**/*.{storyboard,xib,xcassets}"
s.dependency "Kingfisher"
end