Skip to content

Commit

Permalink
Introduction of Pure-[Code|Diff|Analysis] package tags
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvc committed Nov 6, 2024
1 parent 4a7dec9 commit 1a56940
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitBlameLine.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Class {
'commit',
'path'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Analysis'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitCodeExamples.class.st
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Class {
#name : #PureGitCodeExamples,
#superclass : #Object,
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Code'
}
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitCodeRepository.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'srcDirectory'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Code'
}

{ #category : #initialization }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitDiffTool.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'diffArgs'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Diff'
}

{ #category : #operations }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitExtendedFileCommit.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Class {
'removedLines',
'modifiedLines'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Analysis'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitMethodVersions.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'method',
'versions'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Code'
}

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitPackage.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Class {
#classVars : [
'LoadedCommits'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Code'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitRepositoryStatistics.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'log'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Analysis'
}

{ #category : #private }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitTrackedFile.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Class {
'extendedCommits',
'versions'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Analysis'
}

{ #category : #operations }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitTrackedFileVersion.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
'commit',
'trackedFile'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Analysis'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitTrackedLine.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'line',
'positionInVersions'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Analysis'
}

{ #category : #constants }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitTrackedLineSequence.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'lines'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Analysis'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/UnifiedDiff.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Class {
'newFile',
'deletedFile'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Diff'
}

{ #category : #operations }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/UnifiedDiffChangeChunk.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Class {
'newCount',
'diffLines'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Diff'
}

{ #category : #operations }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/UnifiedDiffCollection.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'diffs'
],
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Diff'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/UnifiedDiffExamples.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #UnifiedDiffExamples,
#superclass : #Object,
#category : #'Iceberg-Git-CLI-Pure-Core'
#category : #'Iceberg-Git-CLI-Pure-Diff'
}

{ #category : #accessing }
Expand Down

0 comments on commit 1a56940

Please sign in to comment.