-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpinnerButton.podspec
26 lines (25 loc) · 1.19 KB
/
SpinnerButton.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
#
# Be sure to run `pod lib lint SpinnerButton.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SpinnerButton'
s.version = '0.1.4'
s.summary = 'UIKit button with loading state'
s.description = '<<-DESC
Modified UIButton with loading state created as a stroke spinned around the button.
The component has two state: default state without spinning stroke and loading state with spinning stroke.
DESC'
s.homepage = 'https://github.com/maxkalik/SpinnerButton'
s.screenshots = 'https://www.maxkalik.com/images/spinner-button.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'maxkalik' => '[email protected]' }
s.source = { :git => 'https://github.com/maxkalik/SpinnerButton.git', :tag => s.version.to_s }
s.social_media_url = 'http://maxkalik.com'
s.ios.deployment_target = '9.0'
s.source_files = 'SpinnerButton/Classes/**/*'
s.frameworks = 'UIKit'
end