forked from icanzilb/SwiftSpinner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SwiftSpinner.podspec
34 lines (28 loc) · 1.48 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
24
25
26
27
28
29
30
31
32
33
34
#
# Be sure to run `pod lib lint SwiftSpinner.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "SwiftSpinner"
s.version = "1.0.2"
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 iOS 8 design very well. It uses dynamic blur and translucency to overlay the current screen contents and display an activity indicator with text (or the so called “spinner”).
I developed it for my Swift app called **Doodle Doodle** (http://doodledoodle.io) and wanted to share it with everyone.
DESC
s.homepage = "https://github.com/icanzilb/SwiftSpinner"
s.screenshots = "https://raw.githubusercontent.com/icanzilb/SwiftSpinner/master/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 = '8.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'SwiftSpinner'
s.frameworks = 'UIKit'
end