Release 0.1.0.

This commit is contained in:
NicholasTD07
2014-03-10 21:42:08 +08:00
parent e80ee41bac
commit 873882cd68

View File

@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "NTDCoreDataTableViewController"
s.version = "0.0.3"
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.0.3" }
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.