-
-
Notifications
You must be signed in to change notification settings - Fork 268
/
SwiftSpinner.podspec
23 lines (19 loc) · 1.06 KB
/
SwiftSpinner.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "SwiftSpinner"
s.version = "2.2.0"
s.summary = "A beautiful activity indicator written in Swift"
s.description = <<-DESC
SwiftSpinner is an extra beautiful activity indicator with plain and bold style fitting. It uses dynamic blur and translucency to overlay the current screen contents and display an activity indicator with text (or the so called “spinner”).
DESC
s.homepage = "https://github.com/icanzilb/SwiftSpinner"
s.screenshots = "https://raw.githubusercontent.com/icanzilb/SwiftSpinner/main/etc/spinner-preview.gif"
s.license = 'MIT'
s.author = { "Marin Todorov" => "[email protected]" }
s.source = { :git => "https://github.com/icanzilb/SwiftSpinner.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/icanzilb'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'Sources/SwiftSpinner'
s.frameworks = 'UIKit'
end