Skip to content

Commit

Permalink
Merge pull request #10 from vapor-community/module-rename
Browse files Browse the repository at this point in the history
Updated module names to GoogleCloud.
  • Loading branch information
Andrewangeta authored Aug 27, 2018
2 parents 8994308 + 37ca037 commit a341df2
Show file tree
Hide file tree
Showing 37 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import PackageDescription

let package = Package(
name: "GoogleCloudProvider",
name: "GoogleCloud",
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "GoogleCloud",
targets: ["GoogleCloudProvider"]),
targets: ["GoogleCloud"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
Expand All @@ -20,10 +20,10 @@ let package = Package(
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "GoogleCloudProvider",
name: "GoogleCloud",
dependencies: ["Vapor","JWT"]),
.testTarget(
name: "GoogleCloudProviderTests",
dependencies: ["GoogleCloudProvider"]),
name: "GoogleCloudTests",
dependencies: ["GoogleCloud"]),
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import Foundation
import XCTest

@testable import GoogleCloudProvider
@testable import GoogleCloud

final class CredentialTests: XCTestCase {
var checkoutPath: String {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import GoogleCloudProvider
@testable import GoogleCloud

final class GoogleCloudProviderTests: XCTestCase {
func testExample() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import XCTest

import Vapor

@testable import GoogleCloudProvider
@testable import GoogleCloud

final class StorageTests: XCTestCase {
var GCSProject: String?
Expand Down

0 comments on commit a341df2

Please sign in to comment.