Skip to content

Commit b5d2d0e

Browse files
committed
Rename to ConvAPI
1 parent 1e69638 commit b5d2d0e

File tree

20 files changed

+169
-167
lines changed

20 files changed

+169
-167
lines changed

.swiftlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ trailing_whitespace:
4141

4242
excluded:
4343
- Pods
44-
- ConveyPITests
44+
- ConvAPITests

ConveyPI.podspec renamed to ConvAPI.podspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
Pod::Spec.new do |s|
22

3-
s.name = "ConveyPI"
3+
s.name = "ConvAPI"
44
s.version = "2.0.0"
55
s.summary = "Easy HTTP requests against REST-style APIs with codable JSON bodies"
66
s.description = <<-DESC
7-
ConveyPI allows easy HTTP requests in Swift against REST-style APIs with JSON formatting by supporting codable bodies and promised responses.
7+
ConvAPI allows easy HTTP requests in Swift against REST-style APIs with JSON formatting by supporting codable bodies and promised responses.
88
DESC
99

10-
s.homepage = "https://github.com/ChaosCoder/ConveyPI"
10+
s.homepage = "https://github.com/ChaosCoder/ConvAPI"
1111
s.license = { :type => 'MIT', :file => 'LICENSE.md'}
1212
s.author = { "Andreas Ganske" => "[email protected]" }
1313
s.ios.deployment_target = "10.0"
14-
s.source = { :git => "https://github.com/ChaosCoder/ConveyPI.git", :tag => s.version }
15-
s.source_files = "ConveyPI", "ConveyPI/**/*.swift"
14+
s.source = { :git => "https://github.com/ChaosCoder/ConvAPI.git", :tag => s.version }
15+
s.source_files = "ConvAPI", "ConvAPI/**/*.swift"
1616
s.swift_version = "5.0"
1717
s.dependency "PromiseKit", "~> 6.8"
1818

ConveyPI.xcodeproj/project.pbxproj renamed to ConvAPI.xcodeproj/project.pbxproj

Lines changed: 77 additions & 78 deletions
Large diffs are not rendered by default.

ConveyPI.xcworkspace/contents.xcworkspacedata renamed to ConvAPI.xcworkspace/contents.xcworkspacedata

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ConveyPI.xcworkspace/xcshareddata/xcschemes/ConveyPI.xcscheme renamed to ConvAPI.xcworkspace/xcshareddata/xcschemes/ConvAPI.xcscheme

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
1717
BlueprintIdentifier = "7DDDFB1520839BD700F3426C"
18-
BuildableName = "ConveyPI.framework"
19-
BlueprintName = "ConveyPI"
20-
ReferencedContainer = "container:ConveyPI.xcodeproj">
18+
BuildableName = "ConvAPI.framework"
19+
BlueprintName = "ConvAPI"
20+
ReferencedContainer = "container:ConvAPI.xcodeproj">
2121
</BuildableReference>
2222
</BuildActionEntry>
2323
</BuildActionEntries>
@@ -31,9 +31,9 @@
3131
<BuildableReference
3232
BuildableIdentifier = "primary"
3333
BlueprintIdentifier = "7DDDFB1520839BD700F3426C"
34-
BuildableName = "ConveyPI.framework"
35-
BlueprintName = "ConveyPI"
36-
ReferencedContainer = "container:ConveyPI.xcodeproj">
34+
BuildableName = "ConvAPI.framework"
35+
BlueprintName = "ConvAPI"
36+
ReferencedContainer = "container:ConvAPI.xcodeproj">
3737
</BuildableReference>
3838
</MacroExpansion>
3939
<Testables>
@@ -42,9 +42,9 @@
4242
<BuildableReference
4343
BuildableIdentifier = "primary"
4444
BlueprintIdentifier = "7DDDFB1E20839BD700F3426C"
45-
BuildableName = "ConveyPITests.xctest"
46-
BlueprintName = "ConveyPITests"
47-
ReferencedContainer = "container:ConveyPI.xcodeproj">
45+
BuildableName = "ConvAPITests.xctest"
46+
BlueprintName = "ConvAPITests"
47+
ReferencedContainer = "container:ConvAPI.xcodeproj">
4848
</BuildableReference>
4949
</TestableReference>
5050
</Testables>
@@ -63,9 +63,9 @@
6363
<BuildableReference
6464
BuildableIdentifier = "primary"
6565
BlueprintIdentifier = "7DDDFB1520839BD700F3426C"
66-
BuildableName = "ConveyPI.framework"
67-
BlueprintName = "ConveyPI"
68-
ReferencedContainer = "container:ConveyPI.xcodeproj">
66+
BuildableName = "ConvAPI.framework"
67+
BlueprintName = "ConvAPI"
68+
ReferencedContainer = "container:ConvAPI.xcodeproj">
6969
</BuildableReference>
7070
</MacroExpansion>
7171
</LaunchAction>
@@ -79,9 +79,9 @@
7979
<BuildableReference
8080
BuildableIdentifier = "primary"
8181
BlueprintIdentifier = "7DDDFB1520839BD700F3426C"
82-
BuildableName = "ConveyPI.framework"
83-
BlueprintName = "ConveyPI"
84-
ReferencedContainer = "container:ConveyPI.xcodeproj">
82+
BuildableName = "ConvAPI.framework"
83+
BlueprintName = "ConvAPI"
84+
ReferencedContainer = "container:ConvAPI.xcodeproj">
8585
</BuildableReference>
8686
</MacroExpansion>
8787
</ProfileAction>

ConveyPI/API.swift renamed to ConvAPI/API.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// API.swift
3-
// ConveyPI
3+
// ConvAPI
44
//
55
// Created by Andreas Ganske on 19.04.18.
66
// Copyright © 2018 Andreas Ganske. All rights reserved.

ConveyPI/APIMethod.swift renamed to ConvAPI/APIMethod.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// APIMethod.swift
3-
// ConveyPI
3+
// ConvAPI
44
//
55
// Created by Andreas Ganske on 19.04.18.
66
// Copyright © 2018 Andreas Ganske. All rights reserved.

ConveyPI/AsynchronousRequester.swift renamed to ConvAPI/AsynchronousRequester.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// AsynchronousRequester.swift
3-
// ConveyPI
3+
// ConvAPI
44
//
55
// Created by Andreas Ganske on 19.04.18.
66
// Copyright © 2018 Andreas Ganske. All rights reserved.

ConvAPI/ConvAPI.h

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// ConvAPI.h
3+
// ConvAPI
4+
//
5+
// Created by Andreas Ganske on 15.04.18.
6+
// Copyright © 2018 Andreas Ganske. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
//! Project version number for ConvAPI.
12+
FOUNDATION_EXPORT double ConvAPIVersionNumber;
13+
14+
//! Project version string for ConvAPI.
15+
FOUNDATION_EXPORT const unsigned char ConvAPIVersionString[];
16+
17+
// In this header, you should import all the public headers of your framework using statements like #import <ConvAPI/PublicHeader.h>
18+
19+

0 commit comments

Comments
 (0)