-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathElasticTransition.podspec
27 lines (20 loc) · 1.08 KB
/
ElasticTransition.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
Pod::Spec.new do |s|
s.name = "ElasticTransition"
s.version = "3.1.1"
s.summary = "A UIKit custom modal transition that simulates an elastic drag. Written in Swift."
s.description = <<-DESC
A UIKit custom modal transition that simulates an elastic drag. Written in Swift.
Best for side menu and navigation transition.
This is inspired by DGElasticPullToRefresh from gontovnik.
DESC
s.homepage = "https://github.com/lkzhao/ElasticTransition"
s.screenshots = "https://github.com/lkzhao/ElasticTransition/blob/master/imgs/demo.gif?raw=true"
s.license = 'MIT'
s.author = { "Luke" => "[email protected]" }
s.source = { :git => "https://github.com/lkzhao/ElasticTransition.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.ios.frameworks = 'UIKit', 'Foundation'
s.requires_arc = true
s.source_files = 'ElasticTransition/*.swift'
s.dependency 'MotionAnimation', '~> 0.1.2'
end