Skip to content

Commit ff4250d

Browse files
committed
[package] renamed package to SimpleHTTP
1 parent 6d9824c commit ff4250d

31 files changed

+14
-14
lines changed

Package.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "Pinata",
7+
name: "SimpleHTTP",
88
platforms: [.iOS(.v13), .macOS(.v10_15)],
99
products: [
1010
// Products define the executables and libraries a package produces, and make them visible to other packages.
1111
.library(
12-
name: "Pinata",
13-
targets: ["Pinata"]),
12+
name: "SimpleHTTP",
13+
targets: ["SimpleHTTP"]),
1414
],
1515
dependencies: [
1616
// Dependencies declare other packages that this package depends on.
@@ -20,10 +20,10 @@ let package = Package(
2020
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2121
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2222
.target(
23-
name: "Pinata",
23+
name: "SimpleHTTP",
2424
dependencies: []),
2525
.testTarget(
26-
name: "PinataTests",
27-
dependencies: ["Pinata"]),
26+
name: "SimpleHTTPTests",
27+
dependencies: ["SimpleHTTP"]),
2828
]
2929
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Pinata
1+
# SimpleHTTP
22

33
Simple declarative HTTP API framework
44

Sources/Pinata/Foundation/Encodable+Existential.swift renamed to Sources/SimpleHTTP/Foundation/Encodable+Existential.swift

File renamed without changes.

Sources/Pinata/Foundation/JSONDecoder+DataDecoder.swift renamed to Sources/SimpleHTTP/Foundation/JSONDecoder+DataDecoder.swift

File renamed without changes.

Sources/Pinata/Foundation/JSONEncoder+DataEncoder.swift renamed to Sources/SimpleHTTP/Foundation/JSONEncoder+DataEncoder.swift

File renamed without changes.
File renamed without changes.
File renamed without changes.

Sources/Pinata/Foundation/URLRequest/URLRequest+Encode.swift renamed to Sources/SimpleHTTP/Foundation/URLRequest/URLRequest+Encode.swift

File renamed without changes.

Sources/Pinata/Foundation/URLRequest/URLRequest+HTTPHeader.swift renamed to Sources/SimpleHTTP/Foundation/URLRequest/URLRequest+HTTPHeader.swift

File renamed without changes.

0 commit comments

Comments
 (0)