-
Notifications
You must be signed in to change notification settings - Fork 0
/
Throtlle.podspec
28 lines (27 loc) · 1.25 KB
/
Throtlle.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
#
# Be sure to run `pod spec lint throttle.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "Throtlle"
spec.version = "1.0.0"
spec.summary = "The throttle"
spec.description = <<-DESC
The throttle function prevents the execution of a specified process for a designated time interval after the initial execution.
DESC
spec.homepage = "https://github.com/keisukeYamagishi/Throttle"
spec.license = "MIT"
spec.author = { "keisukeYamagishi" => "[email protected]" }
spec.source = { :git => "https://github.com/keisukeYamagishi/Throttle.git", :tag => "#{spec.version}" }
spec.ios.deployment_target = "12.0"
spec.tvos.deployment_target = "12.0"
spec.osx.deployment_target = "10.14"
spec.watchos.deployment_target = "5.0"
spec.swift_version = '5.0'
spec.source_files = "Source", "Sources/Throttle/**/*.swift"
spec.static_framework = true
spec.framework = "Foundation"
end