Skip to content

Commit 45d2190

Browse files
committed
Issue #321: move TDSessionDescription to a separate package in GsDevKit_SuperDoit project so it can be conditionally loaded if needed (not needed when loading into a tODE image)
1 parent 26ebcb6 commit 45d2190

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+15
-1
lines changed

shared/gemstone/repos/GsDevKit_SuperDoit/rowan/src/BaselineOfGsDevKit_SuperDoit.package/BaselineOfGsDevKit_SuperDoit.class/instance/baseline..st

+8
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,11 @@ baseline: spec
99
package: 'GsDevKit-Tests' with: [ spec requires: #('GsDevKit-Core') ].
1010
spec
1111
group: 'default' with: #('GsDevKit-Tests') ].
12+
spec
13+
for: #'NeedsTDSessionDescription'
14+
do: [
15+
spec
16+
package: 'GsDevKit-TDSessionDescription'.
17+
spec
18+
group: 'default' with: #('GsDevKit-TDSessionDescription') ].
19+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
accessing
2+
customProjectAttributes
3+
projectAttributes := #().
4+
(Smalltalk classNamed: 'TDSessionDescription')
5+
ifNil: [ projectAttributes := #( #'NeedsTDSessionDescription' ) ].
6+
^ projectAttributes

shared/gemstone/repos/GsDevKit_SuperDoit/rowan/src/GsDevKit-Core.package/TDSessionDescription.class/properties.json shared/gemstone/repos/GsDevKit_SuperDoit/rowan/src/GsDevKit-TDSessionDescription.package/TDSessionDescription.class/properties.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"category" : "GsDevKit-Core",
2+
"category" : "GsDevKit-TDSessionDescription",
33
"classinstvars" : [
44
],
55
"classvars" : [

0 commit comments

Comments
 (0)