From 13383ba3801d72fd4d9346704cb3bea9c7643ce1 Mon Sep 17 00:00:00 2001 From: Jake Marsh Date: Sat, 2 Feb 2013 17:03:35 -0600 Subject: [PATCH] Adding JMStatefulTableViewController v0.1.2 --- .../JMStatefulTableViewController.podspec | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 JMStatefulTableViewController/0.1.2/JMStatefulTableViewController.podspec diff --git a/JMStatefulTableViewController/0.1.2/JMStatefulTableViewController.podspec b/JMStatefulTableViewController/0.1.2/JMStatefulTableViewController.podspec new file mode 100644 index 00000000..56237430 --- /dev/null +++ b/JMStatefulTableViewController/0.1.2/JMStatefulTableViewController.podspec @@ -0,0 +1,23 @@ +Pod::Spec.new do |s| + s.name = 'JMStatefulTableViewController' + s.version = '0.1.2' + + 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.2' } + + s.platform = :ios + s.requires_arc = true + + s.license = { + :type => 'MIT', + :file => 'MIT-LICENSE' + } + + s.source_files = ['JMStatefulTableViewController/*.*'] + + s.dependency 'SVPullToRefresh', '~> 0.4.1' +end \ No newline at end of file