forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CocoaPods#373 from jakemarsh/master
Adding v0.1.1 of JMStaticContentTableViewController
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
JMStaticContentTableViewController/0.1.1/JMStaticContentTableViewController.podspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'JMStaticContentTableViewController' | ||
s.version = '0.1.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' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/jakemarsh/JMStaticContentTableViewController.git', :tag => '0.1.1' } | ||
|
||
s.platform = :ios | ||
s.requires_arc = true | ||
|
||
s.license = { | ||
:type => 'MIT', | ||
:file => 'MIT-LICENSE' | ||
} | ||
|
||
s.source_files = ['JMStaticContentTableViewController/*.*'] | ||
end |