-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathANLongTapButton.podspec
More file actions
26 lines (23 loc) · 916 Bytes
/
ANLongTapButton.podspec
File metadata and controls
26 lines (23 loc) · 916 Bytes
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 ANLongTapButton.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "ANLongTapButton"
s.version = "5.1.0"
s.summary = "Long tap button with animated progress bar."
s.homepage = "https://github.com/antrix1989/ANLongTapButton"
s.license = 'MIT'
s.author = { "Sergey Demchenko" => "antrix1989@gmail.com" }
s.source = { :git => "https://github.com/antrix1989/ANLongTapButton.git", :tag => s.version.to_s }
s.platform = :ios, '10.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'ANLongTapButton' => ['Pod/Assets/*.png']
}
s.frameworks = 'UIKit'
end