-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathMXPagerView.podspec
30 lines (24 loc) · 1.45 KB
/
MXPagerView.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
Pod::Spec.new do |s|
s.name = "MXPagerView"
s.version = "1.0.0"
s.summary = "Pager view with reusable page and storyboard support."
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
MXPagerView is a pager view with the ability to reuse pages like you would do with a table view and cells.
The MXPagerView also loads pages lazily, depending on the transition style, it will load the current page and neighbors and unload others pages.
MXPagerViewController allows you to load pages from storyboard using the MXPageSegue.
DESC
s.homepage = "https://github.com/maxep/MXPagerView"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Maxime Epain" => "maxime.epain@gmail.com" }
s.source = { :git => "https://github.com/maxep/MXPagerView.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 = 'MXPagerView/*.{m,h}'
end