Skip to content

Commit

Permalink
add BaselineOfMisc
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-krivanek committed Oct 19, 2019
1 parent 8e58a31 commit d655065
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 19 deletions.
20 changes: 1 addition & 19 deletions src/BaselineOfIDE/BaselineOfIDE.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,6 @@ BaselineOfIDE >> baseline: spec [
spec package: 'Ring-Definitions-Tests-Containers'.
spec package: 'Ring-Definitions-Tests-Core'.

spec package: 'System-Serial Port'.

spec package: 'Zodiac-Tests'.
spec package: 'Zodiac-Extra'.
spec package: 'Zinc-Zodiac'.
Expand Down Expand Up @@ -261,12 +259,11 @@ BaselineOfIDE >> baseline: spec [
spec package: 'OSWindow-SDL2'.
spec package: 'OSWindow-VM'.

spec package: 'System-CommandLine-TextSupport'.
spec package: 'GeneralRules'.
spec package: 'GeneralRules-Tests'.
spec package: 'FuzzyMatcher'.
spec package: 'STON-Text support'.

spec baseline: 'Misc' with: [ spec repository: repository ].
spec baseline: 'GeneralTests' with: [ spec repository: repository ].

spec baseline: 'SortFunctions' with: [ spec repository: repository ].
Expand All @@ -282,7 +279,6 @@ BaselineOfIDE >> baseline: spec [
spec package: 'Compression-Tests'.
spec package: 'FileSystem-Tests-Disk'.
spec package: 'FileSystem-Tests-Attributes'.
spec package: 'Files-Prompt'.
spec package: 'Files-Tests'.
spec package: 'FuzzyMatcher-Tests'.
spec package: 'GT-Tests-Debugger'.
Expand All @@ -297,9 +293,7 @@ BaselineOfIDE >> baseline: spec [
spec package: 'Multilingual-Tests'.
spec package: 'OSWindow-SDL2-Examples'.
spec package: 'OSWindow-Tests'.
spec package: 'PerformMessageCommandLineHandler'.
spec package: 'Pharo-Help'.
spec package: 'PharoDocComment'.
spec package: 'Polymorph-Widgets-Rules'.
spec package: 'Random-Tests'.
spec package: 'Refactoring-Help'.
Expand Down Expand Up @@ -350,17 +344,6 @@ spec group: 'Mandatory-Group' with: #(
'Gofer-Tests' "required by EpiceaTests Metacello-TestsMC, depends on 'Metacello-Tests-Group', cleanup needed?"
).

spec group: 'Optional-Group' with: #(
'Athens' "dependency"
'PharoDocComment' "standalone"
'STON-Text support' "standalone?"
'System-CommandLine-TextSupport' "standalone?"
'System-Serial Port' "standalone?"
'PerformMessageCommandLineHandler' "standalone"
'Files-Prompt'
).

spec group: 'Epicea-Core-Group' with: #(
'Athens' "dependency of Hiedra"
'Ombu'
Expand Down Expand Up @@ -679,7 +662,6 @@ spec group: #default with: #(
'Refactoring-Group'
'Catalog-Group'
'Epicea-Core-Group'
'Optional-Group'
'GeneralTests'
'SortFunctions'
'ReferenceFinder'
Expand Down
18 changes: 18 additions & 0 deletions src/BaselineOfMisc/BaselineOfMisc.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Class {
#name : #BaselineOfMisc,
#superclass : #BaselineOf,
#category : #BaselineOfMisc
}

{ #category : #baselines }
BaselineOfMisc >> baseline: spec [
<baseline>
spec for: #'common' do: [
spec
package: 'PharoDocComment';
package: 'STON-Text support';
package: 'System-CommandLine-TextSupport';
package: 'System-Serial Port';
package: 'PerformMessageCommandLineHandler';
package: 'Files-Prompt'. ]
]
1 change: 1 addition & 0 deletions src/BaselineOfMisc/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #BaselineOfMisc }

0 comments on commit d655065

Please sign in to comment.