From 117b124fa801d40fa88f57d8a769701d499ddb07 Mon Sep 17 00:00:00 2001 From: Ilter Cengiz Date: Sun, 20 Oct 2013 02:09:57 +0300 Subject: [PATCH] Podspec update --- ICViewPager.podspec | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/ICViewPager.podspec b/ICViewPager.podspec index 324b636..4b1093b 100644 --- a/ICViewPager.podspec +++ b/ICViewPager.podspec @@ -1,28 +1,30 @@ Pod::Spec.new do |s| s.name = "ICViewPager" - s.version = "1.2.1" - s.summary = "A tab view that mimics ActionBarSherlock's FragmentsTabsPager and Google Play app's tab management." + s.version = "1.3" + s.summary = "You can create sliding tabs with ViewPager." s.description = <<-DESC - A tab view that mimics ActionBarSherlock's FragmentsTabsPager and Google Play app's tab management. + Slide through the contents or select from tabs or slide through tabs and select! - ## Usage + ## Installation + Just copy ViewPagerController.m and ViewPagerController.h files to your project. + Or you can use CocoaPods (as this is the recommended way). + `pod 'ICViewPager'` - Just copy ViewPagerController.m and ViewPagerController.h files to your project. - You can subclass it and implement dataSource and delegate methods in the subclass or just assign it to a view controller as file's owner and provide external dataSource and delegate objects. + ## Usage + Subclass ViewPagerController (as it's a `UIViewController` subclass) and implement dataSource and delegate methods in the subclass. - ## Requirements + ## Requirements + ViewPager supports minimum iOS 6 and uses ARC. + Supports both iPhone and iPad. - ICViewController supports minimum iOS 6.1 and uses ARC. - Supports both iPhone and iPad + ## Contact + [Ilter Cengiz](mailto:me@iltercengiz.info) + [@monsieurje](https://twitter.com/monsieurje) - ## Contact - [Ilter Cengiz](mailto:me@iltercengiz.info) - [@monsieurje](https://twitter.com/monsieurje) - - ## Licence - ICViewPager is MIT licensed. See the LICENSE file for more info. + ## Licence + ICViewPager is MIT licensed. See the LICENSE file for more info. DESC s.homepage = "https://github.com/monsieurje/ICViewPager" @@ -30,8 +32,8 @@ Pod::Spec.new do |s| s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { "Ilter Cengiz" => "me@iltercengiz.info" } s.platform = :ios, '6.1' - s.source = { :git => "https://github.com/monsieurje/ICViewPager.git", :tag => "1.2.1" } - s.source_files = 'ICViewPager/ICViewPager/*.{h,m}' + s.source = { :git => "https://github.com/monsieurje/ICViewPager.git", :tag => "1.3" } + s.source_files = 'ICViewPager/ICViewPager/*.{h,m}' s.requires_arc = true end