diff --git a/Dispatcher.xcodeproj/project.pbxproj b/Dispatcher.xcodeproj/project.pbxproj index 502ec8e..338096b 100644 --- a/Dispatcher.xcodeproj/project.pbxproj +++ b/Dispatcher.xcodeproj/project.pbxproj @@ -39,7 +39,7 @@ 167A43321E8453E100083790 /* Dispatcher_macOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Dispatcher_macOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 167A43341E8453E100083790 /* Dispatcher_macOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dispatcher_macOS.h; sourceTree = ""; }; 167A43351E8453E100083790 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 16D979D11E88C4CB00F4430B /* RecorderMiddleware+.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RecorderMiddleware+.swift"; sourceTree = ""; }; + 16D979D11E88C4CB00F4430B /* RecorderMiddleware.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RecorderMiddleware.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -107,7 +107,7 @@ isa = PBXGroup; children = ( 167A43221E8453A300083790 /* LoggerMiddleware.swift */, - 16D979D11E88C4CB00F4430B /* RecorderMiddleware+.swift */, + 16D979D11E88C4CB00F4430B /* RecorderMiddleware.swift */, ); name = Middleware; sourceTree = ""; diff --git a/bin/build.sh b/bin/build.sh index cffc659..55a9284 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -8,6 +8,8 @@ rm -rf .build_temp mkdir .build_temp cd .build_temp echo "github \"alexdrone/Dispatch\" \"master\"" >> Cartfile +echo "github \"JohnSundell/Wrap\" \"master\"" >> Cartfile +echo "github \"JohnSundell/Unbox\" \"master\"" >> Cartfile carthage update mv Carthage/Build/iOS/*.framework ../bin/ mv Carthage/Build/iOS/*.dSYM ../bin/ diff --git a/src/RecorderMiddleware+.swift b/src/RecorderMiddleware.swift similarity index 100% rename from src/RecorderMiddleware+.swift rename to src/RecorderMiddleware.swift