Sha256: 174cb0a75b21f5979f078854a3ce9d50bff96e0308916748126c7cc7c464ed19

Contents?: true

Size: 945 Bytes

Versions: 3

Compression:

Stored size: 945 Bytes

Contents

doit
Tool subclass: 'VersionReport'
	instVarNames: #()
	classVars: #()
	classInstVars: #()
	poolDictionaries: #()
	inDictionary: WebTools
	options: #()

%

! Remove existing behavior from VersionReport
doit
VersionReport removeAllMethods.
VersionReport class removeAllMethods.
%
! ------------------- Class methods for VersionReport
category: 'other'
set compile_env: 0
classmethod: VersionReport
description

	^'Information about the Stone and Gem processes and their host(s)'.
%
category: 'other'
set compile_env: 0
classmethod: VersionReport
displayName

	^'Version Report'.
%
category: 'other'
set compile_env: 0
classmethod: VersionReport
sortOrder

	^1.
%
! ------------------- Instance methods for VersionReport
category: 'other'
set compile_env: 0
method: VersionReport
json

	^Dictionary new
		at: 'stone' put: System stoneVersionReport;
		at: 'gem' put: System gemVersionReport;
		yourself.
%
doit
VersionReport category: 'WebTools'
%

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
maglev-webtools-1.0.2 public/src/VersionReport.gs
maglev-webtools-1.0.1 public/src/VersionReport.gs
maglev-webtools-1.0 public/src/VersionReport.gs