forked from leoru/SwiftLoader
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSwiftLoader.podspec
More file actions
20 lines (18 loc) · 841 Bytes
/
SwiftLoader.podspec
File metadata and controls
20 lines (18 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "SwiftLoader"
s.version = "0.4.0"
s.summary = "A simple and beautiful activity indicator"
s.description = <<-DESC
SwiftLoader is a simple and beautiful activity indicator written in Swift.
DESC
s.homepage = "https://github.com/Keeward/SwiftLoader"
s.screenshots = "https://raw.githubusercontent.com/Keeward/SwiftLoader/master/images/loadergif.gif"
s.license = 'MIT'
s.author = { "Kirill Kunst" => "kirillkunst@gmail.com" }
s.source = { :git => "https://github.com/Keeward/SwiftLoader.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/keeward'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'src/SwiftLoader'
s.frameworks = 'UIKit'
end