Files
NTDCoreDataTableViewController/NTDCoreDataTableViewController.podspec
NicholasTD07 873882cd68 Release 0.1.0.
2014-03-10 21:42:08 +08:00

18 lines
1.2 KiB
Ruby
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Pod::Spec.new do |s|
s.name = "NTDCoreDataTableViewController"
s.version = "0.1.0"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = "Eliminates boilerplate code involved with a CoreData based UITableViewController which uses a NSFetchedResultsController as its data source."
s.homepage = "https://github.com/NicholasTD07/NTDCoreDataTableViewController"
s.author = { "NicholasTD07" => "Nicholas.TD07@gmail.com" }
s.source = { :git => "https://github.com/NicholasTD07/NTDCoreDataTableViewController.git", :tag => "0.1.0" }
s.description = <<-DESC
I was going to code for my second CoreData based Table View Controller. Then it occurred to me that 80% (or even more) of the functionality of two CoreData based Table View Controller are exactly the SAME. So I decided to refactor all those common stuff in a CDTVC into a super class. With my Unit Test covering me and Xcodes Refactor, it all went pretty well.
Volia! This is it.
DESC
s.source_files = 'NTDCoreDataTableViewController/*.{h,m}'
s.frameworks = 'CoreData', 'UIKit'
s.requires_arc = true
s.platform = :ios
end