Skip to content

Commit

Permalink
Move version initialization to a Pharo package
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Sep 19, 2023
1 parent 5d705f8 commit 2819012
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ LaunchpadTCPCommandServerOption class >> for: aCommand [
^ self new initializeFor: aCommand
]

{ #category : #'class initialization' }
LaunchpadTCPCommandServerOption class >> initialize [

<ignoreForCoverage>
LaunchpadRootCommand version: ( VersionFromRepositoryResolver new valueFor: #BaselineOfLaunchpad )
]

{ #category : #testing }
LaunchpadTCPCommandServerOption class >> isExtendedStartingOption [

Expand Down
7 changes: 0 additions & 7 deletions source/Launchpad-Commands/LaunchpadRootCommand.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@ LaunchpadRootCommand class >> commandName [
^ 'launchpad'
]

{ #category : #initialization }
LaunchpadRootCommand class >> initialize [

<ignoreForCoverage>
self version: ( VersionFromRepositoryResolver new valueFor: #BaselineOfLaunchpad )
]

{ #category : #accessing }
LaunchpadRootCommand class >> summary [

Expand Down

0 comments on commit 2819012

Please sign in to comment.