Skip to content

Commit

Permalink
Move protocol chooser in Core as Steph suggested
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed May 27, 2024
1 parent e4931b4 commit 328bd05
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions src/BaselineOfNewTools/BaselineOfNewTools.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ BaselineOfNewTools >> baseline: spec [

spec
package: 'NewTools-Core';
package: 'NewTools-Core-Tests' with: [ spec requires: #('NewTools-Core') ];
package: 'NewTools-Morphic';
package: 'NewTools-Gtk';
"Basic tools (inherited from Spec)"
Expand Down Expand Up @@ -103,11 +104,10 @@ BaselineOfNewTools >> baseline: spec [
package: 'NewTools-SettingsBrowser' with: [ spec requires: #('ColorPicker') ];
package: 'NewTools-SettingsBrowser-Tests' with: [ spec requires: #('NewTools-SettingsBrowser') ];

package: 'NewTools-Utils' with: [ spec requires: #('NewTools-FileBrowser') ];
package: 'NewTools-Utils-Tests' with: [ spec requires: #('NewTools-Utils') ].
package: 'NewTools-Utils' with: [ spec requires: #('NewTools-FileBrowser') ].

spec
group: 'Core' with: #( 'NewTools-Core' 'NewTools-Morphic' );
group: 'Core' with: #( 'NewTools-Core' 'NewTools-Core-Tests' 'NewTools-Morphic' );
group: 'Playground' with: #( 'Core' 'NewTools-Playground' 'NewTools-Playground-Tests' );
group: 'Inspector' with: #( 'Core' 'NewTools-Inspector' 'NewTools-Inspector-Tests' );
group: 'Debugger' with: #(
Expand All @@ -125,7 +125,6 @@ BaselineOfNewTools >> baseline: spec [
'NewTools-Debugger-Fuel'
'NewTools-Debugger-Fuel-Tests'
'NewTools-Utils'
'NewTools-Utils-Tests'
'NewTools-DebugPointsBrowser'
'NewTools-ObjectCentricDebugPoints' );
group: 'Spotter' with: #(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Class {
#instVars : [
'presenter'
],
#category : 'NewTools-Utils-Tests-ProtocolChooser',
#package : 'NewTools-Utils-Tests',
#category : 'NewTools-Core-Tests-ProtocolChooser',
#package : 'NewTools-Core-Tests',
#tag : 'ProtocolChooser'
}

Expand Down
1 change: 1 addition & 0 deletions src/NewTools-Core-Tests/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : 'NewTools-Core-Tests' }
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Class {
'protocolNameField',
'concernedClass'
],
#category : 'NewTools-Utils-ProtocolChooser',
#package : 'NewTools-Utils',
#category : 'NewTools-Core-ProtocolChooser',
#package : 'NewTools-Core',
#tag : 'ProtocolChooser'
}

Expand Down
1 change: 0 additions & 1 deletion src/NewTools-Utils-Tests/package.st

This file was deleted.

0 comments on commit 328bd05

Please sign in to comment.