forked from yangmeyer/CPAccelerationTimer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCPAccelerationTimer.podspec
More file actions
17 lines (15 loc) · 855 Bytes
/
CPAccelerationTimer.podspec
File metadata and controls
17 lines (15 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'CPAccelerationTimer'
s.version = '0.0.3'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Timer with Bézier curve acceleration'
s.homepage = 'https://github.com/yangmeyer/CPAccelerationTimer'
s.author = { 'Yang Meyer' => 'https://github.com/yangmeyer' }
s.description = 'Calls a block a given number of times, spread out over a given duration, with the between-calls delays determined by a given Bézier curve. Think of it as an NSTimer with custom acceleration.'
s.source = { :git => 'https://github.com/yangmeyer/CPAccelerationTimer.git', :tag => s.version.to_s }
s.prefix_header_file = 'Component/CPAccelerationTimer-Prefix.pch'
s.source_files = 'Component/*.{h,c,m}'
s.requires_arc = true
s.ios.deployment_target = '4.3'
s.watchos.deployment_target = '2.0'
end