-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathBFDragGestureRecognizer.podspec
More file actions
24 lines (21 loc) · 975 Bytes
/
BFDragGestureRecognizer.podspec
File metadata and controls
24 lines (21 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'BFDragGestureRecognizer'
s.version = '1.1.0'
s.platform = :ios
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.homepage = 'https://github.com/DrummerB/BFDragGestureRecognizer'
s.authors = { 'Balazs Faludi' => 'balazsfaludi@gmail.com' }
s.screenshot = 'http://i.imgur.com/3gmX3VG.png'
s.summary = 'A UIGestureRecognizer subclass that can be used to drag views inside a scroll view with automatic scrolling at the edges of the scroll view.'
s.description = <<-DESC
A UIGestureRecognizer subclass that can be used to drag
views inside a scroll view with automatic scrolling at
the edges of the scroll view.
DESC
s.source = {
:git => "https://github.com/DrummerB/BFDragGestureRecognizer.git",
:tag => s.version.to_s
}
s.source_files = 'BFDragGestureRecognizer/*.{h,m}'
s.requires_arc = true
end