forked from maxep/MXSegmentedPager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMXSegmentedPager.podspec
34 lines (29 loc) · 1.51 KB
/
MXSegmentedPager.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
#
# Be sure to run `pod lib lint MXSegmentedPager.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "MXSegmentedPager"
s.version = "3.0.4"
s.summary = "Segmented pager view with Parallax header."
s.description = <<-DESC
MXSegmentedPager combines [MXPagerView](https://github.com/maxep/MXPagerView) with [HMSegmentedControl](https://github.com/HeshamMegid/HMSegmentedControl) to control the page selection.
The integration of [MXParallaxHeader](https://github.com/maxep/MXParallaxHeader) allows you to add an parallax header on top while keeping a reliable scrolling effect.
DESC
s.homepage = "https://github.com/maxep/MXSegmentedPager"
s.license = 'MIT'
s.author = { "Maxime Epain" => "[email protected]" }
s.source = { :git => "https://github.com/maxep/MXSegmentedPager.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/MaximeEpain'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'MXSegmentedPager/*.{m,h}'
s.public_header_files = ["MXSegmentedPager/*.h"]
s.dependency 'HMSegmentedControl', '~> 1.5.2'
s.dependency 'MXPagerView', '~> 0.1.2'
s.dependency 'MXParallaxHeader', '~> 0.4.3'
end