Skip to content

Commit

Permalink
Rename GoogleSignIn to GoogleIdSignIn
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheikh Bayazid committed Jan 13, 2023
1 parent 8ebf7fe commit bb2b04d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// GoogleSignIn.swift
// GoogleIdSignIn.swift
// ShortcutAuthentication
//
// Created by Sheikh Bayazid on 2023-01-09.
Expand All @@ -8,6 +8,6 @@

import Foundation

public class GoogleSignIn {
public class GoogleIdSignIn {

}
6 changes: 6 additions & 0 deletions GoogleIdSignIn/Tests/GoogleIdSignInTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import Foundation

import XCTest
@testable import GoogleIdSignIn

final class GoogleIdSignInTests: XCTestCase { }
6 changes: 0 additions & 6 deletions GoogleSignIn/Tests/GoogleSignInTests.swift

This file was deleted.

12 changes: 6 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
name: "ShortcutAuthentication",
targets: [
"AppleIdSignIn",
"GoogleSignIn"
"GoogleIdSignIn"
]
)
],
Expand All @@ -36,14 +36,14 @@ let package = Package(
path: "AppleIdSignIn/Tests"
),
.target(
name: "GoogleSignIn",
name: "GoogleIdSignIn",
dependencies: [],
path: "GoogleSignIn/Sources"
path: "GoogleIdSignIn/Sources"
),
.testTarget(
name: "GoogleSignInTests",
dependencies: ["GoogleSignIn"],
path: "GoogleSignIn/Tests"
name: "GoogleIdSignInTests",
dependencies: ["GoogleIdSignIn"],
path: "GoogleIdSignIn/Tests"
)
]
)

0 comments on commit bb2b04d

Please sign in to comment.