Skip to content

Commit

Permalink
Merge pull request #10 from vokal-isaac/master
Browse files Browse the repository at this point in the history
Using vok_entityName in VOKCollectionDataSource
  • Loading branch information
Sean Wolter committed Aug 14, 2014
2 parents f4c494f + f21e981 commit 41ff55e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Optional Data Sources/VOKFetchedResultsDataSource.m
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ - (NSFetchedResultsController *)fetchedResultsController
- (void)initFetchedResultsController
{
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:NSStringFromClass(_managedObjectClass)
NSEntityDescription *entity = [NSEntityDescription entityForName:[_managedObjectClass vok_entityName]
inManagedObjectContext:_managedObjectContext];
[fetchRequest setEntity:entity];

Expand Down
4 changes: 2 additions & 2 deletions VOKCoreDataManager.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Pod::Spec.new do |s|
s.name = "VOKCoreDataManager"
s.version = "1.0.2"
s.version = "1.0.3"
s.platform = :ios
s.ios.deployment_target = "6.0"
s.summary = "VOKAL's Core Data Manager"
s.homepage = "https://github.com/vokalinteractive/VOKCoreDataManager"
s.license = { :type => "MIT", :file => "LICENSE.txt"}
s.author = { "VOKAL Interactive" => "[email protected]" }
s.source = { :git => "https://github.com/vokalinteractive/VOKCoreDataManager.git", :tag => "1.0.2" }
s.source = { :git => "https://github.com/vokalinteractive/VOKCoreDataManager.git", :tag => "1.0.3" }
s.source_files = "*.{h,m}", "Optional Data Sources/*.{h,m}", "Internal/*.{h,m}"
s.framework = "CoreData"
s.requires_arc = true
Expand Down

0 comments on commit 41ff55e

Please sign in to comment.