Added 1.2.9 podspec for SwipeView

This commit is contained in:
Nissan Tsafrir
2013-03-06 16:03:02 +02:00
parent 5cedf71367
commit 6392ae2d4c
+13
View File
@@ -0,0 +1,13 @@
Pod::Spec.new do |s|
s.name = "SwipeView"
s.version = "1.2.9"
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/delegat interface for loading views dynamically, and efficient view loading, unloading and recycling."
s.homepage = "https://github.com/nicklockwood/SwipeView"
s.license = { :type => 'MIT', :file => 'LICENCE.md' }
s.author = { "Nick Lockwood" => "support@charcoaldesign.co.uk" }
s.source = { :git => "https://github.com/nicklockwood/SwipeView.git", :tag => "1.2.9" }
s.source_files = 'SwipeView'
s.requires_arc = true
s.platform = :ios
end