-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScrollCoordinator.podspec
21 lines (15 loc) · 1.05 KB
/
ScrollCoordinator.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'ScrollCoordinator'
s.version = '1.0.0'
s.summary = 'ScrollCoordinator allows you to attach gestures to scrollviews and perform behaviours on these gestures'
s.description = <<-DESC
ScrollCoordinator is an innovative way to make views behave the way you want them to by listening to gesture and scroll events. This pod comes with the Behaviours to hide the navigation, bottom and tab bar & AnchorBehaviour which makes your outer scrollview scroll upto a certain anchor point when inner nested scrollviews are scrolled
DESC
s.homepage = 'https://github.com/shubhankaryash/ScrollCoordinator'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'shubhankaryash' => '[email protected]' }
s.source = { :git => 'https://github.com/shubhankaryash/ScrollCoordinator.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'ScrollCoordinator/Sources/**/*'
s.swift_version = "4.2"
end