forked from zhxnlai/ZLSwipeableView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZLSwipeableView.podspec
executable file
·18 lines (18 loc) · 1.02 KB
/
ZLSwipeableView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "ZLSwipeableView"
s.version = "0.0.8"
s.summary = "A simple view for building card like interface like Tinder and Potluck."
s.description = <<-DESC
ZLSwipeableView is a simple view for building card like interface like Tinder and Potluck. It uses dataSource pattern and is highly customizable.
DESC
s.homepage = "https://github.com/zhxnlai/ZLSwipeableView"
s.screenshots = "https://github.com/zhxnlai/ZLSwipeableView/raw/master/Previews/swipe.gif", "https://github.com/zhxnlai/ZLSwipeableView/raw/master/Previews/swipeLeft.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Zhixuan Lai" => "[email protected]" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/zhxnlai/ZLSwipeableView.git", :tag => "0.0.8" }
s.source_files = "ZLSwipeableView", "ZLSwipeableView/**/*.{h,m}"
# s.exclude_files = "Classes/Exclude"
s.framework = "UIKit"
s.requires_arc = true
end