Skip to content

Commit

Permalink
fix imports, commit Podfile.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
DenTelezhkin committed Jun 6, 2015
1 parent d78f5ce commit 597c3a9
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Cocoa Pods
EasyMappingExample/Pods/
EasyMappingExample/Podfile.lock

# Xcode
.DS_Store
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

#import "EKCoreDataManager.h"

#if TARGET_OS_IPHONE
#elif TARGET_OS_MAC
@import Cocoa;
#endif
@implementation EKCoreDataManager

@synthesize managedObjectContext=_managedObjectContext;
Expand Down Expand Up @@ -110,8 +114,6 @@ + (NSURL *)applicationDocumentsDirectory

#elif TARGET_OS_MAC

@import Cocoa;

+(void)cleanupDatabase
{
NSURL *url = [[self applicationFilesDirectory] URLByAppendingPathComponent:@"benchmark.sqlite"];
Expand Down
27 changes: 27 additions & 0 deletions EasyMappingExample/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
PODS:
- CMFactory (1.4.1):
- Mantle (= 1.0)
- Kiwi (2.3.1)
- libextobjc/EXTKeyPathCoding (0.4.1):
- libextobjc/RuntimeExtensions
- libextobjc/EXTScope (0.4.1):
- libextobjc/RuntimeExtensions
- libextobjc/RuntimeExtensions (0.4.1)
- MagicalRecord (2.3.0)
- Mantle (1.0):
- libextobjc/EXTKeyPathCoding
- libextobjc/EXTScope

DEPENDENCIES:
- CMFactory (~> 1.4)
- Kiwi (= 2.3.1)
- MagicalRecord

SPEC CHECKSUMS:
CMFactory: 535c1473e91f4d0d13cb290de2144faa75a882a3
Kiwi: f038a6c61f7a9e4d7766bff5717aa3b3fdb75f55
libextobjc: a650fc1bf489a3d3a9bc2e621efa3e1006fc5471
MagicalRecord: 89eb7d7ead39fb37f01c3d010665ee94d17f8dba
Mantle: 3fbcca07bdfe76c54a08c241689a60d34d08e783

COCOAPODS: 0.37.1
4 changes: 4 additions & 0 deletions EasyMappingExample/Tests/Specs/EKManagedObjectMapperSpec.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
#import <CoreData/CoreData.h>
#import <MagicalRecord/MagicalRecord.h>
#import "EKManagedObjectMapper.h"
#import "MagicalRecord+Setup.h"
#import <MagicalRecord/NSManagedObjectContext+MagicalSaves.h>
#import <MagicalRecord/NSManagedObject+MagicalFinders.h>
#import <MagicalRecord/NSManagedObject+MagicalRecord.h>

SPEC_BEGIN(EKManagedObjectMapperSpec)

Expand Down
2 changes: 2 additions & 0 deletions EasyMappingExample/Tests/Specs/EKSerializerSpec.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
#import <MagicalRecord/MagicalRecord.h>
#import "ManagedMappingProvider.h"
#import "ManagedPerson.h"
#import <MagicalRecord/MagicalRecord+Setup.h>
#import <MagicalRecord/NSManagedObject+MagicalRecord.h>

SPEC_BEGIN(EKSerializerSpec)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <Kiwi/Kiwi.h>
#import <CoreData/CoreData.h>
#import <MagicalRecord/MagicalRecord.h>
#import <MagicalRecord/NSManagedObjectContext+MagicalRecord.h>
#endif

0 comments on commit 597c3a9

Please sign in to comment.