Skip to content

Commit

Permalink
Merge pull request #7 from johankool/master
Browse files Browse the repository at this point in the history
Code cleanup, bug fixes
  • Loading branch information
ijansch committed Apr 26, 2014
2 parents 63830a0 + 4775c7e commit ceeea94
Show file tree
Hide file tree
Showing 5 changed files with 276 additions and 140 deletions.
5 changes: 3 additions & 2 deletions EFDataMappingKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Pod::Spec.new do |s|
s.name = "EFDataMappingKit"
s.version = "0.1.1"
s.summary = "EFDataMappingKit maps data such as those coming from JSON onto an instance using mappings. The mappings are also used to simplify implementing the NSCoding protocol for a class, and to create a dictionary representation of an instance."
s.version = "0.1.2"
s.summary = "EFDataMappingKit maps data such as those coming from JSON onto an instance using mappings"
s.description = "EFDataMappingKit maps data such as those coming from JSON onto an instance using mappings. The mappings are also used to simplify implementing the NSCoding protocol for a class, and to create a dictionary representation of an instance."
s.homepage = "https://github.com/Egeniq/EFDataMappingKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Johan Kool" => "[email protected]" }
Expand Down
4 changes: 2 additions & 2 deletions EFDataMappingKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@
C70D5E2E18DE0AE900E7B749 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/EFMapping.app/EFMapping";
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/EFDataMappingKit.app/EFDataMappingKit";
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
Expand All @@ -460,7 +460,7 @@
C70D5E2F18DE0AE900E7B749 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/EFMapping.app/EFMapping";
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/EFDataMappingKit.app/EFDataMappingKit";
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
Expand Down
3 changes: 3 additions & 0 deletions EFMapping/EFMapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ typedef id (^EFMappingInitializerBlock)(Class aClass, NSDictionary *values);
*/
- (void)registerMappings:(NSArray *)mappings forClass:(Class)aClass;

// TODO: Docs!
- (void)registerMapper:(EFMapper *)mapper forClass:(Class)aClass;

#pragma mark - Initializers

/**
Expand Down
Loading

0 comments on commit ceeea94

Please sign in to comment.