Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #5 from AndrewSB/patch-1
Browse files Browse the repository at this point in the history
Target RxSwift 3
  • Loading branch information
inamiy authored Oct 26, 2016
2 parents 3890e36 + 19a4e19 commit 596df45
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "ReactiveX/RxSwift" "3.0.0-beta.1" #~> 3.0
github "ReactiveX/RxSwift" ~> 3.0
4 changes: 2 additions & 2 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github "Quick/Nimble" "v5.0.0"
github "Quick/Nimble" "v5.1.0"
github "shu223/Pulsator" "0.2.0"
github "Quick/Quick" "v0.10.0"
github "ReactiveX/RxSwift" "3.0.0-beta.1"
github "ReactiveX/RxSwift" "3.0.0"
github "mrackwitz/xcconfigs" "3.0"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Nimble
Submodule Nimble updated 58 files
+3 −1 .gitignore
+3 −3 .travis.yml
+8 −0 CONTRIBUTING.md
+1 −1 Gemfile
+28 −26 Gemfile.lock
+30 −4 Nimble.podspec
+124 −10 Nimble.xcodeproj/project.pbxproj
+2 −2 Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme
+2 −1 Package.swift
+79 −7 README.md
+3 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/.gitignore
+30 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.h
+35 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.m
+32 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.swift
+28 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/Info.plist
+76 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlBadInstructionException.swift
+61 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.h
+50 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.m
+194 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.swift
+100 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstructionPOSIX.swift
+63 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlDarwinDefinitions.swift
+28 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/Info.plist
+537 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.c
+298 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.h
+80 −0 Sources/Lib/CwlPreconditionTesting/README.md
+2 −2 Sources/Nimble/Adapters/NimbleEnvironment.swift
+7 −2 Sources/Nimble/DSL+Wait.swift
+2 −4 Sources/Nimble/Matchers/AsyncMatcherWrapper.swift
+1 −1 Sources/Nimble/Matchers/BeLessThan.swift
+4 −4 Sources/Nimble/Matchers/BeLogical.swift
+2 −2 Sources/Nimble/Matchers/Match.swift
+55 −0 Sources/Nimble/Matchers/ThrowAssertion.swift
+7 −0 Sources/Nimble/Nimble.h
+20 −9 Sources/Nimble/Utils/Async.swift
+12 −5 Sources/Nimble/Utils/Errors.swift
+263 −31 Sources/NimbleObjectiveC/DSL.h
+14 −8 Sources/NimbleObjectiveC/DSL.m
+2 −2 Tests/LinuxMain.swift
+3 −7 Tests/NimbleTests/AsynchronousTest.swift
+1 −2 Tests/NimbleTests/Helpers/utils.swift
+5 −0 Tests/NimbleTests/Matchers/MatchErrorTest.swift
+0 −3 Tests/NimbleTests/Matchers/MatchTest.swift
+62 −0 Tests/NimbleTests/Matchers/ThrowAssertionTest.swift
+0 −1 Tests/NimbleTests/Matchers/ThrowErrorTest.swift
+3 −3 Tests/NimbleTests/SynchronousTests.swift
+0 −6 Tests/NimbleTests/UserDescriptionTest.swift
+11 −0 Tests/NimbleTests/objc/ObjCBeCloseToTest.m
+22 −0 Tests/NimbleTests/objc/ObjCBeFalseTest.m
+32 −2 Tests/NimbleTests/objc/ObjCBeFalsyTest.m
+9 −0 Tests/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m
+8 −0 Tests/NimbleTests/objc/ObjCBeGreaterThanTest.m
+6 −0 Tests/NimbleTests/objc/ObjCBeIdenticalToTest.m
+10 −0 Tests/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m
+9 −0 Tests/NimbleTests/objc/ObjCBeLessThanTest.m
+22 −0 Tests/NimbleTests/objc/ObjCBeTrueTest.m
+27 −0 Tests/NimbleTests/objc/ObjCBeTruthyTest.m
+59 −0 Tests/NimbleTests/objc/ObjCEqualTest.m
+70 −1 Tests/NimbleTests/objc/ObjCHaveCount.m
2 changes: 1 addition & 1 deletion Carthage/Checkouts/RxSwift
Submodule RxSwift updated 724 files
2 changes: 1 addition & 1 deletion Tests/MappingSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import RxSwift
import RxTests
import RxTest
import RxAutomaton
import Quick
import Nimble
Expand Down
2 changes: 1 addition & 1 deletion Tests/NextMappingSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import RxSwift
import RxTests
import RxTest
import RxAutomaton
import Quick
import Nimble
Expand Down
5 changes: 3 additions & 2 deletions Tests/TerminatingSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ class TerminatingSpec: QuickSpec
signal = signal_
observer = observer_

let sendInput1And2AfterDelay: Observable<MyInput> = [

let sendInput1And2AfterDelay: Observable<MyInput> = Observable.concat([
Observable.just(.input1).delay(1, onScheduler: testScheduler),
Observable.just(.input2).delay(1, onScheduler: testScheduler),
].concat()
])

let mappings: [Automaton.NextMapping] = [
.input0 | .state0 => .state1 | sendInput1And2AfterDelay,
Expand Down

0 comments on commit 596df45

Please sign in to comment.