Skip to content

Commit

Permalink
Deploy 4.1.0-pre
Browse files Browse the repository at this point in the history
  • Loading branch information
g-amichnia committed Oct 11, 2021
1 parent 8f9a004 commit 7cfeecc
Show file tree
Hide file tree
Showing 140 changed files with 221 additions and 221 deletions.
2 changes: 1 addition & 1 deletion .jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Mintfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
MakeAWishFoundation/[email protected]
MakeAWishFoundation/[email protected]-pre
krzysztofzablocki/[email protected]
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
]
```

Expand Down Expand Up @@ -385,11 +385,11 @@ SwiftyMocky is available under the MIT license. See the [LICENSE][link-license]

<!-- Links based on tag -->

[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

<!-- Assets -->

Expand Down
2 changes: 1 addition & 1 deletion Sources/CLI/Core/Application.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftyMocky/Mock.swifttemplate
Original file line number Diff line number Diff line change
Expand Up @@ -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) { -%>
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftyPrototype/Prototype.swifttemplate
Original file line number Diff line number Diff line change
Expand Up @@ -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) { -%>
Expand Down
2 changes: 1 addition & 1 deletion SwiftyMocky-Runtime/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.1.0</string>
<string>4.1.0-pre</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
8 changes: 4 additions & 4 deletions SwiftyMocky-Tests/Shared/Other/VerifyMessagesTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion SwiftyMocky-Tests/iOS/Mocks/Mock.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion SwiftyMocky-Tests/macOS/Mocks/Mock.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion SwiftyMocky-Tests/tvOS/Mocks/Mock.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
4 changes: 2 additions & 2 deletions SwiftyMocky.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -12,7 +12,7 @@ Library that uses metaprogramming technique to generate mocks based on sources,
s.author = { 'Przemysław Wośko' => '[email protected]', 'Andrzej Michnia' => '[email protected]' }
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'
Expand Down
4 changes: 2 additions & 2 deletions SwiftyPrototype.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -12,7 +12,7 @@ Library that uses metaprogramming technique to generate fakes/prototypes based o
s.author = { 'Przemysław Wośko' => '[email protected]', 'Andrzej Michnia' => '[email protected]' }
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'
Expand Down
2 changes: 1 addition & 1 deletion Templates/Header-Mock.swifttemplate
Original file line number Diff line number Diff line change
@@ -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) { -%>
Expand Down
2 changes: 1 addition & 1 deletion Templates/Header-Prototype.swifttemplate
Original file line number Diff line number Diff line change
@@ -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) { -%>
Expand Down
2 changes: 1 addition & 1 deletion Tests/SwiftyMockyCLICoreTests/Mock.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion Tests/SwiftyMockyTests/Mock.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
Binary file modified bin/swiftymocky
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/Additional Guides.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Additional Guides Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/ArgumentCaptor.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="ArgumentCaptor Class Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/Matcher.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Matcher Class Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/Matcher/ComparisonResult.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="ComparisonResult Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/Matcher/ParameterComparisonResult.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="ParameterComparisonResult Structure Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/MockyAssertion.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="MockyAssertion Class Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/StubbedMethod.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="StubbedMethod Class Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/SwiftyMockyTestObserver.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="SwiftyMockyTestObserver Class Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Configuration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/Count.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Count Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/MockError.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="MockError Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/MockScope.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="MockScope Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/Parameter.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Parameter Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/SequencingPolicy.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="SequencingPolicy Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/StubProduct.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="StubProduct Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/StubbingPolicy.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="StubbingPolicy Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/Utils.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Utils Enumeration Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Extensions/Int.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Int Extension Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Extensions/Optional.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Optional Extension Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Extensions/UInt.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="UInt Extension Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Generics.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Generics Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Global methods.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Global methods Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
2 changes: 1 addition & 1 deletion docs/Helpers.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a title="Helpers Reference"></a>
<header>
<div class="content-wrapper">
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
</div>
</header>
Expand Down
Loading

0 comments on commit 7cfeecc

Please sign in to comment.