-
Notifications
You must be signed in to change notification settings - Fork 66
/
MessageThrottle.podspec
25 lines (21 loc) · 1.08 KB
/
MessageThrottle.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
Pod::Spec.new do |s|
s.name = "MessageThrottle"
s.version = "1.4.3"
s.summary = "A lightweight Objective-C message throttle and debounce library."
s.description = <<-DESC
MessageThrottle is a lightweight, simple library for controlling frequency of forwarding Objective-C messages. You can choose to control existing methods per instance or per class. It's an implementation of function throttle/debounce developed with Objective-C runtime.
DESC
s.homepage = "https://github.com/yulingtianxia/MessageThrottle"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "YangXiaoyu" => "[email protected]" }
s.social_media_url = 'https://twitter.com/yulingtianxia'
s.source = { :git => "https://github.com/yulingtianxia/MessageThrottle.git", :tag => s.version.to_s }
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.8"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.requires_arc = true
s.source_files = "MessageThrottle/*.{h,m}"
s.public_header_files = "MessageThrottle/MessageThrottle.h"
s.frameworks = 'Foundation'
end