-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from OpenSmock/dev-refactoringCoordinates
Move classes into OpenSmock
- Loading branch information
Showing
9 changed files
with
599 additions
and
593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,62 @@ | ||
Class { | ||
#name : #BaselineOfGeoTools, | ||
#superclass : #BaselineOf, | ||
#category : #BaselineOfGeoTools | ||
} | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> baseline: spec [ | ||
|
||
<baseline> | ||
"Common basline for all Pharo versions" | ||
spec for: #common do: [ self baselineForCommon: spec ] | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> baselineForCommon: spec [ | ||
<baseline> | ||
|
||
spec preLoadDoIt: #'preload:package:'. | ||
spec postLoadDoIt: #'postload:package:'. | ||
|
||
"Dependencies" | ||
self coreDependencies: spec. | ||
|
||
"Packages" | ||
self corePackages: spec. | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> coreDependencies: spec [ | ||
|
||
spec | ||
baseline: 'Units' | ||
with: [ spec repository: 'github://zweidenker/Units' ]. | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> corePackages: spec [ | ||
|
||
spec | ||
package: 'GeoTools' with: [ spec requires: #('Units') ]. | ||
|
||
"tests packages" | ||
spec | ||
package: 'GeoTools-Tests' with: [ spec requires: #( 'GeoTools' ) ]. | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> postload: loader package: packageSpec [ | ||
|
||
"do nothing" | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> preload: loader package: packageSpec [ | ||
|
||
"do nothing" | ||
] | ||
Class { | ||
#name : #BaselineOfGeoTools, | ||
#superclass : #BaselineOf, | ||
#category : #BaselineOfGeoTools | ||
} | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> baseline: spec [ | ||
|
||
<baseline> | ||
"Common basline for all Pharo versions" | ||
spec for: #common do: [ self baselineForCommon: spec ] | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> baselineForCommon: spec [ | ||
<baseline> | ||
|
||
spec preLoadDoIt: #'preload:package:'. | ||
spec postLoadDoIt: #'postload:package:'. | ||
|
||
"Dependencies" | ||
self coreDependencies: spec. | ||
|
||
"Packages" | ||
self corePackages: spec. | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> coreDependencies: spec [ | ||
|
||
spec | ||
baseline: 'OpenSmock' | ||
with: [ spec loads: #('Core'); repository: 'github://OpenSmock/OpenSmock' ]. | ||
|
||
spec | ||
baseline: 'Units' | ||
with: [ spec repository: 'github://zweidenker/Units' ]. | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> corePackages: spec [ | ||
|
||
spec | ||
package: 'GeoTools' with: [ spec requires: #('Units') ]. | ||
|
||
"tests packages" | ||
spec | ||
package: 'GeoTools-Tests' with: [ spec requires: #( 'GeoTools' ) ]. | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> postload: loader package: packageSpec [ | ||
|
||
"do nothing" | ||
] | ||
|
||
{ #category : #baselines } | ||
BaselineOfGeoTools >> preload: loader package: packageSpec [ | ||
|
||
"do nothing" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Package { #name : #BaselineOfGeoTools } | ||
Package { #name : #BaselineOfGeoTools } |
Oops, something went wrong.