Skip to content

Commit b71565a

Browse files
authored
Merge pull request #4 from pdebruic/master
add GemStone baseline info. Loading PackageManifest stub class
2 parents cb2f6cf + 87e70a6 commit b71565a

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

src/.filetree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{"packageExtension" : ".package",
2+
"propertyFileExtension" : ".json" }

src/BaselineOfMaterialColors.package/BaselineOfMaterialColors.class/instance/baseline..st

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@ baseline: spec
33
<baseline>
44
spec
55
for: #common
6-
do: [ spec
6+
do: [
7+
"Packages"
8+
spec
79
package: 'Material-Design-Colors';
810
package: 'Material-Design-Tests-Colors' with: [ spec requires: #('Material-Design-Colors') ].
11+
12+
"Groups"
913
spec
1014
group: 'Core' with: #('Material-Design-Colors');
1115
group: 'all' with: #('default');
12-
group: 'Tests' with: #('Material-Design-Tests-Colors') ]
16+
group: 'Tests' with: #('Material-Design-Tests-Colors') ].
17+
self gemStone: spec
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
baseline
2+
gemStone: spec
3+
spec
4+
for: #gemstone
5+
do: [ spec
6+
package: 'PackageManifest' with: [ spec repository: 'http://smalltalkhub.com/mc/pdebruic/PackageManifest/main' ];
7+
package: 'Material-Design-Colors' with: [ spec requires: 'PackageManifest' ] ]

0 commit comments

Comments
 (0)