- Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathJMStaticContentTableViewController.podspec
More file actions
Latest commit
21 lines (16 loc) · 936 Bytes
/
Copy pathJMStaticContentTableViewController.podspec
File metadata and controls
21 lines (16 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.newdo |s|
s.name='JMStaticContentTableViewController'
s.version='0.3.1'
s.summary='Cleanly implement a table view controller much like those in Settings.app, using a simple, convienent block-based syntax.'
s.description='A subclass-able way to cleanly and neatly implement a table view controller much like those in Settings.app, with nice-looking fields to collect or display information, all using a simple and convienent block-based syntax'
s.homepage='https://github.com/jakemarsh/JMStaticContentTableViewController'
s.authors={'Jake Marsh'=>'jake@deallocatedobjects.com'}
s.source={:git=>'https://github.com/jakemarsh/JMStaticContentTableViewController.git',:tag=>s.version.to_s}
s.platform=:ios
s.requires_arc=true
s.license={
:type=>'MIT',
:file=>'MIT-LICENSE'
}
s.source_files=['JMStaticContentTableViewController/*.*']
end