File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
language : objective-c
2
2
script :
3
3
- xcodebuild build-for-testing test-without-building -scheme VulcanTests -configuration Debug -sdk iphonesimulator -destination "name=iPhone 7" ENABLE_TESTABILITY=YES
4
- osx_image : xcode8.1
4
+ osx_image : xcode9
5
5
xcode_project : Vulcan.xcodeproj
6
6
xcode_scheme : VulcanTests
7
7
xcode_sdk : iphonesimulator
Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ open class ImageCache: ImageCachable {
69
69
public var diskPath : String ? = nil
70
70
71
71
let cache = NSCache < NSString , Image > ( )
72
+
73
+ public init ( ) { }
72
74
73
75
open func saveImage( image: Image , with id: String ) {
74
76
cache. setObject ( image, forKey: id as NSString )
Original file line number Diff line number Diff line change 368
368
PRODUCT_BUNDLE_IDENTIFIER = jp.sasakky.Vulcan;
369
369
PRODUCT_NAME = "$(TARGET_NAME)";
370
370
SKIP_INSTALL = YES;
371
- SWIFT_VERSION = 3 .0;
371
+ SWIFT_VERSION = 4 .0;
372
372
};
373
373
name = Debug;
374
374
};
387
387
PRODUCT_BUNDLE_IDENTIFIER = jp.sasakky.Vulcan;
388
388
PRODUCT_NAME = "$(TARGET_NAME)";
389
389
SKIP_INSTALL = YES;
390
- SWIFT_VERSION = 3 .0;
390
+ SWIFT_VERSION = 4 .0;
391
391
};
392
392
name = Release;
393
393
};
399
399
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
400
400
PRODUCT_BUNDLE_IDENTIFIER = jp.sasakky.VulcanTests;
401
401
PRODUCT_NAME = "$(TARGET_NAME)";
402
- SWIFT_VERSION = 3 .0;
402
+ SWIFT_VERSION = 4 .0;
403
403
};
404
404
name = Debug;
405
405
};
411
411
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
412
412
PRODUCT_BUNDLE_IDENTIFIER = jp.sasakky.VulcanTests;
413
413
PRODUCT_NAME = "$(TARGET_NAME)";
414
- SWIFT_VERSION = 3 .0;
414
+ SWIFT_VERSION = 4 .0;
415
415
};
416
416
name = Release;
417
417
};
You can’t perform that action at this time.
0 commit comments