diff --git a/.jazzy.yaml b/.jazzy.yaml index e2a34953..ae33b664 100644 --- a/.jazzy.yaml +++ b/.jazzy.yaml @@ -2,7 +2,7 @@ author: Przemysław Wośko, Andrzej Michnia author_url: https://girappe.com module: SwiftyMocky sourcekitten_sourcefile: docs.json -module_version: 4.1.0 +module_version: 4.1.0-pre github_url: https://github.com/MakeAWishFoundation/SwiftyMocky copyright: 'Copyright © 2017 MakeAWishFoundation. All rights reserved.' readme: guides/Overview.md diff --git a/Makefile b/Makefile index 17beef9f..c5191755 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ EXECUTABLE_NAME = swiftymocky REPO = https://github.com/MakeAWishFoundation/SwiftyMocky -VERSION = 4.1.0 +VERSION = 4.1.0-pre PREFIX = /usr/local INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) diff --git a/Mintfile b/Mintfile index a65e44a4..dbf74dc1 100644 --- a/Mintfile +++ b/Mintfile @@ -1,2 +1,2 @@ -MakeAWishFoundation/SwiftyMocky@4.1.0 +MakeAWishFoundation/SwiftyMocky@4.1.0-pre krzysztofzablocki/Sourcery@1.6.0 diff --git a/README.md b/README.md index 9fbacfbb..37a5c253 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ Add **SwiftyMocky** to you **Package.swift** dependencies: ```swift dependencies: [ - .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0"), + .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0-pre"), ] ``` @@ -385,11 +385,11 @@ SwiftyMocky is available under the MIT license. See the [LICENSE][link-license] -[link-docs]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/index.html -[link-docs-features]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/supported-features.html -[link-docs-installation]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/installation.html -[link-docs-installation-carthage]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/installation.html#installation-carthage -[link-docs-setup]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/setup-in-project.html +[link-docs]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/index.html +[link-docs-features]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/supported-features.html +[link-docs-installation]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/installation.html +[link-docs-installation-carthage]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/installation.html#installation-carthage +[link-docs-setup]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/setup-in-project.html diff --git a/Sources/CLI/Core/Application.swift b/Sources/CLI/Core/Application.swift index 2412650e..eab9b965 100644 --- a/Sources/CLI/Core/Application.swift +++ b/Sources/CLI/Core/Application.swift @@ -6,7 +6,7 @@ public class Application { // MARK: - Properties - public let version = "4.1.0" + public let version = "4.1.0-pre" public var pwd = Path(ProcessInfo.processInfo.environment["PWD"] ?? "") public var handle: (Error) -> Void = { error in switch error { diff --git a/Sources/SwiftyMocky/Mock.swifttemplate b/Sources/SwiftyMocky/Mock.swifttemplate index a845d9f1..e836fdc3 100644 --- a/Sources/SwiftyMocky/Mock.swifttemplate +++ b/Sources/SwiftyMocky/Mock.swifttemplate @@ -37,7 +37,7 @@ func stringArray(fromArguments arguments: [String: Any], forKey key: String) -> } } _%> -// Generated with SwiftyMocky 4.1.0 +// Generated with SwiftyMocky 4.1.0-pre // Required Sourcery: 1.6.0 <%_ for rule in swiftLintRules(argument) { -%> diff --git a/Sources/SwiftyPrototype/Prototype.swifttemplate b/Sources/SwiftyPrototype/Prototype.swifttemplate index 0a19f18a..c10f522d 100644 --- a/Sources/SwiftyPrototype/Prototype.swifttemplate +++ b/Sources/SwiftyPrototype/Prototype.swifttemplate @@ -37,7 +37,7 @@ func stringArray(fromArguments arguments: [String: Any], forKey key: String) -> } } _%> -// Generated with SwiftyPrototype 4.1.0 +// Generated with SwiftyPrototype 4.1.0-pre // Required Sourcery: 1.6.0 <%_ for rule in swiftLintRules(argument) { -%> diff --git a/SwiftyMocky-Runtime/Info.plist b/SwiftyMocky-Runtime/Info.plist index 4529bea4..01d09f34 100644 --- a/SwiftyMocky-Runtime/Info.plist +++ b/SwiftyMocky-Runtime/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 4.1.0 + 4.1.0-pre CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/SwiftyMocky-Tests/Shared/Other/VerifyMessagesTests.swift b/SwiftyMocky-Tests/Shared/Other/VerifyMessagesTests.swift index 54f604e0..27da3119 100644 --- a/SwiftyMocky-Tests/Shared/Other/VerifyMessagesTests.swift +++ b/SwiftyMocky-Tests/Shared/Other/VerifyMessagesTests.swift @@ -109,10 +109,10 @@ class VerifyMessagesTests: XCTestCase { Given(mock, .decode(.value(DecodableType.self), from: .any, willReturn: DecodableType(id: 1))) Given(mock, .decode(.value(OtherType.self), from: .any, willReturn: OtherType(id: 2))) - let data1 = Data(bytes: [1,1,1,1]) - let data2 = Data(bytes: [2,2,2,2]) - let data3 = Data(bytes: [3,3,3,3]) - let data4 = Data(bytes: [4,4,4,4]) + let data1 = Data([1,1,1,1]) + let data2 = Data([2,2,2,2]) + let data3 = Data([3,3,3,3]) + let data4 = Data([4,4,4,4]) _ = mock.decode(DecodableType.self, from: data1) _ = mock.decode(DecodableType.self, from: data2) diff --git a/SwiftyMocky-Tests/iOS/Mocks/Mock.generated.swift b/SwiftyMocky-Tests/iOS/Mocks/Mock.generated.swift index 4386981c..4174c6c0 100644 --- a/SwiftyMocky-Tests/iOS/Mocks/Mock.generated.swift +++ b/SwiftyMocky-Tests/iOS/Mocks/Mock.generated.swift @@ -2,7 +2,7 @@ // DO NOT EDIT -// Generated with SwiftyMocky 4.1.0 +// Generated with SwiftyMocky 4.1.0-pre // Required Sourcery: 1.6.0 diff --git a/SwiftyMocky-Tests/macOS/Mocks/Mock.generated.swift b/SwiftyMocky-Tests/macOS/Mocks/Mock.generated.swift index 26dbffd3..03317a5d 100644 --- a/SwiftyMocky-Tests/macOS/Mocks/Mock.generated.swift +++ b/SwiftyMocky-Tests/macOS/Mocks/Mock.generated.swift @@ -2,7 +2,7 @@ // DO NOT EDIT -// Generated with SwiftyMocky 4.1.0 +// Generated with SwiftyMocky 4.1.0-pre // Required Sourcery: 1.6.0 diff --git a/SwiftyMocky-Tests/tvOS/Mocks/Mock.generated.swift b/SwiftyMocky-Tests/tvOS/Mocks/Mock.generated.swift index 53526e5b..e870f815 100644 --- a/SwiftyMocky-Tests/tvOS/Mocks/Mock.generated.swift +++ b/SwiftyMocky-Tests/tvOS/Mocks/Mock.generated.swift @@ -2,7 +2,7 @@ // DO NOT EDIT -// Generated with SwiftyMocky 4.1.0 +// Generated with SwiftyMocky 4.1.0-pre // Required Sourcery: 1.6.0 diff --git a/SwiftyMocky.podspec b/SwiftyMocky.podspec index f8f712b3..d3564fbb 100644 --- a/SwiftyMocky.podspec +++ b/SwiftyMocky.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftyMocky' - s.version = '4.1.0' + s.version = '4.1.0-pre' s.summary = 'Unit testing library for Swift, with mock generation. Adds a set of handy methods, simplifying testing.' s.description = <<-DESC Library that uses metaprogramming technique to generate mocks based on sources, that makes testing for Swift Mockito-like. @@ -12,7 +12,7 @@ Library that uses metaprogramming technique to generate mocks based on sources, s.author = { 'Przemysław Wośko' => 'przemyslaw.wosko@intive.com', 'Andrzej Michnia' => 'amichnia@gmail.com' } s.source = { :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => s.version.to_s } - s.swift_versions = ['4.1', '4.2', '5.0', '5.1.2', '5.5'] + s.swift_versions = ['5.0', '5.1.2', '5.5'] s.ios.deployment_target = '9.0' s.tvos.deployment_target = '9.0' s.macos.deployment_target = '10.10' diff --git a/SwiftyPrototype.podspec b/SwiftyPrototype.podspec index ffd46776..2b7d4c3d 100644 --- a/SwiftyPrototype.podspec +++ b/SwiftyPrototype.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftyPrototype' - s.version = '4.1.0' + s.version = '4.1.0-pre' s.summary = 'Prototyping/Faking library for Swift, with code generation. Auto-generates fakes/prototypes based on protocol definitions.' s.description = <<-DESC Library that uses metaprogramming technique to generate fakes/prototypes based on sources, makin it easier to prototype app. @@ -12,7 +12,7 @@ Library that uses metaprogramming technique to generate fakes/prototypes based o s.author = { 'Przemysław Wośko' => 'przemyslaw.wosko@intive.com', 'Andrzej Michnia' => 'amichnia@gmail.com' } s.source = { :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => s.version.to_s } - s.swift_versions = ['4.1', '4.2', '5.0', '5.1.2'] + s.swift_versions = ['5.0', '5.1.2', '5.5'] s.ios.deployment_target = '9.0' s.tvos.deployment_target = '9.0' s.macos.deployment_target = '10.10' diff --git a/Templates/Header-Mock.swifttemplate b/Templates/Header-Mock.swifttemplate index 4ad988a8..898cd4fe 100644 --- a/Templates/Header-Mock.swifttemplate +++ b/Templates/Header-Mock.swifttemplate @@ -1,4 +1,4 @@ -// Generated with SwiftyMocky 4.1.0 +// Generated with SwiftyMocky 4.1.0-pre // Required Sourcery: 1.6.0 <%_ for rule in swiftLintRules(argument) { -%> diff --git a/Templates/Header-Prototype.swifttemplate b/Templates/Header-Prototype.swifttemplate index 5356eff9..a40d3585 100644 --- a/Templates/Header-Prototype.swifttemplate +++ b/Templates/Header-Prototype.swifttemplate @@ -1,4 +1,4 @@ -// Generated with SwiftyPrototype 4.1.0 +// Generated with SwiftyPrototype 4.1.0-pre // Required Sourcery: 1.6.0 <%_ for rule in swiftLintRules(argument) { -%> diff --git a/Tests/SwiftyMockyCLICoreTests/Mock.generated.swift b/Tests/SwiftyMockyCLICoreTests/Mock.generated.swift index 8d3b46f6..f9cb4693 100644 --- a/Tests/SwiftyMockyCLICoreTests/Mock.generated.swift +++ b/Tests/SwiftyMockyCLICoreTests/Mock.generated.swift @@ -2,7 +2,7 @@ // DO NOT EDIT -// Generated with SwiftyMocky 4.1.0 +// Generated with SwiftyMocky 4.1.0-pre // Required Sourcery: 1.6.0 diff --git a/Tests/SwiftyMockyTests/Mock.generated.swift b/Tests/SwiftyMockyTests/Mock.generated.swift index b6a43e9b..f7714e72 100644 --- a/Tests/SwiftyMockyTests/Mock.generated.swift +++ b/Tests/SwiftyMockyTests/Mock.generated.swift @@ -2,7 +2,7 @@ // DO NOT EDIT -// Generated with SwiftyMocky 4.1.0 +// Generated with SwiftyMocky 4.1.0-pre // Required Sourcery: 1.6.0 diff --git a/bin/swiftymocky b/bin/swiftymocky index 83ea6b81..7f453a21 100755 Binary files a/bin/swiftymocky and b/bin/swiftymocky differ diff --git a/docs/Additional Guides.html b/docs/Additional Guides.html index b8732bff..34b996ac 100644 --- a/docs/Additional Guides.html +++ b/docs/Additional Guides.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Classes/ArgumentCaptor.html b/docs/Classes/ArgumentCaptor.html index 0dde541f..1d60ee7f 100644 --- a/docs/Classes/ArgumentCaptor.html +++ b/docs/Classes/ArgumentCaptor.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Classes/Matcher.html b/docs/Classes/Matcher.html index ff9a2cd0..1145ce95 100644 --- a/docs/Classes/Matcher.html +++ b/docs/Classes/Matcher.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Classes/Matcher/ComparisonResult.html b/docs/Classes/Matcher/ComparisonResult.html index c468a682..74bbf6b7 100644 --- a/docs/Classes/Matcher/ComparisonResult.html +++ b/docs/Classes/Matcher/ComparisonResult.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Classes/Matcher/ParameterComparisonResult.html b/docs/Classes/Matcher/ParameterComparisonResult.html index 38bf98c2..1ededc3a 100644 --- a/docs/Classes/Matcher/ParameterComparisonResult.html +++ b/docs/Classes/Matcher/ParameterComparisonResult.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Classes/MockyAssertion.html b/docs/Classes/MockyAssertion.html index f1bee440..af4491f6 100644 --- a/docs/Classes/MockyAssertion.html +++ b/docs/Classes/MockyAssertion.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Classes/StubbedMethod.html b/docs/Classes/StubbedMethod.html index 0cc1ef88..f527ba02 100644 --- a/docs/Classes/StubbedMethod.html +++ b/docs/Classes/StubbedMethod.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Classes/SwiftyMockyTestObserver.html b/docs/Classes/SwiftyMockyTestObserver.html index acd70dfc..c358c944 100644 --- a/docs/Classes/SwiftyMockyTestObserver.html +++ b/docs/Classes/SwiftyMockyTestObserver.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Configuration.html b/docs/Configuration.html index 574beece..c9768dd1 100644 --- a/docs/Configuration.html +++ b/docs/Configuration.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Enums/Count.html b/docs/Enums/Count.html index 7effcb71..cfcaa6be 100644 --- a/docs/Enums/Count.html +++ b/docs/Enums/Count.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Enums/MockError.html b/docs/Enums/MockError.html index 2887dc78..e2675fae 100644 --- a/docs/Enums/MockError.html +++ b/docs/Enums/MockError.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Enums/MockScope.html b/docs/Enums/MockScope.html index 9a4145f2..9df66884 100644 --- a/docs/Enums/MockScope.html +++ b/docs/Enums/MockScope.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Enums/Parameter.html b/docs/Enums/Parameter.html index 40e631ee..50a42217 100644 --- a/docs/Enums/Parameter.html +++ b/docs/Enums/Parameter.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Enums/SequencingPolicy.html b/docs/Enums/SequencingPolicy.html index 728889a5..4a22b7d8 100644 --- a/docs/Enums/SequencingPolicy.html +++ b/docs/Enums/SequencingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Enums/StubProduct.html b/docs/Enums/StubProduct.html index 88a67634..3faa0d6a 100644 --- a/docs/Enums/StubProduct.html +++ b/docs/Enums/StubProduct.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Enums/StubbingPolicy.html b/docs/Enums/StubbingPolicy.html index 4805ee30..353997af 100644 --- a/docs/Enums/StubbingPolicy.html +++ b/docs/Enums/StubbingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Enums/Utils.html b/docs/Enums/Utils.html index 834a2f0a..b9ce3267 100644 --- a/docs/Enums/Utils.html +++ b/docs/Enums/Utils.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Extensions/Int.html b/docs/Extensions/Int.html index 19961381..649f1d29 100644 --- a/docs/Extensions/Int.html +++ b/docs/Extensions/Int.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Extensions/Optional.html b/docs/Extensions/Optional.html index d809ee04..c2eac300 100644 --- a/docs/Extensions/Optional.html +++ b/docs/Extensions/Optional.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Extensions/UInt.html b/docs/Extensions/UInt.html index 81f82df4..2d48e6af 100644 --- a/docs/Extensions/UInt.html +++ b/docs/Extensions/UInt.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Generics.html b/docs/Generics.html index a4fa01c9..9a124ddb 100644 --- a/docs/Generics.html +++ b/docs/Generics.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Global methods.html b/docs/Global methods.html index b074d9da..2fb5dd22 100644 --- a/docs/Global methods.html +++ b/docs/Global methods.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Helpers.html b/docs/Helpers.html index 3f7f95b0..ea58b478 100644 --- a/docs/Helpers.html +++ b/docs/Helpers.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Internal.html b/docs/Internal.html index 46a9a7ae..288c1261 100644 --- a/docs/Internal.html +++ b/docs/Internal.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Main Guides.html b/docs/Main Guides.html index 69d09a9c..24e93cde 100644 --- a/docs/Main Guides.html +++ b/docs/Main Guides.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Other Classes.html b/docs/Other Classes.html index 72131272..75dcc313 100644 --- a/docs/Other Classes.html +++ b/docs/Other Classes.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Other Enums.html b/docs/Other Enums.html index 0dd6ba12..bdd2199a 100644 --- a/docs/Other Enums.html +++ b/docs/Other Enums.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Other Guides.html b/docs/Other Guides.html index c7605ebb..a3596699 100644 --- a/docs/Other Guides.html +++ b/docs/Other Guides.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Other Protocols.html b/docs/Other Protocols.html index 2998b763..840ddb6e 100644 --- a/docs/Other Protocols.html +++ b/docs/Other Protocols.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Other Structs.html b/docs/Other Structs.html index 8db320c3..4b0edcd5 100644 --- a/docs/Other Structs.html +++ b/docs/Other Structs.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Protocols/Countable.html b/docs/Protocols/Countable.html index 66428c0c..c646900f 100644 --- a/docs/Protocols/Countable.html +++ b/docs/Protocols/Countable.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Protocols/Mock.html b/docs/Protocols/Mock.html index 4029f4b2..c2bd077d 100644 --- a/docs/Protocols/Mock.html +++ b/docs/Protocols/Mock.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Protocols/StaticMock.html b/docs/Protocols/StaticMock.html index 5d5ff244..9b2c24c7 100644 --- a/docs/Protocols/StaticMock.html +++ b/docs/Protocols/StaticMock.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Protocols/TypeErasedValue.html b/docs/Protocols/TypeErasedValue.html index 59c6ca03..b9260ee4 100644 --- a/docs/Protocols/TypeErasedValue.html +++ b/docs/Protocols/TypeErasedValue.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Protocols/WithSequencingPolicy.html b/docs/Protocols/WithSequencingPolicy.html index d55da11a..b5afdd08 100644 --- a/docs/Protocols/WithSequencingPolicy.html +++ b/docs/Protocols/WithSequencingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Protocols/WithStaticSequencingPolicy.html b/docs/Protocols/WithStaticSequencingPolicy.html index d04f5a05..e61a0ec1 100644 --- a/docs/Protocols/WithStaticSequencingPolicy.html +++ b/docs/Protocols/WithStaticSequencingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Protocols/WithStubbingPolicy.html b/docs/Protocols/WithStubbingPolicy.html index b43949e3..7816ab29 100644 --- a/docs/Protocols/WithStubbingPolicy.html +++ b/docs/Protocols/WithStubbingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Structs/FatalErrorUtil.html b/docs/Structs/FatalErrorUtil.html index 825f4b0a..e3af0fdf 100644 --- a/docs/Structs/FatalErrorUtil.html +++ b/docs/Structs/FatalErrorUtil.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Structs/GenericAttribute.html b/docs/Structs/GenericAttribute.html index 1b424785..4fa8a783 100644 --- a/docs/Structs/GenericAttribute.html +++ b/docs/Structs/GenericAttribute.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Structs/Stubber.html b/docs/Structs/Stubber.html index 97c346e1..3a460bd5 100644 --- a/docs/Structs/Stubber.html +++ b/docs/Structs/Stubber.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Structs/StubberThrows.html b/docs/Structs/StubberThrows.html index 80f9719e..e29c682e 100644 --- a/docs/Structs/StubberThrows.html +++ b/docs/Structs/StubberThrows.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Structs/TypeErasedAttribute.html b/docs/Structs/TypeErasedAttribute.html index 1e7ab342..fd72249c 100644 --- a/docs/Structs/TypeErasedAttribute.html +++ b/docs/Structs/TypeErasedAttribute.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/Types.html b/docs/Types.html index 90e444e4..9f42bb66 100644 --- a/docs/Types.html +++ b/docs/Types.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/add-xcode-generate-action.html b/docs/add-xcode-generate-action.html index 487f72b8..58db4928 100644 --- a/docs/add-xcode-generate-action.html +++ b/docs/add-xcode-generate-action.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/changelog.html b/docs/changelog.html index 81e53700..0447f7df 100644 --- a/docs/changelog.html +++ b/docs/changelog.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/command-line-interface.html b/docs/command-line-interface.html index 65ec9235..d0d7f399 100644 --- a/docs/command-line-interface.html +++ b/docs/command-line-interface.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/contents.html b/docs/contents.html index 00bef97d..0dcd5666 100644 --- a/docs/contents.html +++ b/docs/contents.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Additional Guides.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Additional Guides.html index b8732bff..34b996ac 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Additional Guides.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Additional Guides.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/ArgumentCaptor.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/ArgumentCaptor.html index 0dde541f..1d60ee7f 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/ArgumentCaptor.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/ArgumentCaptor.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher.html index ff9a2cd0..1145ce95 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher/ComparisonResult.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher/ComparisonResult.html index c468a682..74bbf6b7 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher/ComparisonResult.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher/ComparisonResult.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher/ParameterComparisonResult.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher/ParameterComparisonResult.html index 38bf98c2..1ededc3a 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher/ParameterComparisonResult.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/Matcher/ParameterComparisonResult.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/MockyAssertion.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/MockyAssertion.html index f1bee440..af4491f6 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/MockyAssertion.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/MockyAssertion.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/StubbedMethod.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/StubbedMethod.html index 0cc1ef88..f527ba02 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/StubbedMethod.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/StubbedMethod.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/SwiftyMockyTestObserver.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/SwiftyMockyTestObserver.html index acd70dfc..c358c944 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/SwiftyMockyTestObserver.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Classes/SwiftyMockyTestObserver.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Configuration.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Configuration.html index 574beece..c9768dd1 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Configuration.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Configuration.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Count.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Count.html index 7effcb71..cfcaa6be 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Count.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Count.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/MockError.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/MockError.html index 2887dc78..e2675fae 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/MockError.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/MockError.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/MockScope.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/MockScope.html index 9a4145f2..9df66884 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/MockScope.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/MockScope.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Parameter.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Parameter.html index 40e631ee..50a42217 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Parameter.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Parameter.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/SequencingPolicy.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/SequencingPolicy.html index 728889a5..4a22b7d8 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/SequencingPolicy.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/SequencingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/StubProduct.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/StubProduct.html index 88a67634..3faa0d6a 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/StubProduct.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/StubProduct.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/StubbingPolicy.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/StubbingPolicy.html index 4805ee30..353997af 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/StubbingPolicy.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/StubbingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Utils.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Utils.html index 834a2f0a..b9ce3267 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Utils.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Enums/Utils.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/Int.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/Int.html index 19961381..649f1d29 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/Int.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/Int.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/Optional.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/Optional.html index d809ee04..c2eac300 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/Optional.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/Optional.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/UInt.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/UInt.html index 81f82df4..2d48e6af 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/UInt.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Extensions/UInt.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Generics.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Generics.html index a4fa01c9..9a124ddb 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Generics.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Generics.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Global methods.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Global methods.html index b074d9da..2fb5dd22 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Global methods.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Global methods.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Helpers.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Helpers.html index 3f7f95b0..ea58b478 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Helpers.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Helpers.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Internal.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Internal.html index 46a9a7ae..288c1261 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Internal.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Internal.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Main Guides.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Main Guides.html index 69d09a9c..24e93cde 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Main Guides.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Main Guides.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Classes.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Classes.html index 72131272..75dcc313 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Classes.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Classes.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Enums.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Enums.html index 0dd6ba12..bdd2199a 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Enums.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Enums.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Guides.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Guides.html index c7605ebb..a3596699 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Guides.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Guides.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Protocols.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Protocols.html index 2998b763..840ddb6e 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Protocols.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Protocols.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Structs.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Structs.html index 8db320c3..4b0edcd5 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Structs.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Other Structs.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/Countable.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/Countable.html index 66428c0c..c646900f 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/Countable.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/Countable.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/Mock.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/Mock.html index 4029f4b2..c2bd077d 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/Mock.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/Mock.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/StaticMock.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/StaticMock.html index 5d5ff244..9b2c24c7 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/StaticMock.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/StaticMock.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/TypeErasedValue.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/TypeErasedValue.html index 59c6ca03..b9260ee4 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/TypeErasedValue.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/TypeErasedValue.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithSequencingPolicy.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithSequencingPolicy.html index d55da11a..b5afdd08 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithSequencingPolicy.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithSequencingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithStaticSequencingPolicy.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithStaticSequencingPolicy.html index d04f5a05..e61a0ec1 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithStaticSequencingPolicy.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithStaticSequencingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithStubbingPolicy.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithStubbingPolicy.html index b43949e3..7816ab29 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithStubbingPolicy.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Protocols/WithStubbingPolicy.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/FatalErrorUtil.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/FatalErrorUtil.html index 825f4b0a..e3af0fdf 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/FatalErrorUtil.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/FatalErrorUtil.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/GenericAttribute.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/GenericAttribute.html index 1b424785..4fa8a783 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/GenericAttribute.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/GenericAttribute.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/Stubber.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/Stubber.html index 97c346e1..3a460bd5 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/Stubber.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/Stubber.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/StubberThrows.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/StubberThrows.html index 80f9719e..e29c682e 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/StubberThrows.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/StubberThrows.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/TypeErasedAttribute.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/TypeErasedAttribute.html index 1e7ab342..fd72249c 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/TypeErasedAttribute.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Structs/TypeErasedAttribute.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Types.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Types.html index 90e444e4..9f42bb66 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Types.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/Types.html @@ -14,7 +14,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/add-xcode-generate-action.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/add-xcode-generate-action.html index 487f72b8..58db4928 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/add-xcode-generate-action.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/add-xcode-generate-action.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/changelog.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/changelog.html index 81e53700..0447f7df 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/changelog.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/changelog.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/command-line-interface.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/command-line-interface.html index 65ec9235..d0d7f399 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/command-line-interface.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/command-line-interface.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/contents.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/contents.html index 00bef97d..0dcd5666 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/contents.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/contents.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/examples.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/examples.html index 18818547..d4712478 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/examples.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/examples.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/handling-generics.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/handling-generics.html index 79468cca..7b63b4d8 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/handling-generics.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/handling-generics.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/index.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/index.html index f54f85ed..95314138 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/index.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/index.html @@ -13,7 +13,7 @@
-

