Skip to content

Commit ac1c32f

Browse files
author
Blake Watters
committed
Merge branch 'bugfix/nsuinteger-format-arg'
2 parents d0043f7 + f122b53 commit ac1c32f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Code/RKValueTransformers.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ - (BOOL)transformValue:(id)inputValue toValue:(__autoreleasing id *)outputValue
660660
if (success) return YES;
661661
else [errors addObject:underlyingError];
662662
}
663-
NSDictionary *userInfo = @{ NSLocalizedDescriptionKey: [NSString stringWithFormat:@"Failed transformation of value '%@' to %@: none of the %d value transformers consulted were successful.", inputValue, outputValueClass, [matchingTransformers count]], RKValueTransformersDetailedErrorsKey: errors };
663+
NSDictionary *userInfo = @{ NSLocalizedDescriptionKey: [NSString stringWithFormat:@"Failed transformation of value '%@' to %@: none of the %lu value transformers consulted were successful.", inputValue, outputValueClass, (unsigned long)[matchingTransformers count]], RKValueTransformersDetailedErrorsKey: errors };
664664
if (error) *error = [NSError errorWithDomain:RKValueTransformersErrorDomain code:RKValueTransformationErrorTransformationFailed userInfo:userInfo];
665665
return NO;
666666
}

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ inhibit_all_warnings!
44

55
def import_pods
66
pod 'Expecta', '~> 0.2.1'
7-
pod 'RKValueTransformers', :path => File.dirname(__FILE__)
7+
pod 'RKValueTransformers', :path => '.'
88
end
99

1010
target :ios do

Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ PODS:
44

55
DEPENDENCIES:
66
- Expecta (~> 0.2.1)
7-
- RKValueTransformers (from `/Users/blake/Projects/RestKit/RKValueTransformers`)
7+
- RKValueTransformers (from `.`)
88

99
EXTERNAL SOURCES:
1010
RKValueTransformers:
11-
:path: /Users/blake/Projects/RestKit/RKValueTransformers
11+
:path: .
1212

1313
SPEC CHECKSUMS:
1414
Expecta: 99adbb2e366a02796477523bfd426143350d9caf

0 commit comments

Comments
 (0)