Skip to content
This repository was archived by the owner on Apr 24, 2022. It is now read-only.

Commit 117b124

Browse files
author
Ilter Cengiz
committed
Podspec update
1 parent dba9224 commit 117b124

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed

ICViewPager.podspec

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,39 @@
11
Pod::Spec.new do |s|
22

33
s.name = "ICViewPager"
4-
s.version = "1.2.1"
5-
s.summary = "A tab view that mimics ActionBarSherlock's FragmentsTabsPager and Google Play app's tab management."
4+
s.version = "1.3"
5+
s.summary = "You can create sliding tabs with ViewPager."
66

77
s.description = <<-DESC
8-
A tab view that mimics ActionBarSherlock's FragmentsTabsPager and Google Play app's tab management.
8+
Slide through the contents or select from tabs or slide through tabs and select!
99
10-
## Usage
10+
## Installation
11+
Just copy ViewPagerController.m and ViewPagerController.h files to your project.
12+
Or you can use CocoaPods (as this is the recommended way).
13+
`pod 'ICViewPager'`
1114
12-
Just copy ViewPagerController.m and ViewPagerController.h files to your project.
13-
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.
15+
## Usage
16+
Subclass ViewPagerController (as it's a `UIViewController` subclass) and implement dataSource and delegate methods in the subclass.
1417
15-
## Requirements
18+
## Requirements
19+
ViewPager supports minimum iOS 6 and uses ARC.
20+
Supports both iPhone and iPad.
1621
17-
ICViewController supports minimum iOS 6.1 and uses ARC.
18-
Supports both iPhone and iPad
22+
## Contact
23+
[Ilter Cengiz](mailto:me@iltercengiz.info)
24+
[@monsieurje](https://twitter.com/monsieurje)
1925
20-
## Contact
21-
[Ilter Cengiz](mailto:me@iltercengiz.info)
22-
[@monsieurje](https://twitter.com/monsieurje)
23-
24-
## Licence
25-
ICViewPager is MIT licensed. See the LICENSE file for more info.
26+
## Licence
27+
ICViewPager is MIT licensed. See the LICENSE file for more info.
2628
DESC
2729

2830
s.homepage = "https://github.com/monsieurje/ICViewPager"
2931
s.screenshots = "https://dl.dropboxusercontent.com/u/17948706/Resources/SS.png"
3032
s.license = { :type => 'MIT', :file => 'LICENSE' }
3133
s.author = { "Ilter Cengiz" => "me@iltercengiz.info" }
3234
s.platform = :ios, '6.1'
33-
s.source = { :git => "https://github.com/monsieurje/ICViewPager.git", :tag => "1.2.1" }
34-
s.source_files = 'ICViewPager/ICViewPager/*.{h,m}'
35+
s.source = { :git => "https://github.com/monsieurje/ICViewPager.git", :tag => "1.3" }
36+
s.source_files = 'ICViewPager/ICViewPager/*.{h,m}'
3537
s.requires_arc = true
3638

3739
end

0 commit comments

Comments
 (0)