Skip to content

Commit 51f3d28

Browse files
committed
Bring everything in line with renaming the account.
1 parent e167017 commit 51f3d28

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+66
-66
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Serge Bouts
3+
Copyright (c) 2019 Serhiy Butz
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
![Language](https://img.shields.io/badge/Swift-5.0-orange.svg)
44
![Platform](https://img.shields.io/badge/platform-macOS%20%7C%20iOS%20%7C%20watchOS%20%7C%20tvOS-orange.svg)
55
![SPM](https://img.shields.io/badge/Swift%20Package%20Manager-compatible-orange)
6-
![Swift](https://github.com/SergeBouts/XCombine/workflows/Swift/badge.svg)
7-
[![codecov](https://codecov.io/gh/SergeBouts/XCombine/branch/master/graph/badge.svg)](https://codecov.io/gh/SergeBouts/XCombine)
8-
[<img src="https://img.shields.io/badge/licence-MIT-orange" alt="License" />](https://github.com/SergeBouts/XCombine/blob/master/LICENSE)
6+
![Swift](https://github.com/SerhiyButz/XCombine/workflows/Swift/badge.svg)
7+
[![codecov](https://codecov.io/gh/SerhiyButz/XCombine/branch/master/graph/badge.svg)](https://codecov.io/gh/SergeBouts/XCombine)
8+
[<img src="https://img.shields.io/badge/licence-MIT-orange" alt="License" />](https://github.com/SerhiyButz/XCombine/blob/master/LICENSE)
99

1010
This repo contains XCombine, a Swift module, developed on top of the Combine framework to extend it and provide alternative implementations. The solutions were found while exploring Combine, and I believe could be interesting or useful to others as well.
1111

@@ -31,7 +31,7 @@ This repo contains XCombine, a Swift module, developed on top of the Combine fra
3131
1. Go to "File" -> "Swift Packages" -> "Add Package Dependency"
3232
2. Paste XCombine's repository URL into the search field:
3333

34-
`https://github.com/SergeBouts/XCombine.git`
34+
`https://github.com/SerhiyButz/XCombine.git`
3535

3636
3. Click "Next"
3737
4. Ensure that the "Rules" field is set as this: "Branch: master"
@@ -184,6 +184,6 @@ Also, there's a discussion on developing the `withLatestFrom` operator in this [
184184

185185
This project is licensed under the MIT license.
186186

187-
[combine-insight-into-zip-operator]: https://sergebouts.github.io/combine-insight-into-zip-operator/
188-
[combine-sharereplay-operator]: https://sergebouts.github.io/combine-sharereplay-operator/
189-
[combine-withlatestfrom-operator]: https://sergebouts.github.io/combine-withlatestfrom-operator/
187+
[combine-insight-into-zip-operator]: https://serhiybutz.github.io/combine-insight-into-zip-operator/
188+
[combine-sharereplay-operator]: https://serhiybutz.github.io/combine-sharereplay-operator/
189+
[combine-withlatestfrom-operator]: https://serhiybutz.github.io/combine-withlatestfrom-operator/

Sources/XCombine/Array+XCombineZipUpstreamSubscriber.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Array+XCombineZipUpstreamSubscriber.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/11/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/11/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Combine

Sources/XCombine/CircularBuffer.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// CircularBuffer.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 10/12/19.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 10/12/19.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Foundation

Sources/XCombine/XCombine+ShareReplay.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+ShareReplay.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 10/12/19.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 10/12/19.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Foundation

Sources/XCombine/XCombine+ShareReplayHub.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+ShareReplayHub.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 10/12/19.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 10/12/19.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Foundation

Sources/XCombine/XCombine+ShareReplaySubscription.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+ShareReplaySubscription.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 10/12/19.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 10/12/19.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Foundation

Sources/XCombine/XCombine+ShareReplaySubscriptionsManager.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+ShareReplaySubscriptionsManager.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 10/12/19.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 10/12/19.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Foundation

Sources/XCombine/XCombine+Types.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+Types.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/11/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/11/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Combine

Sources/XCombine/XCombine+WithLatestFrom.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+WithLatestFrom.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/11/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/11/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Combine

Sources/XCombine/XCombine+Zip.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+Zip.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/11/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/11/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Combine

Sources/XCombine/XCombine+ZipCollector.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+ZipCollector.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/11/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/11/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Foundation

Sources/XCombine/XCombine+ZipDemandTracker.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+ZipDemandTracker.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/3/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/3/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Combine

Sources/XCombine/XCombine+ZipGate.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+ZipGate.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/3/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/3/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Foundation

Sources/XCombine/XCombine+ZipProcessor.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+ZipProcessor.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/3/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/3/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Combine

Sources/XCombine/XCombine+ZipUpstreamSubscriber.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine+ZipUpstreamSubscriber.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/3/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/3/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Combine

Sources/XCombine/XCombine.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombine.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/11/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/11/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Combine

Sources/XCombine/XCombineNamespace.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// XCombineNamespace.swift
33
// XCombine
44
//
5-
// Created by Serge Bouts on 12/3/2019.
6-
// Copyright © 2019 Serge Bouts. All rights reserved.
5+
// Created by Serhiy Butz on 12/3/2019.
6+
// Copyright © 2019 Serhiy Butz. All rights reserved.
77
//
88

99
import Combine

Tests/XCombineTests/CircularBufferTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CircularBufferTests.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/ShareReplayCombinationTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ShareReplayCombinationTests.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/ShareReplayLogicWithSequencesWithCapacityOf0.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ShareReplayWithSequencesWithCapacityOf0.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/ShareReplayLogicWithSequencesWithCapacityOf1.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ShareReplayWithSequencesWithCapacityOf1.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/ShareReplayLogicWithSequencesWithCapacityOf2.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ShareReplayWithSequencesWithCapacityOf2.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/ShareReplayScenarioWithCapacityOf1Tests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ShareReplayScenarioWithCapacityOf1Tests.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/ShareReplayScenarioWithCapacityOf2Tests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ShareReplayScenarioWithCapacityOf2Tests.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/ShareReplayThreadSafetyTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ShareReplayThreadSafetyTests.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/Supporting/AtomicSync.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// AtomicSync.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import Foundation

Tests/XCombineTests/Supporting/BlockingSubject.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// BlockingSubject.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import Combine

Tests/XCombineTests/Supporting/Configuration.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Configuration.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import Foundation

Tests/XCombineTests/Supporting/Event.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Event.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import Combine

Tests/XCombineTests/Supporting/EventError.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// EventError.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
enum EventError: Error, Equatable {

Tests/XCombineTests/Supporting/Misc.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Misc.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
func twoCharacterString(by index: Int) -> String {

Tests/XCombineTests/Supporting/Pair.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Pair.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
struct Pair<F: Equatable, S: Equatable>: Equatable {

Tests/XCombineTests/Supporting/PublisherSubscribeMock.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// PublisherSubscribeMock.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import Combine

Tests/XCombineTests/Supporting/TestSubscriber.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// TestSubscriber.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import Combine

Tests/XCombineTests/WithLatestFromTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// WithLatestFromTests.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/ZipCompletesWithFailureTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ZipCompletesWithFailureTests.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

Tests/XCombineTests/ZipCompletesWithFinishedTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ZipCompletesWithFinishedTests.swift
33
//
44
//
5-
// Created by Serge Bouts.
5+
// Created by Serhiy Butz.
66
//
77

88
import XCTest

0 commit comments

Comments
 (0)