- Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathJMStatefulTableViewController.podspec
More file actions
Latest commit
23 lines (17 loc) · 1 KB
/
Copy pathJMStatefulTableViewController.podspec
File metadata and controls
23 lines (17 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.newdo |s|
s.name='JMStatefulTableViewController'
s.version='0.1.1'
s.summary='A subclassable table view controller with empty, loading and error states, also supports infinte-scrolling and pull to refresh.'
s.description='A subclass-able way to cleanly and neatly implement a table view controller that has empty, loading and error states. Supports "paging" and pull to to refresh thanks to SVPullToRefresh.'
s.homepage='https://github.com/jakemarsh/JMStatefulTableViewController'
s.authors={'Jake Marsh'=>'jake@deallocatedobjects.com'}
s.source={:git=>'https://github.com/jakemarsh/JMStatefulTableViewController.git',:tag=>'0.1.1'}
s.platform=:ios
s.requires_arc=true
s.license={
:type=>'MIT',
:file=>'MIT-LICENSE'
}
s.source_files=['JMStatefulTableViewController/*.*']
s.dependency'SVPullToRefresh',:git=>'git://github.com/samvermette/SVPullToRefresh.git',:commit=>'1362d86a52a53baa96cbd4e15ad46d50418fe4fa'
end