Skip to content

Commit

Permalink
Merge pull request #10363 from astares/10362-Cleanup-Monticello-exten…
Browse files Browse the repository at this point in the history
…sions-should-use-correct-casing--package-name

Fix Monticello extensions should use correct casing / package name
  • Loading branch information
MarcusDenker committed Nov 18, 2021
2 parents 040211a + 730f150 commit f1cf30e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Monticello/String.extension.st
@@ -1,6 +1,6 @@
Extension { #name : #String }

{ #category : #'*monticello' }
{ #category : #'*Monticello' }
String >> extractNumber [
^ ('0', self select: [:ea | ea isDigit]) asNumber
]
@@ -1,6 +1,6 @@
Extension { #name : #MCFileBasedRepository }

{ #category : #'*monticellofiletree-core' }
{ #category : #'*MonticelloFileTree-Core' }
MCFileBasedRepository >> packageDescriptionsFromReadableFileNames [
^ self readableFileNames
collect: [ :each |
Expand All @@ -23,7 +23,7 @@ MCFileBasedRepository >> packageDescriptionsFromReadableFileNames [
each} ] ]
]

{ #category : #'*monticellofiletree-core' }
{ #category : #'*MonticelloFileTree-Core' }
MCFileBasedRepository >> retrieveVersionsWithPackageNames: packageNames [
| packageDescriptions |
packageDescriptions := self packageDescriptionsFromReadableFileNames.
Expand Down
@@ -1,6 +1,6 @@
Extension { #name : #MCMethodDefinition }

{ #category : #'*monticellofiletree-core' }
{ #category : #'*MonticelloFileTree-Core' }
MCMethodDefinition >> setTimeStamp: aString [
^ timeStamp := aString
]
2 changes: 1 addition & 1 deletion src/MonticelloFileTree-Core/MCRepository.extension.st
@@ -1,6 +1,6 @@
Extension { #name : #MCRepository }

{ #category : #'*monticellofiletree-core' }
{ #category : #'*MonticelloFileTree-Core' }
MCRepository >> retrieveVersionsWithPackageNames: packageNames [
^ self readableFileNames
collect: [ :each |
Expand Down
@@ -1,6 +1,6 @@
Extension { #name : #FileReference }

{ #category : #'*monticellofiletree-filesystem-utilities' }
{ #category : #'*MonticelloFileTree-FileSystem-Utilities' }
FileReference >> fileTreeUtilityClass [
^ MCFileTreeFileSystemUtils
]
@@ -1,11 +1,11 @@
Extension { #name : #FileSystemDirectoryEntry }

{ #category : #'*monticellofiletree-filesystem-utilities' }
{ #category : #'*MonticelloFileTree-FileSystem-Utilities' }
FileSystemDirectoryEntry >> name [
^ self basename
]

{ #category : #'*monticellofiletree-filesystem-utilities' }
{ #category : #'*MonticelloFileTree-FileSystem-Utilities' }
FileSystemDirectoryEntry >> readStreamDo: aBlock [
^ reference readStreamDo: aBlock
]
2 changes: 1 addition & 1 deletion src/MonticelloGUI/MCLazyVersionInfo.extension.st
@@ -1,6 +1,6 @@
Extension { #name : #MCLazyVersionInfo }

{ #category : #'*monticellogui' }
{ #category : #'*MonticelloGUI' }
MCLazyVersionInfo >> loadAncestorsAndStepChildren [
"This code scans all the repositories to find the exact package version and reload the relevant info."

Expand Down

0 comments on commit f1cf30e

Please sign in to comment.