-
Notifications
You must be signed in to change notification settings - Fork 68
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 #656 from hernanmd/do_not_use_author_in_P13
Use empty author in SmalltalkCIPharo13
- Loading branch information
Showing
11 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
5 changes: 5 additions & 0 deletions
5
...tory/SmalltalkCI-Core.package/SCIMetacelloIgnorePackageLoaded.class/methodProperties.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,5 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
} } |
14 changes: 14 additions & 0 deletions
14
repository/SmalltalkCI-Core.package/SCIMetacelloIgnorePackageLoaded.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" : "SmalltalkCI-Core", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "SCIMetacelloIgnorePackageLoaded", | ||
"pools" : [ | ||
], | ||
"super" : "Notification", | ||
"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
3 changes: 3 additions & 0 deletions
3
...SmalltalkCI-Pharo-Core.package/IceMetacelloPharoPlatform.extension/instance/authorName.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 @@ | ||
*SmalltalkCI-Pharo-Core | ||
authorName: aString | ||
"Do nothing. Kept here for SmalltalkCI compatibilitu with older/other platforms" |
5 changes: 5 additions & 0 deletions
5
.../SmalltalkCI-Pharo-Core.package/IceMetacelloPharoPlatform.extension/methodProperties.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,5 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"authorName:" : "HernanMoralesDurand 28/8/2024 04:56" } } |
2 changes: 2 additions & 0 deletions
2
...sitory/SmalltalkCI-Pharo-Core.package/IceMetacelloPharoPlatform.extension/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,2 @@ | ||
{ | ||
"name" : "IceMetacelloPharoPlatform" } |
3 changes: 3 additions & 0 deletions
3
repository/SmalltalkCI-Pharo-Core.package/SmalltalkCIPharo13.class/class/ensureAuthor.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 @@ | ||
helpers | ||
ensureAuthor | ||
"Do nothing, as Author was removed in Pharo 13" |
6 changes: 6 additions & 0 deletions
6
repository/SmalltalkCI-Pharo-Core.package/SmalltalkCIPharo13.class/class/getAuthor.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 @@ | ||
helpers | ||
getAuthor | ||
"Answer a <String> representing an 'Author' in the image. | ||
Here we answer an empty string since Author support was removed in Pharo 13" | ||
|
||
^ '' |
3 changes: 3 additions & 0 deletions
3
repository/SmalltalkCI-Pharo-Core.package/SmalltalkCIPharo13.class/class/setAuthor.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 @@ | ||
helpers | ||
setAuthor: anAuthor | ||
"Do nothing. Author was removed in Pharo 13" |
5 changes: 5 additions & 0 deletions
5
...I-Pharo-Tests.package/SmalltalkCIPharoTest.class/instance/testAuthorIsEmptyFromPharo13.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 @@ | ||
tests | ||
testAuthorIsEmptyFromPharo13 | ||
|
||
SmalltalkCI platformClass = SmalltalkCIPharo13 | ||
ifTrue: [ self assertEmpty: SmalltalkCI platformClass getAuthor ] |