forked from matthewfx/MJNIndexView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMJNIndexView.podspec
22 lines (20 loc) · 1.37 KB
/
MJNIndexView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'MJNIndexView'
s.version = '0.0.1'
s.summary = 'MJNIndexView'
s.description = <<-DESC
MJNIndexView is a highly customizable UIControl which displays an alternative index for UITableView.
I wanted to mimic the index designed by Jeremy Olson's Tapity for their Languages app.
I think their idea of implementing index is brilliant and it is one of the best examples of great UX.
I hope more apps are going to use similar indices instead of the generic ones.
DESC
s.homepage = 'https://github.com/matthewfx/MJNIndexView'
s.screenshots = 'https://github.com/matthewfx/MJNIndexView/blob/master/MJNIndexView01.png', 'https://github.com/matthewfx/MJNIndexView/blob/master/MJNIndexView02.png', 'https://github.com/matthewfx/MJNIndexView/blob/master/MJNIndexView03.png', 'https://github.com/matthewfx/MJNIndexView/blob/master/MJNIndexView04.png'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'Mateusz Nuckowski' => '[email protected]' }
s.platform = :ios, '5.0'
s.source = { :git => 'https://github.com/fchiron/MJNIndexView.git', :commit => 'e24724270dcd42f76e21d6f07dfd5426ca6dd4f9' }
s.source_files = 'MJNIndexView.{h,m}'
s.frameworks = 'QuartzCore', 'CoreGraphics'
s.requires_arc = true
end