SwiftyMocky 4.1.0 Docs (86% documented)

+

SwiftyMocky 4.1.0-pre Docs (86% documented)

View on GitHub

@@ -272,12 +272,12 @@
-

SwiftyMocky 4.1.0

+

SwiftyMocky 4.1.0-pre

logo

Join our community on Slack! -> [invitation link here][link-slack]

-

Check out guides, or full documentation

+

Check out guides, or full documentation

Table of contents

    @@ -333,7 +333,7 @@

    Important

    Current version has several significant changes. It removes deprecated methods (which might be breaking) and moves CLI to the new repository.

    -

    We consider current version as stable. We are moving toward using the new Mockfile but the previous configuration format would be still supported. Library works with Swift 4.1, 4.2, 5.0, 5.1.2 and Sourcery 0.17-0.18.

    +

    We consider current version as stable. We are moving toward using the new Mockfile but the previous configuration format would be still supported. Library works with Swift 4.1, 4.2, 5.0, 5.1.2 and Sourcery 0.17-0.18.

    While it is technically possible to integrate SwiftyMocky on Linux targets, there is no Mock generation feature there yet. You can use SwiftyMokcy runtime via SwiftPM though, as long as your are fine with generating mocks on mac machine.

    @@ -381,13 +381,13 @@

    2. I

    Then execute carthage update

    -

    For Carthage, few additional steps are required ⚠️. For detailed install instructions, see full documentation or consult [Carthage documentation][carthage-adding-framework].

    +

    For Carthage, few additional steps are required ⚠️. For detailed install instructions, see full documentation or consult [Carthage documentation][carthage-adding-framework].

    Swift Package Manager:

    Add SwiftyMocky to you Package.swift dependencies:

    dependencies: [
    -    .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0"),
    +    .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0-pre"),
     ]
     
    @@ -400,15 +400,15 @@

    3. Generate mocks

    Annotate your protocols that are going to be mocked, making them adopt AutoMockable protocol, or adding annotation comment above their definition in the source code.

    -

    Mocks are generated from your project root directory, based on configuration inside Mockfile.

    +

    Mocks are generated from your project root directory, based on configuration inside Mockfile.

    > swiftymocky setup     # if you don't have a Mockfile yet
     > swiftymocky doctor    # validate your setup
     > swiftymocky generate  # generate mocks
     
    -

    More informations about CLI and mock generation

    +

    More informations about CLI and mock generation

    -

    If you don’t want to migrate to our CLI and prefer to use raw Sourcery, please refer to this section in documentation.

    +

    If you don’t want to migrate to our CLI and prefer to use raw Sourcery, please refer to this section in documentation.

    Usage

    @@ -465,7 +465,7 @@

    3. Check invocations of methods, subscripts and properties - Verify

    @@ -528,21 +528,21 @@

    Documentation

    -

    Full documentation is available here, as well as through docs directory.

    +

    Full documentation is available here, as well as through docs directory.

    -

    Guides - Table of contents

    +

    Guides - Table of contents

    -

    Changelog is available here

    +

    Changelog is available here

    All supported features

    -

    For list all supported features, check documentation here or [guides][link-guides-features]

    +

    For list all supported features, check documentation here or [guides][link-guides-features]

    Examples of usage

    -

    For more examples, check out our example project, or examples section in guides.

    +

    For more examples, check out our example project, or examples section in guides.

    To run the example project, clone the repo, and run pod install from the Example directory first.

    diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/installation.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/installation.html index f07360bb..19df0679 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/installation.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/installation.html @@ -13,7 +13,7 @@
    -

    SwiftyMocky 4.1.0 Docs (86% documented)

    +

    SwiftyMocky 4.1.0-pre Docs (86% documented)

    View on GitHub

    @@ -345,7 +345,7 @@

    SwiftyMocky 4.1.0

    +

    SwiftyMocky 4.1.0-pre

    logo

    Join our community on Slack! -> [invitation link here][link-slack]

    -

    Check out guides, or full documentation

    +

    Check out guides, or full documentation

    Table of contents

      @@ -333,7 +333,7 @@

      Important

      Current version has several significant changes. It removes deprecated methods (which might be breaking) and moves CLI to the new repository.

      -

      We consider current version as stable. We are moving toward using the new Mockfile but the previous configuration format would be still supported. Library works with Swift 4.1, 4.2, 5.0, 5.1.2 and Sourcery 0.17-0.18.

      +

      We consider current version as stable. We are moving toward using the new Mockfile but the previous configuration format would be still supported. Library works with Swift 4.1, 4.2, 5.0, 5.1.2 and Sourcery 0.17-0.18.

      While it is technically possible to integrate SwiftyMocky on Linux targets, there is no Mock generation feature there yet. You can use SwiftyMokcy runtime via SwiftPM though, as long as your are fine with generating mocks on mac machine.

      @@ -381,13 +381,13 @@

      2. I

      Then execute carthage update

      -

      For Carthage, few additional steps are required ⚠️. For detailed install instructions, see full documentation or consult [Carthage documentation][carthage-adding-framework].

      +

      For Carthage, few additional steps are required ⚠️. For detailed install instructions, see full documentation or consult [Carthage documentation][carthage-adding-framework].

      Swift Package Manager:

      Add SwiftyMocky to you Package.swift dependencies:

      dependencies: [
      -    .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0"),
      +    .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0-pre"),
       ]
       
      @@ -400,15 +400,15 @@

      3. Generate mocks

      Annotate your protocols that are going to be mocked, making them adopt AutoMockable protocol, or adding annotation comment above their definition in the source code.

      -

      Mocks are generated from your project root directory, based on configuration inside Mockfile.

      +

      Mocks are generated from your project root directory, based on configuration inside Mockfile.

      > swiftymocky setup     # if you don't have a Mockfile yet
       > swiftymocky doctor    # validate your setup
       > swiftymocky generate  # generate mocks
       
      -

      More informations about CLI and mock generation

      +

      More informations about CLI and mock generation

      -

      If you don’t want to migrate to our CLI and prefer to use raw Sourcery, please refer to this section in documentation.

      +

      If you don’t want to migrate to our CLI and prefer to use raw Sourcery, please refer to this section in documentation.

      Usage

      @@ -465,7 +465,7 @@

      3. Check invocations of methods, subscripts and properties - Verify

      @@ -528,21 +528,21 @@

      Documentation

      -

      Full documentation is available here, as well as through docs directory.

      +

      Full documentation is available here, as well as through docs directory.

      -

      Guides - Table of contents

      +

      Guides - Table of contents

      -

      Changelog is available here

      +

      Changelog is available here

      All supported features

      -

      For list all supported features, check documentation here or [guides][link-guides-features]

      +

      For list all supported features, check documentation here or [guides][link-guides-features]

      Examples of usage

      -

      For more examples, check out our example project, or examples section in guides.

      +

      For more examples, check out our example project, or examples section in guides.

      To run the example project, clone the repo, and run pod install from the Example directory first.

      diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/prototyping.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/prototyping.html index 3ce317a9..24ab1a1a 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/prototyping.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/prototyping.html @@ -13,7 +13,7 @@
      -

      SwiftyMocky 4.1.0 Docs (86% documented)

      +

      SwiftyMocky 4.1.0-pre Docs (86% documented)

      View on GitHub

      diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/setup-in-project.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/setup-in-project.html index f729c9a7..897a6951 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/setup-in-project.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/setup-in-project.html @@ -13,7 +13,7 @@
      -

      SwiftyMocky 4.1.0 Docs (86% documented)

      +

      SwiftyMocky 4.1.0-pre Docs (86% documented)

      View on GitHub

      diff --git a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/supported-features.html b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/supported-features.html index 58d7ce33..7be009bb 100644 --- a/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/supported-features.html +++ b/docs/docsets/SwiftyMocky.docset/Contents/Resources/Documents/supported-features.html @@ -13,7 +13,7 @@
      -

      SwiftyMocky 4.1.0 Docs (86% documented)

      +

      SwiftyMocky 4.1.0-pre Docs (86% documented)

      View on GitHub

      diff --git a/docs/docsets/SwiftyMocky.tgz b/docs/docsets/SwiftyMocky.tgz index d5c0a092..28c21498 100644 Binary files a/docs/docsets/SwiftyMocky.tgz and b/docs/docsets/SwiftyMocky.tgz differ diff --git a/docs/examples.html b/docs/examples.html index 18818547..d4712478 100644 --- a/docs/examples.html +++ b/docs/examples.html @@ -13,7 +13,7 @@
      -

      SwiftyMocky 4.1.0 Docs (86% documented)

      +

      SwiftyMocky 4.1.0-pre Docs (86% documented)

      View on GitHub

      diff --git a/docs/handling-generics.html b/docs/handling-generics.html index 79468cca..7b63b4d8 100644 --- a/docs/handling-generics.html +++ b/docs/handling-generics.html @@ -13,7 +13,7 @@
      -

      SwiftyMocky 4.1.0 Docs (86% documented)

      +

      SwiftyMocky 4.1.0-pre Docs (86% documented)

      View on GitHub

      diff --git a/docs/index.html b/docs/index.html index f54f85ed..95314138 100644 --- a/docs/index.html +++ b/docs/index.html @@ -13,7 +13,7 @@
      -

      SwiftyMocky 4.1.0 Docs (86% documented)

      +

      SwiftyMocky 4.1.0-pre Docs (86% documented)

      View on GitHub

      @@ -272,12 +272,12 @@
      -

      SwiftyMocky 4.1.0

      +

      SwiftyMocky 4.1.0-pre

      logo

      Join our community on Slack! -> [invitation link here][link-slack]

      -

      Check out guides, or full documentation

      +

      Check out guides, or full documentation

      Table of contents

        @@ -333,7 +333,7 @@

        Important

        Current version has several significant changes. It removes deprecated methods (which might be breaking) and moves CLI to the new repository.

        -

        We consider current version as stable. We are moving toward using the new Mockfile but the previous configuration format would be still supported. Library works with Swift 4.1, 4.2, 5.0, 5.1.2 and Sourcery 0.17-0.18.

        +

        We consider current version as stable. We are moving toward using the new Mockfile but the previous configuration format would be still supported. Library works with Swift 4.1, 4.2, 5.0, 5.1.2 and Sourcery 0.17-0.18.

        While it is technically possible to integrate SwiftyMocky on Linux targets, there is no Mock generation feature there yet. You can use SwiftyMokcy runtime via SwiftPM though, as long as your are fine with generating mocks on mac machine.

        @@ -381,13 +381,13 @@

        2. I

        Then execute carthage update

        -

        For Carthage, few additional steps are required ⚠️. For detailed install instructions, see full documentation or consult [Carthage documentation][carthage-adding-framework].

        +

        For Carthage, few additional steps are required ⚠️. For detailed install instructions, see full documentation or consult [Carthage documentation][carthage-adding-framework].

        Swift Package Manager:

        Add SwiftyMocky to you Package.swift dependencies:

        dependencies: [
        -    .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0"),
        +    .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0-pre"),
         ]
         
        @@ -400,15 +400,15 @@

        3. Generate mocks

        Annotate your protocols that are going to be mocked, making them adopt AutoMockable protocol, or adding annotation comment above their definition in the source code.

        -

        Mocks are generated from your project root directory, based on configuration inside Mockfile.

        +

        Mocks are generated from your project root directory, based on configuration inside Mockfile.

        > swiftymocky setup     # if you don't have a Mockfile yet
         > swiftymocky doctor    # validate your setup
         > swiftymocky generate  # generate mocks
         
        -

        More informations about CLI and mock generation

        +

        More informations about CLI and mock generation

        -

        If you don’t want to migrate to our CLI and prefer to use raw Sourcery, please refer to this section in documentation.

        +

        If you don’t want to migrate to our CLI and prefer to use raw Sourcery, please refer to this section in documentation.

        Usage

        @@ -465,7 +465,7 @@

        3. Check invocations of methods, subscripts and properties - Verify

        @@ -528,21 +528,21 @@

        Documentation

        -

        Full documentation is available here, as well as through docs directory.

        +

        Full documentation is available here, as well as through docs directory.

        -

        Guides - Table of contents

        +

        Guides - Table of contents

        -

        Changelog is available here

        +

        Changelog is available here

        All supported features

        -

        For list all supported features, check documentation here or [guides][link-guides-features]

        +

        For list all supported features, check documentation here or [guides][link-guides-features]

        Examples of usage

        -

        For more examples, check out our example project, or examples section in guides.

        +

        For more examples, check out our example project, or examples section in guides.

        To run the example project, clone the repo, and run pod install from the Example directory first.

        diff --git a/docs/installation.html b/docs/installation.html index f07360bb..19df0679 100644 --- a/docs/installation.html +++ b/docs/installation.html @@ -13,7 +13,7 @@
        -

        SwiftyMocky 4.1.0 Docs (86% documented)

        +

        SwiftyMocky 4.1.0-pre Docs (86% documented)

        View on GitHub

        @@ -345,7 +345,7 @@

        SwiftyMocky 4.1.0

        +

        SwiftyMocky 4.1.0-pre

        logo

        Join our community on Slack! -> [invitation link here][link-slack]

        -

        Check out guides, or full documentation

        +

        Check out guides, or full documentation

        Table of contents

          @@ -333,7 +333,7 @@

          Important

          Current version has several significant changes. It removes deprecated methods (which might be breaking) and moves CLI to the new repository.

          -

          We consider current version as stable. We are moving toward using the new Mockfile but the previous configuration format would be still supported. Library works with Swift 4.1, 4.2, 5.0, 5.1.2 and Sourcery 0.17-0.18.

          +

          We consider current version as stable. We are moving toward using the new Mockfile but the previous configuration format would be still supported. Library works with Swift 4.1, 4.2, 5.0, 5.1.2 and Sourcery 0.17-0.18.

          While it is technically possible to integrate SwiftyMocky on Linux targets, there is no Mock generation feature there yet. You can use SwiftyMokcy runtime via SwiftPM though, as long as your are fine with generating mocks on mac machine.

          @@ -381,13 +381,13 @@

          2. I

          Then execute carthage update

          -

          For Carthage, few additional steps are required ⚠️. For detailed install instructions, see full documentation or consult [Carthage documentation][carthage-adding-framework].

          +

          For Carthage, few additional steps are required ⚠️. For detailed install instructions, see full documentation or consult [Carthage documentation][carthage-adding-framework].

          Swift Package Manager:

          Add SwiftyMocky to you Package.swift dependencies:

          dependencies: [
          -    .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0"),
          +    .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0-pre"),
           ]
           
          @@ -400,15 +400,15 @@

          3. Generate mocks

          Annotate your protocols that are going to be mocked, making them adopt AutoMockable protocol, or adding annotation comment above their definition in the source code.

          -

          Mocks are generated from your project root directory, based on configuration inside Mockfile.

          +

          Mocks are generated from your project root directory, based on configuration inside Mockfile.

          > swiftymocky setup     # if you don't have a Mockfile yet
           > swiftymocky doctor    # validate your setup
           > swiftymocky generate  # generate mocks
           
          -

          More informations about CLI and mock generation

          +

          More informations about CLI and mock generation

          -

          If you don’t want to migrate to our CLI and prefer to use raw Sourcery, please refer to this section in documentation.

          +

          If you don’t want to migrate to our CLI and prefer to use raw Sourcery, please refer to this section in documentation.

          Usage

          @@ -465,7 +465,7 @@

          3. Check invocations of methods, subscripts and properties - Verify

          @@ -528,21 +528,21 @@

          Documentation

          -

          Full documentation is available here, as well as through docs directory.

          +

          Full documentation is available here, as well as through docs directory.

          -

          Guides - Table of contents

          +

          Guides - Table of contents

          -

          Changelog is available here

          +

          Changelog is available here

          All supported features

          -

          For list all supported features, check documentation here or [guides][link-guides-features]

          +

          For list all supported features, check documentation here or [guides][link-guides-features]

          Examples of usage

          -

          For more examples, check out our example project, or examples section in guides.

          +

          For more examples, check out our example project, or examples section in guides.

          To run the example project, clone the repo, and run pod install from the Example directory first.

          diff --git a/docs/prototyping.html b/docs/prototyping.html index 3ce317a9..24ab1a1a 100644 --- a/docs/prototyping.html +++ b/docs/prototyping.html @@ -13,7 +13,7 @@
          -

          SwiftyMocky 4.1.0 Docs (86% documented)

          +

          SwiftyMocky 4.1.0-pre Docs (86% documented)

          View on GitHub

          diff --git a/docs/setup-in-project.html b/docs/setup-in-project.html index f729c9a7..897a6951 100644 --- a/docs/setup-in-project.html +++ b/docs/setup-in-project.html @@ -13,7 +13,7 @@
          -

          SwiftyMocky 4.1.0 Docs (86% documented)

          +

          SwiftyMocky 4.1.0-pre Docs (86% documented)

          View on GitHub

          diff --git a/docs/supported-features.html b/docs/supported-features.html index 58d7ce33..7be009bb 100644 --- a/docs/supported-features.html +++ b/docs/supported-features.html @@ -13,7 +13,7 @@
          -

          SwiftyMocky 4.1.0 Docs (86% documented)

          +

          SwiftyMocky 4.1.0-pre Docs (86% documented)

          View on GitHub

          diff --git a/guides/Installation.md b/guides/Installation.md index 3a1d6fc9..97b738b2 100644 --- a/guides/Installation.md +++ b/guides/Installation.md @@ -86,7 +86,7 @@ Add **SwiftyMocky** to you **Package.swift** dependencies: ```swift dependencies: [ - .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0"), + .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0-pre"), ] ``` diff --git a/guides/Overview.md b/guides/Overview.md index c4905297..bf52e101 100644 --- a/guides/Overview.md +++ b/guides/Overview.md @@ -1,4 +1,4 @@ -# SwiftyMocky 4.1.0 +# SwiftyMocky 4.1.0-pre # ![logo][logo] @@ -115,7 +115,7 @@ Add **SwiftyMocky** to you **Package.swift** dependencies: ```swift dependencies: [ - .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0"), + .package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.1.0-pre"), ] ``` @@ -334,24 +334,24 @@ SwiftyMocky is available under the MIT license. See the [LICENSE][link-license] -[link-guides-installation]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/setup-in-project.html -[link-guides-contents]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/contents.html -[link-guides-examples]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/examples.html -[link-changelog]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/changelog.html +[link-guides-installation]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/setup-in-project.html +[link-guides-contents]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/contents.html +[link-guides-examples]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/examples.html +[link-changelog]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/changelog.html -[link-guides-cli]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/command-line-interface.html -[link-guides-cli-migration]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/command-line-interface.html#migration -[link-guides-cli-legacy]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/legacy.html -[link-guides-cli-generate]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/command-line-interface.html#generate -[link-guides-mockfile]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/mockfile.html +[link-guides-cli]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/command-line-interface.html +[link-guides-cli-migration]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/command-line-interface.html#migration +[link-guides-cli-legacy]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/legacy.html +[link-guides-cli-generate]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/command-line-interface.html#generate +[link-guides-mockfile]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/mockfile.html -[link-docs]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/index.html -[link-docs-features]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/supported-features.html -[link-docs-installation]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/installation.html -[link-docs-installation-carthage]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/installation.html#installation-carthage -[link-docs-setup]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0/docs/setup-in-project.html +[link-docs]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/index.html +[link-docs-features]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/supported-features.html +[link-docs-installation]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/installation.html +[link-docs-installation-carthage]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/installation.html#installation-carthage +[link-docs-setup]: https://cdn.rawgit.com/MakeAWishFoundation/SwiftyMocky/4.1.0-pre/docs/setup-in-project.html