forked from akiroom/AXStretchableHeaderTabViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AXStretchableHeaderTabViewController.podspec
27 lines (24 loc) · 1.34 KB
/
AXStretchableHeaderTabViewController.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
Pod::Spec.new do |s|
s.name = "AXStretchableHeaderTabViewController"
s.version = "0.2.0"
s.summary = "Stretchable header view + Horizontal swipable tab view."
s.description = <<-DESC
Stretchable header view + Horizontal swipable tab view
- Stretchable header view.
- Horizontal swipable tab view.
- No header tab view.
DESC
s.homepage = "https://github.com/akiroom/AXStretchableHeaderTabViewController"
s.screenshots = "https://raw.githubusercontent.com/akiroom/AXStretchableHeaderTabViewController/master/Screenshots/screenshot-stretchable.gif", "https://raw.githubusercontent.com/akiroom/AXStretchableHeaderTabViewController/master/Screenshots/screenshot-swipable.gif"
s.license = 'MIT'
s.author = { "Hiroki Akiyama" => "[email protected]" }
s.source = { :git => "https://github.com/akiroom/AXStretchableHeaderTabViewController.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/akiroom'
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'Classes/**/*.{h,m}'
s.resources = 'Classes/**/*.xib'
s.ios.exclude_files = 'Classes/osx'
s.frameworks = 'UIKit', 'CoreGraphics'
end