Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sourcery 2.2.4 #1

Merged
merged 13 commits into from
May 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2.0
VERSION = 4.2.1

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
Expand Down
4 changes: 2 additions & 2 deletions Mintfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
MakeAWishFoundation/SwiftyMocky@4.1.0
krzysztofzablocki/Sourcery@1.8.0
MakeAWishFoundation/SwiftyMocky@4.2.1
krzysztofzablocki/Sourcery@2.2.4
6 changes: 3 additions & 3 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def tests
end

target 'Mocky_Example_iOS' do
platform :ios, '9.0'
platform :ios, '12.0'
target 'Mocky_Tests_iOS' do
inherit! :search_paths
tests
Expand All @@ -21,15 +21,15 @@ target 'Mocky_Example_iOS_15' do
end

target 'Mocky_Example_tvOS' do
platform :tvos, '9.0'
platform :tvos, '12.0'
target 'Mocky_Tests_tvOS' do
inherit! :search_paths
tests
end
end

target 'Mocky_Example_macOS' do
platform :macos, '10.13'
platform :macos, '10.15'
target 'Mocky_Tests_macOS' do
inherit! :search_paths
tests
Expand Down
18 changes: 9 additions & 9 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PODS:
- Sourcery (1.8.0):
- Sourcery/CLI-Only (= 1.8.0)
- Sourcery/CLI-Only (1.8.0)
- SwiftyMocky (4.1.0):
- Sourcery (= 1.8.0)
- Sourcery (2.2.4):
- Sourcery/CLI-Only (= 2.2.4)
- Sourcery/CLI-Only (2.2.4)
- SwiftyMocky (4.2.0):
- Sourcery (= 2.2.4)

DEPENDENCIES:
- SwiftyMocky (from `./`)
Expand All @@ -17,9 +17,9 @@ EXTERNAL SOURCES:
:path: "./"

SPEC CHECKSUMS:
Sourcery: 6f5fe49b82b7e02e8c65560cbd52e1be67a1af2e
SwiftyMocky: 308ec8314ed9a2f72e5b16537ffff046fec8779f
Sourcery: 47b30d2494896127ff264ecb19efb3643521fcb9
SwiftyMocky: f3ac32a103b6fd945e08cb2d3a88a03185825737

PODFILE CHECKSUM: bdcefa827bbd4d82b3bb801ca8e42fd57d9afed5
PODFILE CHECKSUM: 024f8b7ce6c9eed2b70ca54b9fcecda8c6cb6381

COCOAPODS: 1.11.3
COCOAPODS: 1.15.2
2 changes: 1 addition & 1 deletion Sources/CLI/Core/Utils/Global.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Foundation
import PathKit

public var kSwiftyMockyCommand = Path("mocky")
public var kSourceryVersion = "1.8.0"
public var kSourceryVersion = "2.2.4"
public var kDefaultSourceryCommand: (String) -> String = { version in "mint run krzysztofzablocki/Sourcery@\(version) sourcery"}

public protocol AutoMockable {}
Expand Down
480 changes: 257 additions & 223 deletions Sources/SwiftyMocky/Mock.swifttemplate

Large diffs are not rendered by default.

480 changes: 257 additions & 223 deletions Sources/SwiftyPrototype/Prototype.swifttemplate

Large diffs are not rendered by default.

Loading