-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUIForceButton.podspec
More file actions
27 lines (17 loc) · 885 Bytes
/
UIForceButton.podspec
File metadata and controls
27 lines (17 loc) · 885 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
27
Pod::Spec.new do |s|
s.name = "UIForceButton"
s.version = "1.0.1"
s.summary = "The UIButton that will trigger UIControlEventTouchForce event when force touched."
s.description = <<-DESC
The UIButton that will trigger UIControlEventTouchForce event when force touched. Just replace the UIButton class name and use its IBAction.
DESC
s.homepage = "https://github.com/kidyoungx/UIForceButton"
s.license = "MPL-2.0"
s.author = { "Kid Young" => "kidyoungx@gmail.com" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/kidyoungx/UIForceButton.git", :tag => "#{s.version}" }
s.source_files = "UIForceButton", "UIForceButton/**/*.{h,m}"
s.exclude_files = "SampleUIForceButton"
s.public_header_files = "UIForceButton/**/*.h"
s.requires_arc = true
end