Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build Samples with latest master 6db73ae #473

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Sample/MVC/TicTacToe/Sources/NeedleGenerated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,14 @@ extension LoggedOutComponent: Registration {
extension LoggedInComponent: Registration {
public func registerItems() {


localTable["scoreStream-ScoreStream"] = { [unowned self] in self.scoreStream as Any }
}
}
extension RootComponent: Registration {
public func registerItems() {


localTable["playersStream-PlayersStream"] = { [unowned self] in self.playersStream as Any }
localTable["mutablePlayersStream-MutablePlayersStream"] = { [unowned self] in self.mutablePlayersStream as Any }
}
}

Expand Down
2 changes: 1 addition & 1 deletion Sample/MVC/TicTacToe/TicTacToe.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down
13 changes: 7 additions & 6 deletions Sample/Pluginized/TicTacToe/TicTacToeCore/NeedleGenerated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import TicTacToeIntegrations
import UIKit

// swiftlint:disable unused_declaration
private let needleDependenciesHash : String? = "4b585865bab35437b0cbc60e9d74b1b1"
private let needleDependenciesHash : String? = "86deb40d0ec1c9fc9fd5e5e8fc17a167"

// MARK: - Traversal Helpers

Expand Down Expand Up @@ -133,7 +133,8 @@ extension LoggedOutComponent: Registration {
extension RootComponent: Registration {
public func registerItems() {


localTable["playersStream-PlayersStream"] = { [unowned self] in self.playersStream as Any }
localTable["mutablePlayersStream-MutablePlayersStream"] = { [unowned self] in self.mutablePlayersStream as Any }
}
}
extension ScoreSheetComponent: Registration {
Expand All @@ -144,15 +145,15 @@ extension ScoreSheetComponent: Registration {
extension GameNonCoreComponent: Registration {
public func registerItems() {

localTable["scoreSheetBuilder-ScoreSheetBuilder"] = { self.scoreSheetBuilder as Any }
localTable["scoreSheetBuilder-ScoreSheetBuilder"] = { [unowned self] in self.scoreSheetBuilder as Any }
}
}
extension LoggedInNonCoreComponent: Registration {
public func registerItems() {

localTable["scoreSheetBuilder-ScoreSheetBuilder"] = { self.scoreSheetBuilder as Any }
localTable["mutableScoreStream-MutableScoreStream"] = { self.mutableScoreStream as Any }
localTable["scoreStream-ScoreStream"] = { self.scoreStream as Any }
localTable["scoreSheetBuilder-ScoreSheetBuilder"] = { [unowned self] in self.scoreSheetBuilder as Any }
localTable["mutableScoreStream-MutableScoreStream"] = { [unowned self] in self.mutableScoreStream as Any }
localTable["scoreStream-ScoreStream"] = { [unowned self] in self.scoreStream as Any }
}
}
extension GameComponent: Registration {
Expand Down