Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ReSwift/ReactiveReSwift
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.0
Choose a base ref
...
head repository: ReSwift/ReactiveReSwift
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Apr 17, 2019

  1. Update Travis Xcode version

    Charlotte Tortorella committed Apr 17, 2019
    Copy the full SHA
    f908b3b View commit details
  2. Update OS versions for Travis build

    Charlotte Tortorella committed Apr 17, 2019
    Copy the full SHA
    86c0e13 View commit details

Commits on May 17, 2019

  1. Update ReactiveKit.md

    Qata authored May 17, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3a3bdaa View commit details
Showing with 5 additions and 5 deletions.
  1. +4 −4 .travis.yml
  2. +1 −1 Docs/Reactive/ReactiveKit.md
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: objective-c
osx_image: xcode9.3
osx_image: xcode10.2

branches:
except:
@@ -17,9 +17,9 @@ env:

matrix:
include:
- env: SCHEME="macOS" SDK="macosx10.13" DESTINATION="arch=x86_64"
- env: SCHEME="iOS" SDK="iphonesimulator11.3" DESTINATION="OS=11.3,name=iPhone X" UPDATE_DOCS="true"
- env: SCHEME="tvOS" SDK="appletvsimulator11.3" DESTINATION="OS=11.3,name=Apple TV 4K"
- env: SCHEME="macOS" SDK="macosx10.14" DESTINATION="arch=x86_64"
- env: SCHEME="iOS" SDK="iphonesimulator12.2" DESTINATION="OS=12.2,name=iPhone X" UPDATE_DOCS="true"
- env: SCHEME="tvOS" SDK="appletvsimulator12.2" DESTINATION="OS=12.2,name=Apple TV 4K"

script:
- set -o pipefail
2 changes: 1 addition & 1 deletion Docs/Reactive/ReactiveKit.md
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ extension Signal: StreamType {
public typealias DisposableType = DisposableWrapper

public func subscribe(_ function: @escaping (Element) -> Void) -> DisposableWrapper {
return DisposableWrapper(disposable: self.observeNext(with: function))
return DisposableWrapper(disposable: observeNext(with: function))
}
}