Compare commits

..

9 Commits

4 changed files with 20 additions and 7 deletions

View File

@ -16,11 +16,11 @@ BaselineOfGrafoscopio >> baseline: spec [
self grafoscopioUtils: spec.
spec
package: 'Spec-Glamour'
with: [ spec repository: 'http://smalltalkhub.com/mc/jfabry/Playgroudn/main/' ].
with: [ spec repository: 'http://smalltalkhub.com/mc/jfabry/Playground/main/' ].
"Packages"
spec
package: 'Grafoscopio' with: [ spec requires: #('Grafoscopio-Utils' 'Spec-Glamour' ) ]
package: 'Grafoscopio' with: [ spec requires: #('Grafoscopio-Utils' 'Spec-Glamour') ]
]
]
@ -46,8 +46,9 @@ BaselineOfGrafoscopio >> grafoscopioUtils: spec [
localRepo := 'gitlocal://', location fullName.
Metacello new
repository: localRepo;
baseline: 'Grafoscopio-Utils'
baseline: 'GrafoscopioUtils';
load.
spec baseline: 'Grafoscopio-Utils' with: [ spec repository: localRepo ]
spec baseline: 'GrafoscopioUtils' with: [ spec repository: localRepo ].
spec package: 'Grafoscopio-Utils' with: [ spec repository: localRepo ].
]

View File

@ -17,6 +17,7 @@ Class {
],
#classVars : [
'dockingBar',
'docsCollection',
'recentNotebooks'
],
#classInstVars : [
@ -24,7 +25,7 @@ Class {
'recentNotebooks',
'helpMenu'
],
#category : 'Grafoscopio-UI'
#category : #'Grafoscopio-UI'
}
{ #category : #adding }
@ -49,6 +50,11 @@ GfUIHelpers class >> addToHelpMenu: aGrafoscopioNotebook [
self updateUI
]
{ #category : #accessing }
GfUIHelpers class >> docsCollection [
^ docsCollection ifNil: [docsCollection := OrderedCollection new ]
]
{ #category : #updating }
GfUIHelpers class >> installDataviz [
"I install the Dataviz package.

View File

@ -4,7 +4,7 @@ I define the documentation for the Grafoscopio package.
Class {
#name : #GrafoscopioDocs,
#superclass : #GrafoscopioDocumentation,
#category : 'Grafoscopio'
#category : #Grafoscopio
}
{ #category : #operation }
@ -63,4 +63,5 @@ GrafoscopioDocs >> initialize [
addDocument: 'Docs/En/Books/DataActivism/techniques-for-datactivism.ston';
addDocument: 'Docs/En/dev-notes.ston';
addDocument: 'Docs/En/Books/SpecIUFramework/spec-ui-framework.ston'.
GfUIHelpers docsCollection add: self.
]

View File

@ -4,7 +4,7 @@ I store metadata for this package. These meta data are used by other tools such
Class {
#name : #ManifestGrafoscopio,
#superclass : #PackageManifest,
#category : 'Grafoscopio'
#category : #Grafoscopio
}
{ #category : #'code-critics' }
@ -37,6 +37,11 @@ ManifestGrafoscopio class >> ruleRBEqualsTrueRuleV1FalsePositive [
^ #(#(#(#RGMethodDefinition #(#'GrafoscopioDocumentation class' #listOutdated #true)) #'2016-10-09T10:16:31.841951-05:00') #(#(#RGMethodDefinition #(#'GrafoscopioDocumentation class' #listOutdatedDocsIn: #true)) #'2017-04-05T17:50:59.032741-05:00') )
]
{ #category : #'code-critics' }
ManifestGrafoscopio class >> ruleRBGlobalVariablesUsageV1FalsePositive [
^ #(#(#(#RGClassDefinition #(#GrafoscopioNotebook)) #'2020-10-08T12:09:43.871678-05:00') )
]
{ #category : #'code-critics' }
ManifestGrafoscopio class >> ruleRBLongMethodsRuleV1FalsePositive [
^ #(#(#(#RGMethodDefinition #(#GrafoscopioNotebook #topBar #false)) #'2016-12-17T18:51:33.99062-05:00') #(#(#RGMethodDefinition #(#GrafoscopioNotebook #notebookSubMenu #false)) #'2017-02-02T11:43:53.106456-05:00') )