-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #268 from estebanlm/dev-0.4
first shot to plugins (and GitHub PR as test case)
- Loading branch information
Showing
161 changed files
with
803 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{ | ||
"separateMethodMetaAndSource" : false, | ||
"noMethodMetaData" : true, | ||
"useCypressPropertiesFile" : true | ||
} | ||
"separateMethodMetaAndSource" : false, | ||
"useCypressPropertiesFile" : true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
BaselineOfIceberg.package/BaselineOfIceberg.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
19 changes: 11 additions & 8 deletions
19
BaselineOfIceberg.package/BaselineOfIceberg.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
{ | ||
"commentStamp" : "", | ||
"super" : "BaselineOf", | ||
"category" : "BaselineOfIceberg", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "BaselineOfIceberg", | ||
"type" : "normal" | ||
} | ||
"pools" : [ | ||
], | ||
"super" : "BaselineOf", | ||
"type" : "normal" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
{ } | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"noMethodMetaData" : true, | ||
"separateMethodMetaAndSource" : false, | ||
"useCypressPropertiesFile" : true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
I represent an access point to the GitHub API. | ||
I provide different high level abstractions to interact with GitHub, following the speciphications you can find here: https://developer.github.com/v3/ |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubAPI.class/instance/credentials..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
credentials: anObject | ||
credentials := anObject |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubAPI.class/instance/credentials.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
credentials | ||
^ credentials |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
private requesting | ||
get: aString | ||
^ self withResponseValidationDo: [ | ||
(self newRequestTo: aString) | ||
get; | ||
response ] |
7 changes: 7 additions & 0 deletions
7
Iceberg-Plugin.package/IceGitHubAPI.class/instance/newRequestTo..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
private factory | ||
newRequestTo: aString | ||
^ ZnClient new | ||
username: self credentials username password: self credentials password; | ||
headerAt: 'Accept' put: 'application/vnd.github.v3+json'; | ||
url: 'https://api.github.com/', aString; | ||
yourself |
7 changes: 7 additions & 0 deletions
7
Iceberg-Plugin.package/IceGitHubAPI.class/instance/post.with..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
private requesting | ||
post: aString with: aBlock | ||
^ self withResponseValidationDo: [ | ||
(self newRequestTo: aString) | ||
in: aBlock; | ||
post; | ||
response ] |
8 changes: 8 additions & 0 deletions
8
Iceberg-Plugin.package/IceGitHubAPI.class/instance/postPullRequestTo.project.data..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
requesting | ||
postPullRequestTo: owner project: projectName data: aDictionary | ||
^ self | ||
post: 'repos/', owner, '/', projectName, '/pulls' | ||
with: [ :client | | ||
client | ||
entity: (ZnEntity text: (STON toJsonString: aDictionary)); | ||
contentType: ZnMimeType applicationJson ] |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubAPI.class/instance/requestBranchesFrom.project..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
requesting | ||
requestBranchesFrom: owner project: projectName | ||
^ self get: 'repos/', owner,'/', projectName, '/branches' |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubAPI.class/instance/requestRepositoryFrom.project..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
requesting | ||
requestRepositoryFrom: owner project: projectName | ||
^ self get: 'repos/', owner,'/', projectName |
8 changes: 8 additions & 0 deletions
8
Iceberg-Plugin.package/IceGitHubAPI.class/instance/withResponseValidationDo..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
private requesting | ||
withResponseValidationDo: aBlock | ||
| response | | ||
|
||
response := aBlock value. | ||
response isSuccess | ||
ifFalse: [ IceGitHubError signalFor: response ]. | ||
^ response contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "Iceberg-Plugin-GitHub", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "<historical>", | ||
"instvars" : [ | ||
"credentials" ], | ||
"name" : "IceGitHubAPI", | ||
"pools" : [ | ||
], | ||
"super" : "Object", | ||
"type" : "normal" } |
1 change: 1 addition & 0 deletions
1
Iceberg-Plugin.package/IceGitHubBadCredentialsError.class/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
I'm an error that happens when credentials are bad. |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubBadCredentialsError.class/class/isAppropriateFor..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
testing | ||
isAppropriateFor: aResponse | ||
^ aResponse status = 401 |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubBadCredentialsError.class/instance/messageBody.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
messageBody | ||
^ 'Credentials provided are wrong' |
14 changes: 14 additions & 0 deletions
14
Iceberg-Plugin.package/IceGitHubBadCredentialsError.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "Iceberg-Plugin-GitHub", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "<historical>", | ||
"instvars" : [ | ||
], | ||
"name" : "IceGitHubBadCredentialsError", | ||
"pools" : [ | ||
], | ||
"super" : "IceGitHubError", | ||
"type" : "normal" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
I'm an error that happens when something fails when performing a GitHub action. |
5 changes: 5 additions & 0 deletions
5
Iceberg-Plugin.package/IceGitHubError.class/class/errorClassFor..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
private | ||
errorClassFor: aResponse | ||
^ self allSubclasses | ||
detect: [ :each | each isAppropriateFor: aResponse ] | ||
ifNone: [ self ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
instance creation | ||
for: aResponse | ||
^ (self errorClassFor: aResponse) new | ||
response: aResponse; | ||
yourself |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubError.class/class/isAppropriateFor..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
testing | ||
isAppropriateFor: aResponse | ||
^ false |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubError.class/class/signalFor..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
instance creation | ||
signalFor: aResponse | ||
^ (self for: aResponse) signal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
code | ||
^ self response status |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubError.class/instance/contents.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
contents | ||
^ self response contents |
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin.package/IceGitHubError.class/instance/customError..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
private | ||
customError: aDictionary | ||
^ aDictionary at: #message | ||
|
6 changes: 6 additions & 0 deletions
6
Iceberg-Plugin.package/IceGitHubError.class/instance/errorToString..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
private | ||
errorToString: aDictionary | ||
(aDictionary at: #code) = 'custom' ifTrue: [ ^ self customError: aDictionary ]. | ||
(aDictionary at: #code) = 'invalid' ifTrue: [ ^ self invalidError: aDictionary ]. | ||
|
||
^ self unknownError: aDictionary |
5 changes: 5 additions & 0 deletions
5
Iceberg-Plugin.package/IceGitHubError.class/instance/invalidError..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
private | ||
invalidError: aDictionary | ||
^ 'Invalid field: ', (aDictionary at: #field) | ||
|
||
|
4 changes: 4 additions & 0 deletions
4
Iceberg-Plugin.package/IceGitHubError.class/instance/jsonContents.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
jsonContents | ||
^ jsonContents ifNil: [ jsonContents := STON fromString: self contents ] | ||
|
8 changes: 8 additions & 0 deletions
8
Iceberg-Plugin.package/IceGitHubError.class/instance/messageBody.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
accessing | ||
messageBody | ||
| errors | | ||
errors := self jsonContents at: #errors ifAbsent: [ ^ '' ]. | ||
^ String streamContents: [ :stream | | ||
errors | ||
do: [ :each | stream << (self errorToString: each) ] | ||
separatedBy: [ stream cr ] ]. |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubError.class/instance/messageText.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
messageText | ||
^ self jsonContents at: #message |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubError.class/instance/response..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
response: anObject | ||
response := anObject |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubError.class/instance/response.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
response | ||
^ response |
6 changes: 6 additions & 0 deletions
6
Iceberg-Plugin.package/IceGitHubError.class/instance/unknownError..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
private | ||
unknownError: aDictionary | ||
^ String streamContents: [ :stream | | ||
(aDictionary associations sorted: [ :a :b | a key < b key ]) | ||
do: [ :each | stream << each key << ': ' << each value ] | ||
separatedBy: [ stream << ', ' ] ] |
15 changes: 15 additions & 0 deletions
15
Iceberg-Plugin.package/IceGitHubError.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"category" : "Iceberg-Plugin-GitHub", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "EstebanLorenzano 2/1/2017 17:15", | ||
"instvars" : [ | ||
"response", | ||
"jsonContents" ], | ||
"name" : "IceGitHubError", | ||
"pools" : [ | ||
], | ||
"super" : "Error", | ||
"type" : "normal" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
I'm an error that happens when something went wrong on GitHub API operations. |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubGenericError.class/class/isAppropriateFor..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
testing | ||
isAppropriateFor: aResponse | ||
^ aResponse status = 422 |
14 changes: 14 additions & 0 deletions
14
Iceberg-Plugin.package/IceGitHubGenericError.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "Iceberg-Plugin-GitHub", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "<historical>", | ||
"instvars" : [ | ||
], | ||
"name" : "IceGitHubGenericError", | ||
"pools" : [ | ||
], | ||
"super" : "IceGitHubError", | ||
"type" : "normal" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
I am a pull request. | ||
I can be sent using ==#sendWithCredentials:== protocol. |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/baseBranchName..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
baseBranchName: anObject | ||
baseBranchName := anObject |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/baseBranchName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
baseBranchName | ||
^ baseBranchName |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/baseRemote..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
baseRemote: anObject | ||
baseRemote := anObject |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/baseRemote.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
baseRemote | ||
^ baseRemote |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/body..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
body: anObject | ||
body := anObject |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/body.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
body | ||
^ body |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/credentials..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
credentials: anObject | ||
credentials := anObject |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/credentials.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
credentials | ||
^ credentials |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/headBranchName..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
headBranchName: anObject | ||
headBranchName := anObject |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/headBranchName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
headBranchName | ||
^ headBranchName |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/headRemote..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
headRemote: anObject | ||
headRemote := anObject |
3 changes: 3 additions & 0 deletions
3
Iceberg-Plugin.package/IceGitHubPullRequest.class/instance/headRemote.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
headRemote | ||
^ headRemote |
Oops, something went wrong.