forked from iltercengiz/ICViewPager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ICViewPager.podspec
39 lines (30 loc) · 1.49 KB
/
ICViewPager.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "ICViewPager"
s.version = "1.5.1"
s.summary = "You can create sliding tabs with ViewPager."
s.description = <<-DESC
Slide through the contents or select from tabs or slide through tabs and select!
## 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'`
## Usage
Subclass ViewPagerController (as it's a `UIViewController` subclass) and implement dataSource and delegate methods in the subclass.
## Requirements
ViewPager supports minimum iOS 6 and uses ARC.
Supports both iPhone and iPad.
## Contact
[Ilter Cengiz](mailto:[email protected])
[@monsieurje](https://twitter.com/monsieurje)
## Licence
ICViewPager is MIT licensed. See the LICENSE file for more info.
DESC
s.homepage = "https://github.com/monsieurje/ICViewPager"
s.screenshots = "https://raw.githubusercontent.com/iltercengiz/ICViewPager/master/Resources/Screenshot.jpg"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Ilter Cengiz" => "[email protected]" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/monsieurje/ICViewPager.git", :tag => "1.5.1" }
s.source_files = 'ICViewPager/ICViewPager/*.{h,m}'
s.requires_arc = true
end