Skip to content

Commit

Permalink
add BaselineOfRefactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-krivanek committed Oct 19, 2019
1 parent e63e491 commit cf94564
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
13 changes: 2 additions & 11 deletions src/BaselineOfIDE/BaselineOfIDE.class.st
Expand Up @@ -382,10 +382,7 @@ BaselineOfIDE >> baseline: spec [

spec package: 'ReferenceFinder-Core'.

spec package: 'Refactoring2-Core'.
spec package: 'Refactoring2-Transformations'.
spec package: 'Refactoring2-Transformations-Tests'.

spec baseline: 'Refactoring' with: [ spec repository: repository ].
spec baseline: 'ClassParser' with: [ spec repository: repository ].

spec baseline: 'Calypso' with: [
Expand Down Expand Up @@ -790,12 +787,6 @@ spec group: 'Kernel-Tests-Group' with: #(
'Text-Tests' "required by Multilingual-Tests"
).

spec group: 'Refactoring2-Group' with: #(
'Refactoring2-Core'
'Refactoring2-Transformations'
'Refactoring2-Transformations-Tests'
).

spec group: 'GT&QA-Group' with: #(
'GeneralRules' "depends on QA, needs cleanup"
'GeneralRules-Tests' "depends on QA, needs cleanup"
Expand Down Expand Up @@ -860,7 +851,7 @@ spec group: #default with: #(
'Traits'
'Slot'
'Refactoring2-Group'
'Refactoring'
'ClassParser'
'Calypso'
Expand Down
19 changes: 19 additions & 0 deletions src/BaselineOfRefactoring/BaselineOfRefactoring.class.st
@@ -0,0 +1,19 @@
Class {
#name : #BaselineOfRefactoring,
#superclass : #BaselineOf,
#category : #BaselineOfRefactoring
}

{ #category : #baselines }
BaselineOfRefactoring >> baseline: spec [
<baseline>
spec for: #'common' do: [
spec
package: 'Refactoring2-Core';
package: 'Refactoring2-Transformations';
package: 'Refactoring2-Transformations-Tests'.
spec
group: 'Core' with: #('Refactoring2-Core' 'Refactoring2-Transformations');
group: 'Tests' with: #('Refactoring2-Transformations-Tests');
group: 'default' with: #('Core' 'Tests') ]
]
1 change: 1 addition & 0 deletions src/BaselineOfRefactoring/package.st
@@ -0,0 +1 @@
Package { #name : #BaselineOfRefactoring }

0 comments on commit cf94564

Please sign in to comment.