-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
src/BaselineOfSoup.package/BaselineOfSoup.class/instance/isGTImage.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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
testing | ||
isGTImage | ||
|
||
^ RPackageOrganizer default packageNames anySatisfy: [ :pn | pn beginsWith: 'Lepiter-' ]. | ||
Smalltalk globals at: #RPackageOrganizer ifPresent: [ :p | ^ p default packageNames anySatisfy: [ :pn | pn beginsWith: 'Lepiter-' ]]. | ||
Smalltalk globals at: #PackageOrganizer ifPresent: [ :p | ^ p default packageNames anySatisfy: [ :pn | pn beginsWith: 'Lepiter-' ]]. | ||
^ false. | ||
"Implementation note: used to check for GToolkit prefix, but P7 has a GToolkit-Examples package. Lepiter, OTOH, could only be loaded in a GT image" |
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 @@ | ||
SystemOrganization addCategory: #BaselineOfSoup! | ||
self packageOrganizer ensurePackage: #BaselineOfSoup withTags: #()! |