File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ Pod::Spec.new do |s|
12
12
s . osx . deployment_target = '10.9'
13
13
s . tvos . deployment_target = '9.0'
14
14
15
+
16
+ s . pod_target_xcconfig = {
17
+ 'SWIFT_VERSION' => '3.0' ,
18
+ }
19
+
15
20
s . requires_arc = 'true'
16
21
s . source_files = 'ObjectMapper/**/*.swift'
17
22
end
Original file line number Diff line number Diff line change 1133
1133
ONLY_ACTIVE_ARCH = YES;
1134
1134
SDKROOT = iphoneos;
1135
1135
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1136
- SWIFT_VERSION = 2.3 ;
1136
+ SWIFT_VERSION = 3.0 ;
1137
1137
TARGETED_DEVICE_FAMILY = "1,2";
1138
1138
VERSIONING_SYSTEM = "apple-generic";
1139
1139
VERSION_INFO_PREFIX = "";
1176
1176
MTL_ENABLE_DEBUG_INFO = NO;
1177
1177
SDKROOT = iphoneos;
1178
1178
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
1179
- SWIFT_VERSION = 2.3 ;
1179
+ SWIFT_VERSION = 3.0 ;
1180
1180
TARGETED_DEVICE_FAMILY = "1,2";
1181
1181
VALIDATE_PRODUCT = YES;
1182
1182
VERSIONING_SYSTEM = "apple-generic";
Original file line number Diff line number Diff line change @@ -40,10 +40,10 @@ public final class Map {
40
40
41
41
public internal( set) var JSON : [ String : Any ] = [ : ]
42
42
public internal( set) var isKeyPresent = false
43
- public var currentValue : Any ?
44
- public var context : MapContext ?
43
+ public internal( set) var currentValue : Any ?
45
44
public internal( set) var currentKey : String ?
46
45
var keyIsNested = false
46
+ public var context : MapContext ?
47
47
48
48
let toObject : Bool // indicates whether the mapping is being applied to an existing object
49
49
You can’t perform that action at this time.
0 commit comments