forked from nicklockwood/SwipeView
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SwipeView.podspec
13 lines (13 loc) · 888 Bytes
/
SwipeView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
Pod::Spec.new do |s|
s.name = "SwipeView"
s.version = "1.3.1"
s.summary = "Horizontal, paged scrolling views based on UIScrollView, with convenient functionality in UITableView-style."
s.description = "SwipeView is a class designed to simplify the implementation of horizontal, paged scrolling views on iOS. It is based on a UIScrollView, but adds convenient functionality such as a UITableView-style dataSource/delegate interface and efficient view loading, unloading and recycling."
s.homepage = "https://github.com/nicklockwood/SwipeView"
s.license = { :type => 'zlib', :file => 'LICENCE.md' }
s.author = { "Nick Lockwood" => "[email protected]" }
s.source = { :git => "https://github.com/nicklockwood/SwipeView.git", :tag => "1.3.1" }
s.source_files = 'SwipeView'
s.requires_arc = true
s.platform = :ios
end