-
Notifications
You must be signed in to change notification settings - Fork 39
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
Fix compile errors with latest ReactiveSwift #29
Conversation
@@ -495,6 +495,8 @@ extension DispatchTimeInterval { | |||
return TimeInterval(UInt64(us) * NSEC_PER_USEC) / TimeInterval(NSEC_PER_SEC) | |||
case let .nanoseconds(ns): | |||
return TimeInterval(ns) / TimeInterval(NSEC_PER_SEC) | |||
case let .never: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be conditionally compiled (just like we did in ReactiveSwift) to maintain compatibility with Xcode 8.2/Swift 3.1.
Closed in favor of #30. |
Actually, there are other bits here that we could use. 😅 |
@@ -1,3 +1,3 @@ | |||
github "jspahrsummers/xcconfigs" "3d9d996" | |||
github "Quick/Quick" ~> 1.1 | |||
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034" | |||
github "Quick/Nimble" ~> 6.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's use ~> 7.0.1
I've been working on #51, but I just noticed this was here. Do we still need this PR? |
I don't think so? |
Closing this for now. |
This just gets the bridge compiling correctly with the latest ReactiveSwift / Xcode 9 stuff.