-
Notifications
You must be signed in to change notification settings - Fork 252
/
MXSegmentedPager.podspec
26 lines (22 loc) · 1.23 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
Pod::Spec.new do |s|
s.name = "MXSegmentedPager"
s.version = "4.0.0"
s.summary = "Segmented pager view with Parallax header."
s.description = <<-DESC
MXSegmentedPager combines [MXPagerView](https://github.com/maxep/MXPagerView) with [MXSegmentedControl](https://github.com/maxep/MXSegmentedControl) 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, '10.0'
s.swift_version = '4.2'
s.requires_arc = true
s.source_files = 'MXSegmentedPager/*.{m,h}'
s.public_header_files = ["MXSegmentedPager/*.h"]
s.dependency 'MXSegmentedControl', '~> 1.1'
s.dependency 'MXPagerView', '~> 0.2'
s.dependency 'MXParallaxHeader', '~> 1.0'
end