Skip to content

Commit

Permalink
Last cleanup and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mac-cain13 committed Aug 4, 2015
1 parent ac1533e commit 723f981
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R.swift/values.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let Imports = "\n".join([

let ReuseIdentifier = Struct(
type: Type(name: "ReuseIdentifier", genericType: Type(name: "T")),
implements: [Type(name: "Printable")],
implements: [Type(name: "CustomStringConvertible")],
lets: [
Let(
name: "identifier",
Expand Down
2 changes: 1 addition & 1 deletion ResourceApp/ResourceApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "#\"$SRCROOT/rswift\" \"$SRCROOT\" > ./rswift.log";
shellScript = "\"$SRCROOT/rswift\" \"$SRCROOT\" > ./rswift.log";
};
/* End PBXShellScriptBuildPhase section */

Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
{
"images" : [
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "AppIcon.png",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "60x60",
Expand Down
1 change: 0 additions & 1 deletion ResourceApp/ResourceAppTests/ImagesTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import XCTest
class ImagesTests: XCTestCase {

func testNoNilImages() {
XCTAssertNil(R.image.appIcon) // AppIcon is not available with "imageNamed"
XCTAssertNotNil(R.image.eerste)
XCTAssertNotNil(R.image.first)
XCTAssertNotNil(R.image.firstNested)
Expand Down

0 comments on commit 723f981

Please sign in to comment.