-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathAtkDragAndDrop.podspec
24 lines (23 loc) · 1.12 KB
/
AtkDragAndDrop.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
Pod::Spec.new do |s|
s.name = "AtkDragAndDrop"
s.version = "0.2.2"
s.summary = "A drag and drop toolkit for iOS."
s.description = <<-DESC
iOS drag and drop toolkit with support for:
* Drag Source and Drop Zones by either subclassing or wrapping UIView and subclasses
* Drag shadow generation for UIView
* UIScrollView drag target auto scrolling
* AtkDragAndDropManager uses the delegate pattern to allow a wide varienty of drag and drop scenarios
* Accepts any continuous UIGestureRecognizer class for drag recognition
* Works with the UIPasteboard as a means of data passing for the drag and drop operation.
* Complete set of lifecycle handlers.
DESC
s.homepage = "https://github.com/ptoinson/asymptotik-drag-and-drop"
s.license = 'MIT'
s.author = { "Rick Boykin" => "info@asymptotik.com" }
s.source = { :git => "https://github.com/ptoinson/asymptotik-drag-and-drop.git", :tag => "v#{s.version.to_s}" }
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = 'Classes'
s.frameworks = 'UIKit'
end