├── .filetree ├── .gitattributes ├── .github ├── scripts │ └── preLoading.st └── workflows │ └── tonel.yml ├── .gitignore ├── .project ├── .properties ├── .smalltalk.ston ├── .travis.yml ├── BaselineOfTonel.package ├── .filetree ├── BaselineOfTonel.class │ ├── README.md │ ├── instance │ │ ├── baseline..st │ │ └── ston..st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── LICENSE ├── MonticelloTonel-Compatibility.package ├── .filetree ├── String.extension │ ├── instance │ │ └── withInternalLineEndings.st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── MonticelloTonel-Core.package ├── .filetree ├── TonelCommentScanner.class │ ├── README.md │ ├── instance │ │ └── scan.st │ └── properties.json ├── TonelFileUtils.class │ ├── README.md │ ├── class │ │ ├── buildPathFrom..st │ │ ├── current.st │ │ ├── default.st │ │ ├── deleteAll..st │ │ ├── directoryExists..st │ │ ├── directoryFromPath..st │ │ ├── directoryFromPath.relativeTo..st │ │ ├── directoryName..st │ │ ├── directoryPathString..st │ │ ├── ensureDirectoryExists..st │ │ ├── ensureFilePathExists.relativeTo..st │ │ ├── fileName..st │ │ ├── filePathExists.relativeTo..st │ │ ├── install.st │ │ ├── parentDirectoryOf..st │ │ ├── pathNameDelimiter.st │ │ ├── readStreamFor.do..st │ │ ├── readStreamFor.in.do..st │ │ ├── resolvePath.in..st │ │ └── writeStreamFor.in.do..st │ └── properties.json ├── TonelParseError.class │ ├── README.md │ └── properties.json ├── TonelParser.class │ ├── README.md │ ├── class │ │ ├── on..st │ │ ├── parseStream..st │ │ └── parseString..st │ ├── instance │ │ ├── addPackageInfoTo.from..st │ │ ├── cleanSelector..st │ │ ├── comment.st │ │ ├── definitionForType..st │ │ ├── document.st │ │ ├── extractSelector..st │ │ ├── isSeparator..st │ │ ├── metadata.st │ │ ├── method.st │ │ ├── methodBody.st │ │ ├── methodDef.st │ │ ├── methodDefList.st │ │ ├── newClassDefinitionFrom..st │ │ ├── newMethodDefinitionFrom..st │ │ ├── newTraitDefinitionFrom..st │ │ ├── newTypeDefinitionFrom..st │ │ ├── removeComments..st │ │ ├── separator.st │ │ ├── start.st │ │ ├── stream..st │ │ ├── try..st │ │ ├── try.onFailure..st │ │ ├── try.onSuccess..st │ │ ├── try.onSuccess.onFailure..st │ │ ├── type.st │ │ ├── typeDef.st │ │ ├── untilExcluding..st │ │ ├── untilIncluding..st │ │ └── word..st │ └── properties.json ├── TonelReader.class │ ├── README.md │ ├── class │ │ ├── canReadFileNamed..st │ │ ├── definitionOrders.st │ │ ├── extension.st │ │ ├── forVersion..st │ │ ├── isAbstract.st │ │ └── on.fileName..st │ ├── instance │ │ ├── canBeLoaded..st │ │ ├── ensurePackagesAndTagsOfDefinitions..st │ │ ├── fileUtils.st │ │ ├── loadDefinitions.st │ │ ├── loadDependencies.st │ │ ├── loadPackage.st │ │ ├── loadVersionInfo.st │ │ ├── packageDirectory..st │ │ ├── packageDirectory.st │ │ ├── packageNameFromPackageDirectory.st │ │ └── parseTonelFile..st │ └── properties.json ├── TonelRepository.class │ ├── README.md │ ├── class │ │ ├── basicFromUrl..st │ │ ├── createRepositoryFromSpec..st │ │ ├── description.st │ │ ├── isAvailableFor..st │ │ ├── isFiletreeAlternateFormat..st │ │ └── urlSchemes.st │ ├── instance │ │ ├── allFileNamesForVersionNamed..st │ │ ├── asRepositorySpecFor..st │ │ ├── basicStoreVersion..st │ │ ├── description.st │ │ ├── fileDirectoryOn..st │ │ ├── fileUtils.st │ │ ├── filterFileNames.forVersionNamed..st │ │ ├── goferVersionFrom..st │ │ ├── loadAllFileNames.st │ │ ├── packageDescriptionFromPackageDirectory..st │ │ ├── packageDescriptionsFromReadableFileNames.st │ │ ├── readStreamForFileNamed.do..st │ │ ├── readableFileNames.st │ │ ├── readableFileReferences.st │ │ ├── versionFrom..st │ │ ├── versionInfoForPackageDirectory..st │ │ ├── versionInfoFromVersionNamed..st │ │ ├── versionNameFromFileName..st │ │ └── versionWithInfo.ifAbsent..st │ └── properties.json ├── TonelSTONWriter.class │ ├── README.md │ ├── instance │ │ ├── aliases..st │ │ ├── aliases.st │ │ ├── encodeMap..st │ │ ├── initialize.st │ │ ├── isSimpleSymbol..st │ │ ├── stonNameFor..st │ │ └── writeObject.do..st │ └── properties.json ├── TonelScanner.class │ ├── README.md │ ├── class │ │ ├── new.st │ │ └── on..st │ ├── instance │ │ ├── initializeStream..st │ │ ├── isEnter..st │ │ ├── isSeparator..st │ │ ├── removeFrom.enclosingStart.end..st │ │ ├── removeFrom.enclosingStart.end.clean..st │ │ └── scan.st │ └── properties.json ├── TonelShouldIgnore.class │ ├── README.md │ └── properties.json ├── TonelSourceScanner.class │ ├── README.md │ ├── instance │ │ ├── isStartingComment.st │ │ ├── isStartingLiteralArray.st │ │ ├── isStartingLiteralCharacter.st │ │ ├── isStartingString.st │ │ ├── prepareToScan.st │ │ ├── readNext.st │ │ ├── readUntil..st │ │ ├── readUntilTermination..st │ │ ├── scan.st │ │ ├── scanForBlock.st │ │ ├── scanForComment.st │ │ ├── scanForLiteralArray.st │ │ ├── scanForLiteralCharacter.st │ │ ├── scanForString.st │ │ └── scanNextChunk.st │ └── properties.json ├── TonelWriteError.class │ ├── README.md │ └── properties.json ├── TonelWriter.class │ ├── README.md │ ├── class │ │ ├── classLabel.st │ │ ├── defaultVersion.st │ │ ├── exportClass.on..st │ │ ├── extensionLabel.st │ │ ├── fileOut.on..st │ │ ├── forVersion..st │ │ ├── formatVersion.st │ │ ├── isAbstract.st │ │ ├── new.st │ │ ├── on..st │ │ ├── readerClass.st │ │ ├── sourceCodeOf..st │ │ └── traitLabel.st │ ├── instance │ │ ├── at.put.in..st │ │ ├── classNameFor.parent..st │ │ ├── commentOf..st │ │ ├── createDefaultOrganizationFrom..st │ │ ├── createDefaultOrganizationFromDefinition..st │ │ ├── directoryReference..st │ │ ├── directoryReference.st │ │ ├── exportClass.on..st │ │ ├── fileNameFor..st │ │ ├── fileUtils.st │ │ ├── isClass..st │ │ ├── isTrait..st │ │ ├── methodDefinitionOf..st │ │ ├── newLine.st │ │ ├── obtainPackageDir..st │ │ ├── packageDir.st │ │ ├── packageNameForMethodDefinition..st │ │ ├── selectorIsComplete.in..st │ │ ├── setPackageInfoOf.in..st │ │ ├── skipComment..st │ │ ├── skipSeparators..st │ │ ├── snapshot..st │ │ ├── splitMethodSource.into..st │ │ ├── toSTON..st │ │ ├── typeClassDefinitionOf..st │ │ ├── typeDefinitionOf..st │ │ ├── typeOf..st │ │ ├── typeTraitDefinitionOf..st │ │ ├── writeClass..st │ │ ├── writeClass.on..st │ │ ├── writeClassDefinition.on..st │ │ ├── writeClassSideMethodDefinitions.on..st │ │ ├── writeExtensionMethods.className..st │ │ ├── writeInstanceSideMethodDefinitions.on..st │ │ ├── writeMethodDefinition.on..st │ │ ├── writeMethodDefinition.parent.on..st │ │ ├── writeMethodExtensions.st │ │ ├── writePackage..st │ │ ├── writeSnapshot..st │ │ └── writeVersion..st │ └── properties.json ├── TonelWriterV1.class │ ├── README.md │ ├── class │ │ ├── formatVersion.st │ │ ├── new.st │ │ └── readerClass.st │ ├── instance │ │ └── at.put.in..st │ └── properties.json ├── TonelWriterV2.class │ ├── README.md │ ├── class │ │ ├── formatVersion.st │ │ ├── new.st │ │ └── readerClass.st │ ├── instance │ │ └── at.put.in..st │ └── properties.json ├── TonelWriterV3.class │ ├── README.md │ ├── class │ │ ├── formatVersion.st │ │ ├── isLegacyFormat..st │ │ ├── isLegacyFormat.st │ │ ├── new.st │ │ └── readerClass.st │ ├── instance │ │ ├── at.put.in..st │ │ └── setPackageInfoOf.in..st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── MonticelloTonel-FileSystem.package ├── .filetree ├── TonelFileSystemUtils.class │ ├── README.md │ ├── class │ │ ├── default.st │ │ ├── deleteAll..st │ │ ├── directoryExists..st │ │ ├── directoryFromEntry..st │ │ ├── directoryFromPath..st │ │ ├── directoryFromPath.relativeTo..st │ │ ├── directoryName..st │ │ ├── directoryPathString..st │ │ ├── ensureDirectoryExists..st │ │ ├── ensureFilePathExists.relativeTo..st │ │ ├── fileName..st │ │ ├── filePathExists.relativeTo..st │ │ ├── initialize.st │ │ ├── parentDirectoryOf..st │ │ ├── pathNameDelimiter.st │ │ ├── readStreamFor.do..st │ │ ├── readStreamFor.in.do..st │ │ ├── resolvePath.in..st │ │ └── writeStreamFor.in.do..st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── MonticelloTonel-Tests-Mocks.package ├── .filetree ├── MTMock.class │ ├── README.md │ ├── class │ │ └── wantsChangeSetLogging.st │ └── properties.json ├── MTMockAPoolDictionary.class │ ├── README.md │ └── properties.json ├── MTMockClassA.class │ ├── README.md │ ├── class │ │ ├── cVar.st │ │ ├── initializationOrder.st │ │ ├── initialize.st │ │ ├── one.st │ │ └── touchCVar.st │ ├── instance │ │ ├── a.st │ │ ├── b.st │ │ ├── c.st │ │ ├── d.st │ │ ├── falsehood.st │ │ ├── methodInCategoryWithApostrophe.st │ │ ├── moreTruth.st │ │ ├── one.st │ │ ├── truth.st │ │ └── two.st │ └── properties.json ├── MTMockClassB.class │ ├── README.md │ ├── class │ │ ├── cVar.st │ │ └── ciVar.st │ ├── instance │ │ └── ivarb.st │ └── properties.json ├── MTMockClassD.class │ ├── README.md │ ├── instance │ │ └── one.st │ └── properties.json ├── MTMockClassE.class │ ├── README.md │ ├── class │ │ └── two.st │ └── properties.json ├── MTMockClassF.class │ ├── README.md │ ├── class │ │ └── foo.st │ └── properties.json ├── MTMockClassG.class │ ├── README.md │ └── properties.json ├── MTMockClassH.class │ ├── README.md │ └── properties.json ├── MTMockClassI.class │ ├── README.md │ └── properties.json ├── MTMockSubclassOfA.class │ ├── README.md │ ├── class │ │ └── initialize.st │ ├── instance │ │ ├── variables.st │ │ └── variables2.st │ └── properties.json ├── ManifestMonticelloTonelTestsMocks.class │ ├── README.md │ ├── class │ │ └── ruleClassNotReferencedRuleV1FalsePositive.st │ └── properties.json ├── TonelWriter.extension │ ├── instance │ │ └── mockClassExtension.st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── MonticelloTonel-Tests.package ├── .filetree ├── AbstractTonelTest.class │ ├── README.md │ ├── class │ │ ├── isAbstract.st │ │ ├── mockSnapshot.st │ │ ├── mockSnapshotSTON.st │ │ ├── mockSnapshotSTONWithCommentsInSelector.st │ │ └── resources.st │ ├── instance │ │ ├── classWithTraits.st │ │ ├── classWithTraitsWithClassComposition.st │ │ ├── mockCategoryName.st │ │ ├── mockClassA.st │ │ ├── mockClassB.st │ │ ├── mockExtensionMethodCategory.st │ │ ├── mockSnapshot.st │ │ ├── readDefinitionOfClass.fromPackage.whitContent..st │ │ ├── trait1.st │ │ └── trait2.st │ └── properties.json ├── TonelMock.class │ ├── README.md │ ├── class │ │ └── classMethod.st │ ├── instance │ │ └── instanceMethod.st │ └── properties.json ├── TonelParserTest.class │ ├── README.md │ ├── instance │ │ ├── assertParse.rule.equals..st │ │ ├── parse.rule..st │ │ ├── shouldParse.rule.raise..st │ │ ├── testComment.st │ │ ├── testExtractSelector.st │ │ ├── testExtractSelectorWithComments.st │ │ ├── testLiteralDollarCharacterAtEndOfLiteralArray.st │ │ ├── testMaybeReturnADollar.st │ │ ├── testMetadata.st │ │ ├── testMethod.st │ │ ├── testMethodBody.st │ │ ├── testMethodBodyWithBlockContainingDollarCharacter.st │ │ ├── testMethodBodyWithCommentNextToDollarCharLiteral.st │ │ ├── testMethodBodyWithSquareBracketInsideLiteralArray.st │ │ ├── testMethodBodyWithSquareBracketInsideLiteralArray2.st │ │ ├── testMethodBodyWithTrickyDollarCharLiteralInLiteralArray.st │ │ ├── testMethodDef.st │ │ ├── testMethodDefList.st │ │ ├── testType.st │ │ ├── testTypeDef.st │ │ ├── testTypeDefWithCategory.st │ │ └── testTypeDefWithPackageAndTag.st │ └── properties.json ├── TonelReaderTest.class │ ├── README.md │ ├── instance │ │ ├── assertClassDefinition.and..st │ │ ├── assertDefinition.and..st │ │ ├── assertMethodDefinition.and..st │ │ ├── assertOrganisationDefinition.and..st │ │ ├── mockSnapshotWithCommentsInSelector.st │ │ ├── newMemoryFileSystemSnapshot.writtenBy..st │ │ ├── testHiddenFilesAreIgnored.st │ │ ├── testLoadDefinitions.st │ │ ├── testLoadSelectorWithComments.st │ │ ├── testReadClass.st │ │ ├── testReadClassWithCategoryAsPackage.st │ │ ├── testReadClassWithCategoryAsPackageAndMissmatchInCase.st │ │ ├── testReadClassWithCategoryAsPackageAndTag.st │ │ └── withTonelWriterClassesDo..st │ └── properties.json ├── TonelReaderTraitCompositionTest.class │ ├── README.md │ ├── instance │ │ ├── testLoadClassWithClassTraitCompositionDoesHaveTheCorrectTraitComposition.st │ │ ├── testLoadClassWithClassTraitCompositionDoesHaveTraitComposition.st │ │ ├── testLoadClassWithClassTraitCompositionIsAClass.st │ │ ├── testLoadClassWithoutClassTraitCompositionDoesNotHaveTraitComposition.st │ │ ├── testLoadTraitWithClassTraitCompositionDoesHaveTheCorrectTraitComposition.st │ │ ├── testLoadTraitWithClassTraitCompositionDoesHaveTraitComposition.st │ │ ├── testLoadTraitWithClassTraitCompositionIsATrait.st │ │ └── testLoadTraitWithoutClassTraitCompositionDoesNotHaveTraitComposition.st │ └── properties.json ├── TonelRepositoryTest.class │ ├── README.md │ ├── instance │ │ ├── mockSnapshot.st │ │ ├── newMemoryFileSystem.st │ │ ├── setUp.st │ │ ├── testCanCreateTonelRepositoryFromUrl.st │ │ └── testLoadAllFileNames.st │ └── properties.json ├── TonelScannerTest.class │ ├── README.md │ ├── instance │ │ └── testRemoveFromEnclosingStartEnd.st │ └── properties.json ├── TonelSnapshotResource.class │ ├── README.md │ ├── class │ │ ├── mockPackage.st │ │ ├── mockPackageName.st │ │ └── takeSnapshot.st │ ├── instance │ │ ├── definitions.st │ │ ├── setUp.st │ │ └── snapshot.st │ └── properties.json ├── TonelSourceScannerTest.class │ ├── README.md │ ├── instance │ │ ├── testScan.st │ │ ├── testScanForComment.st │ │ ├── testScanForLiteralArray.st │ │ ├── testScanForString.st │ │ ├── testScanMethodWithLotsOfSpecials.st │ │ ├── testScanMethodWithParserErrors.st │ │ └── testScanMethodWithTerminatingBrackets.st │ └── properties.json ├── TonelTestResource.class │ ├── README.md │ ├── instance │ │ ├── classWithTraits.st │ │ ├── classWithTraitsWithClassComposition.st │ │ ├── setUp.st │ │ ├── tearDown.st │ │ ├── trait1.st │ │ └── trait2.st │ └── properties.json ├── TonelWriterTest.class │ ├── README.md │ ├── class │ │ └── isAbstract.st │ ├── instance │ │ ├── actualClass.st │ │ ├── checkFilesStructureIn..st │ │ ├── expectedBinaryInstanceMethodSourceCode.st │ │ ├── expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st │ │ ├── expectedClassDefinitionWithTraitCompositionSourceCode.st │ │ ├── expectedClassWithTraitsDefinitionSourceCode.st │ │ ├── expectedComparisonMethodSourceCode.st │ │ ├── expectedFormatVersion.st │ │ ├── expectedKeywordInstanceMethodSourceCode.st │ │ ├── expectedMTMockASubclassClassSt.st │ │ ├── expectedMTMockClassAClassSt.st │ │ ├── expectedSomeObjectClassDefinitionSourceCode.st │ │ ├── expectedSomeObjectClassDefinitionWithVariablesSourceCode.st │ │ ├── expectedSourceCodeForTonelMock.st │ │ ├── expectedTonelWriterExtensionSt.st │ │ ├── expectedUnaryClassMethodSourceCode.st │ │ ├── expectedUnaryInstanceMethodSourceCode.st │ │ ├── expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st │ │ ├── testForVersion.st │ │ ├── testFormatVersion.st │ │ ├── testReaderClass.st │ │ ├── testSourceCodeOf.st │ │ ├── testSplitMethodSourceInto.st │ │ ├── testSplitMethodSourceIntoCorrupted.st │ │ ├── testWriteBinaryInstanceMethodDefinitionWithDotNextToArgument.st │ │ ├── testWriteClassDefinitionOn.st │ │ ├── testWriteClassDefinitionWithClassTraitCompositionFromRealClassShouldWriteIt.st │ │ ├── testWriteClassDefinitionWithTraitComposition.st │ │ ├── testWriteClassDefinitionWithTraitCompositionFromRealClass.st │ │ ├── testWriteKeywordInstanceMethodDefinitionWithDotNextToArgument.st │ │ ├── testWriteMethodDefinitionOn.st │ │ ├── testWriteSnapshot.st │ │ ├── testWriteSnapshotWithOrganizationAndOnlyOnceClassWithTag.st │ │ ├── testWriteSnapshotWithoutOrganization.st │ │ ├── testWriteSnapshotWithoutOrganizationAndOnlyOnceClassWithTag.st │ │ ├── testWriteTraitDefinitionWithTraitCompositionFromTrait.st │ │ └── testWriteUnaryInstanceMethodDefinitionWithDotNextToSelector.st │ └── properties.json ├── TonelWriterV1Test.class │ ├── README.md │ ├── instance │ │ ├── actualClass.st │ │ ├── expectedBinaryInstanceMethodSourceCode.st │ │ ├── expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st │ │ ├── expectedClassDefinitionWithTraitCompositionSourceCode.st │ │ ├── expectedClassWithTraitsDefinitionSourceCode.st │ │ ├── expectedComparisonMethodSourceCode.st │ │ ├── expectedKeywordInstanceMethodSourceCode.st │ │ ├── expectedMTMockASubclassClassSt.st │ │ ├── expectedMTMockClassAClassSt.st │ │ ├── expectedSomeObjectClassDefinitionSourceCode.st │ │ ├── expectedSomeObjectClassDefinitionWithVariablesSourceCode.st │ │ ├── expectedSourceCodeForTonelMock.st │ │ ├── expectedTonelWriterExtensionSt.st │ │ ├── expectedUnaryClassMethodSourceCode.st │ │ ├── expectedUnaryInstanceMethodSourceCode.st │ │ └── expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st │ └── properties.json ├── TonelWriterV2Test.class │ ├── README.md │ ├── instance │ │ ├── actualClass.st │ │ ├── expectedBinaryInstanceMethodSourceCode.st │ │ ├── expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st │ │ ├── expectedClassDefinitionWithTraitCompositionSourceCode.st │ │ ├── expectedClassWithTraitsDefinitionSourceCode.st │ │ ├── expectedComparisonMethodSourceCode.st │ │ ├── expectedKeywordInstanceMethodSourceCode.st │ │ ├── expectedMTMockASubclassClassSt.st │ │ ├── expectedMTMockClassAClassSt.st │ │ ├── expectedSomeObjectClassDefinitionSourceCode.st │ │ ├── expectedSomeObjectClassDefinitionWithVariablesSourceCode.st │ │ ├── expectedSourceCodeForTonelMock.st │ │ ├── expectedTonelWriterExtensionSt.st │ │ ├── expectedUnaryClassMethodSourceCode.st │ │ ├── expectedUnaryInstanceMethodSourceCode.st │ │ └── expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st │ └── properties.json ├── TonelWriterV3Test.class │ ├── README.md │ ├── instance │ │ ├── actualClass.st │ │ ├── expectedBinaryInstanceMethodSourceCode.st │ │ ├── expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st │ │ ├── expectedClassDefinitionWithTraitCompositionSourceCode.st │ │ ├── expectedClassWithTraitsDefinitionSourceCode.st │ │ ├── expectedComparisonMethodSourceCode.st │ │ ├── expectedKeywordInstanceMethodSourceCode.st │ │ ├── expectedMTMockASubclassClassSt.st │ │ ├── expectedMTMockClassAClassSt.st │ │ ├── expectedSomeObjectClassDefinitionSourceCode.st │ │ ├── expectedSomeObjectClassDefinitionWithVariablesSourceCode.st │ │ ├── expectedSourceCodeForTonelMock.st │ │ ├── expectedTonelWriterExtensionSt.st │ │ ├── expectedUnaryClassMethodSourceCode.st │ │ ├── expectedUnaryInstanceMethodSourceCode.st │ │ └── expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── README.md └── scripts └── preLoading.st /.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/.filetree -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.st linguist-language=Smalltalk 2 | -------------------------------------------------------------------------------- /.github/scripts/preLoading.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/.github/scripts/preLoading.st -------------------------------------------------------------------------------- /.github/workflows/tonel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/.github/workflows/tonel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | **/.DS_Store 3 | 4 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/.project -------------------------------------------------------------------------------- /.properties: -------------------------------------------------------------------------------- 1 | { 2 | #format : #filetree 3 | } -------------------------------------------------------------------------------- /.smalltalk.ston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/.smalltalk.ston -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/.travis.yml -------------------------------------------------------------------------------- /BaselineOfTonel.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/BaselineOfTonel.package/.filetree -------------------------------------------------------------------------------- /BaselineOfTonel.package/BaselineOfTonel.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/BaselineOfTonel.package/BaselineOfTonel.class/README.md -------------------------------------------------------------------------------- /BaselineOfTonel.package/BaselineOfTonel.class/instance/baseline..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/BaselineOfTonel.package/BaselineOfTonel.class/instance/baseline..st -------------------------------------------------------------------------------- /BaselineOfTonel.package/BaselineOfTonel.class/instance/ston..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/BaselineOfTonel.package/BaselineOfTonel.class/instance/ston..st -------------------------------------------------------------------------------- /BaselineOfTonel.package/BaselineOfTonel.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/BaselineOfTonel.package/BaselineOfTonel.class/properties.json -------------------------------------------------------------------------------- /BaselineOfTonel.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #BaselineOfTonel! 2 | -------------------------------------------------------------------------------- /BaselineOfTonel.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaselineOfTonel.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'BaselineOfTonel') -------------------------------------------------------------------------------- /BaselineOfTonel.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/LICENSE -------------------------------------------------------------------------------- /MonticelloTonel-Compatibility.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Compatibility.package/.filetree -------------------------------------------------------------------------------- /MonticelloTonel-Compatibility.package/String.extension/instance/withInternalLineEndings.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Compatibility.package/String.extension/instance/withInternalLineEndings.st -------------------------------------------------------------------------------- /MonticelloTonel-Compatibility.package/String.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "String" 3 | } -------------------------------------------------------------------------------- /MonticelloTonel-Compatibility.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'MonticelloTonel-Compatibility'! 2 | -------------------------------------------------------------------------------- /MonticelloTonel-Compatibility.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Compatibility.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'MonticelloTonel-Compatibility') -------------------------------------------------------------------------------- /MonticelloTonel-Compatibility.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/.filetree -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelCommentScanner.class/README.md: -------------------------------------------------------------------------------- 1 | I scan comments. -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelCommentScanner.class/instance/scan.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelCommentScanner.class/instance/scan.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelCommentScanner.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelCommentScanner.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/buildPathFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/buildPathFrom..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/current.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/current.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/default.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/default.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/deleteAll..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/deleteAll..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryExists..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryExists..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryFromPath..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryFromPath..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryFromPath.relativeTo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryFromPath.relativeTo..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryName..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryName..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryPathString..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/directoryPathString..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/ensureDirectoryExists..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/ensureDirectoryExists..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/ensureFilePathExists.relativeTo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/ensureFilePathExists.relativeTo..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/fileName..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/fileName..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/filePathExists.relativeTo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/filePathExists.relativeTo..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/install.st: -------------------------------------------------------------------------------- 1 | initialization 2 | install 3 | Current := self -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/parentDirectoryOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/parentDirectoryOf..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/pathNameDelimiter.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/pathNameDelimiter.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/readStreamFor.do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/readStreamFor.do..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/readStreamFor.in.do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/readStreamFor.in.do..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/resolvePath.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/resolvePath.in..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/class/writeStreamFor.in.do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/class/writeStreamFor.in.do..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelFileUtils.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelFileUtils.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParseError.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParseError.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParseError.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParseError.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/class/on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/class/on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/class/parseStream..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/class/parseStream..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/class/parseString..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/class/parseString..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/addPackageInfoTo.from..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/addPackageInfoTo.from..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/cleanSelector..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/cleanSelector..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/comment.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/comment.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/definitionForType..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/definitionForType..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/document.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/document.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/extractSelector..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/extractSelector..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/isSeparator..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/isSeparator..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/metadata.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/metadata.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/method.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/method.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/methodBody.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/methodBody.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/methodDef.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/methodDef.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/methodDefList.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/methodDefList.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/newClassDefinitionFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/newClassDefinitionFrom..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/newMethodDefinitionFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/newMethodDefinitionFrom..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/newTraitDefinitionFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/newTraitDefinitionFrom..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/newTypeDefinitionFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/newTypeDefinitionFrom..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/removeComments..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/removeComments..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/separator.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/separator.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/start.st: -------------------------------------------------------------------------------- 1 | accessing 2 | start 3 | ^ self document -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/stream..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/stream..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/try..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/try..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/try.onFailure..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/try.onFailure..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/try.onSuccess..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/try.onSuccess..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/try.onSuccess.onFailure..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/try.onSuccess.onFailure..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/type.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/type.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/typeDef.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/typeDef.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/untilExcluding..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/untilExcluding..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/untilIncluding..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/untilIncluding..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/instance/word..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/instance/word..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelParser.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelParser.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/class/canReadFileNamed..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/class/canReadFileNamed..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/class/definitionOrders.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/class/definitionOrders.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/class/extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/class/extension.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/class/forVersion..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/class/forVersion..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/class/isAbstract.st: -------------------------------------------------------------------------------- 1 | testing 2 | isAbstract 3 | ^ false -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/class/on.fileName..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/class/on.fileName..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/canBeLoaded..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/canBeLoaded..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/ensurePackagesAndTagsOfDefinitions..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/ensurePackagesAndTagsOfDefinitions..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/fileUtils.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/fileUtils.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/loadDefinitions.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/loadDefinitions.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/loadDependencies.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/loadDependencies.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/loadPackage.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/loadPackage.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/loadVersionInfo.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/loadVersionInfo.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/packageDirectory..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/packageDirectory..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/packageDirectory.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/packageDirectory.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/packageNameFromPackageDirectory.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/packageNameFromPackageDirectory.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/instance/parseTonelFile..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/instance/parseTonelFile..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelReader.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelReader.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/README.md: -------------------------------------------------------------------------------- 1 | I'm a tonel monticello repository -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/class/basicFromUrl..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/class/basicFromUrl..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/class/createRepositoryFromSpec..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/class/createRepositoryFromSpec..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/class/description.st: -------------------------------------------------------------------------------- 1 | accessing 2 | description 3 | ^ 'tonel://' -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/class/isAvailableFor..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/class/isAvailableFor..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/class/isFiletreeAlternateFormat..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/class/isFiletreeAlternateFormat..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/class/urlSchemes.st: -------------------------------------------------------------------------------- 1 | accessing 2 | urlSchemes 3 | ^ #(tonel) -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/allFileNamesForVersionNamed..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/allFileNamesForVersionNamed..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/asRepositorySpecFor..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/asRepositorySpecFor..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/basicStoreVersion..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/basicStoreVersion..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/description.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/description.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/fileDirectoryOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/fileDirectoryOn..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/fileUtils.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/fileUtils.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/filterFileNames.forVersionNamed..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/filterFileNames.forVersionNamed..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/goferVersionFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/goferVersionFrom..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/loadAllFileNames.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/loadAllFileNames.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/packageDescriptionFromPackageDirectory..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/packageDescriptionFromPackageDirectory..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/packageDescriptionsFromReadableFileNames.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/packageDescriptionsFromReadableFileNames.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/readStreamForFileNamed.do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/readStreamForFileNamed.do..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/readableFileNames.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/readableFileNames.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/readableFileReferences.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/readableFileReferences.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/versionFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/versionFrom..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/versionInfoForPackageDirectory..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/versionInfoForPackageDirectory..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/versionInfoFromVersionNamed..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/versionInfoFromVersionNamed..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/versionNameFromFileName..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/versionNameFromFileName..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/instance/versionWithInfo.ifAbsent..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/instance/versionWithInfo.ifAbsent..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelRepository.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelRepository.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSTONWriter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSTONWriter.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSTONWriter.class/instance/aliases..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSTONWriter.class/instance/aliases..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSTONWriter.class/instance/aliases.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSTONWriter.class/instance/aliases.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSTONWriter.class/instance/encodeMap..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSTONWriter.class/instance/encodeMap..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSTONWriter.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSTONWriter.class/instance/initialize.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSTONWriter.class/instance/isSimpleSymbol..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSTONWriter.class/instance/isSimpleSymbol..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSTONWriter.class/instance/stonNameFor..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSTONWriter.class/instance/stonNameFor..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSTONWriter.class/instance/writeObject.do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSTONWriter.class/instance/writeObject.do..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSTONWriter.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSTONWriter.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelScanner.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/class/new.st: -------------------------------------------------------------------------------- 1 | instance creation 2 | new 3 | self error: 'Use #on:' -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/class/on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelScanner.class/class/on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/instance/initializeStream..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelScanner.class/instance/initializeStream..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/instance/isEnter..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelScanner.class/instance/isEnter..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/instance/isSeparator..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelScanner.class/instance/isSeparator..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/instance/removeFrom.enclosingStart.end..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelScanner.class/instance/removeFrom.enclosingStart.end..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/instance/removeFrom.enclosingStart.end.clean..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelScanner.class/instance/removeFrom.enclosingStart.end.clean..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/instance/scan.st: -------------------------------------------------------------------------------- 1 | scanning 2 | scan 3 | self subclassResponsibility -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelScanner.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelScanner.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelShouldIgnore.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelShouldIgnore.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelShouldIgnore.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelShouldIgnore.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/isStartingComment.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/isStartingComment.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/isStartingLiteralArray.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/isStartingLiteralArray.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/isStartingLiteralCharacter.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/isStartingLiteralCharacter.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/isStartingString.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/isStartingString.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/prepareToScan.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/prepareToScan.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/readNext.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/readNext.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/readUntil..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/readUntil..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/readUntilTermination..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/readUntilTermination..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scan.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scan.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForBlock.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForBlock.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForComment.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForComment.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForLiteralArray.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForLiteralArray.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForLiteralCharacter.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForLiteralCharacter.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForString.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanForString.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanNextChunk.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/instance/scanNextChunk.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelSourceScanner.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelSourceScanner.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriteError.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriteError.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriteError.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriteError.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/classLabel.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/classLabel.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/defaultVersion.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/defaultVersion.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/exportClass.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/exportClass.on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/extensionLabel.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/extensionLabel.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/fileOut.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/fileOut.on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/forVersion..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/forVersion..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/formatVersion.st: -------------------------------------------------------------------------------- 1 | accessing 2 | formatVersion 3 | 4 | self subclassResponsibility -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/isAbstract.st: -------------------------------------------------------------------------------- 1 | testing 2 | isAbstract 3 | 4 | ^ self = TonelWriter -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/new.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/new.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/readerClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/readerClass.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/sourceCodeOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/sourceCodeOf..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/class/traitLabel.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/class/traitLabel.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/at.put.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/at.put.in..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/classNameFor.parent..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/classNameFor.parent..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/commentOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/commentOf..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/createDefaultOrganizationFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/createDefaultOrganizationFrom..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/createDefaultOrganizationFromDefinition..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/createDefaultOrganizationFromDefinition..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/directoryReference..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/directoryReference..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/directoryReference.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/directoryReference.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/exportClass.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/exportClass.on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/fileNameFor..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/fileNameFor..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/fileUtils.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/fileUtils.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/isClass..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/isClass..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/isTrait..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/isTrait..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/methodDefinitionOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/methodDefinitionOf..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/newLine.st: -------------------------------------------------------------------------------- 1 | private 2 | newLine 3 | ^ OSPlatform current lineEnding -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/obtainPackageDir..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/obtainPackageDir..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/packageDir.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/packageDir.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/packageNameForMethodDefinition..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/packageNameForMethodDefinition..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/selectorIsComplete.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/selectorIsComplete.in..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/setPackageInfoOf.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/setPackageInfoOf.in..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/skipComment..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/skipComment..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/skipSeparators..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/skipSeparators..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/snapshot..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/snapshot..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/splitMethodSource.into..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/splitMethodSource.into..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/toSTON..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/toSTON..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/typeClassDefinitionOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/typeClassDefinitionOf..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/typeDefinitionOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/typeDefinitionOf..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/typeOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/typeOf..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/typeTraitDefinitionOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/typeTraitDefinitionOf..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeClass..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeClass..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeClass.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeClass.on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeClassDefinition.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeClassDefinition.on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeClassSideMethodDefinitions.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeClassSideMethodDefinitions.on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeExtensionMethods.className..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeExtensionMethods.className..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeInstanceSideMethodDefinitions.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeInstanceSideMethodDefinitions.on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeMethodDefinition.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeMethodDefinition.on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeMethodDefinition.parent.on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeMethodDefinition.parent.on..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeMethodExtensions.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeMethodExtensions.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writePackage..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writePackage..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeSnapshot..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeSnapshot..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/instance/writeVersion..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/instance/writeVersion..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriter.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriter.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV1.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV1.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV1.class/class/formatVersion.st: -------------------------------------------------------------------------------- 1 | accessing 2 | formatVersion 3 | 4 | ^ '1.0' -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV1.class/class/new.st: -------------------------------------------------------------------------------- 1 | instance creation 2 | new 3 | 4 | ^self basicNew initialize -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV1.class/class/readerClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV1.class/class/readerClass.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV1.class/instance/at.put.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV1.class/instance/at.put.in..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV1.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV1.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV2.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV2.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV2.class/class/formatVersion.st: -------------------------------------------------------------------------------- 1 | accessing 2 | formatVersion 3 | 4 | ^ '2.0' -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV2.class/class/new.st: -------------------------------------------------------------------------------- 1 | instance creation 2 | new 3 | 4 | ^self basicNew initialize -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV2.class/class/readerClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV2.class/class/readerClass.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV2.class/instance/at.put.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV2.class/instance/at.put.in..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV2.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV2.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV3.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV3.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV3.class/class/formatVersion.st: -------------------------------------------------------------------------------- 1 | accessing 2 | formatVersion 3 | 4 | ^ '3.0' -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV3.class/class/isLegacyFormat..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV3.class/class/isLegacyFormat..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV3.class/class/isLegacyFormat.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV3.class/class/isLegacyFormat.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV3.class/class/new.st: -------------------------------------------------------------------------------- 1 | instance creation 2 | new 3 | 4 | ^ self basicNew initialize -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV3.class/class/readerClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV3.class/class/readerClass.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV3.class/instance/at.put.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV3.class/instance/at.put.in..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV3.class/instance/setPackageInfoOf.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV3.class/instance/setPackageInfoOf.in..st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/TonelWriterV3.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/TonelWriterV3.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Core.package/monticello.meta/categories.st -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'MonticelloTonel-Core') -------------------------------------------------------------------------------- /MonticelloTonel-Core.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/.filetree -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/default.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/default.st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/deleteAll..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/deleteAll..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryExists..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryExists..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryFromEntry..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryFromEntry..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryFromPath..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryFromPath..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryFromPath.relativeTo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryFromPath.relativeTo..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryName..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryName..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryPathString..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/directoryPathString..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/ensureDirectoryExists..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/ensureDirectoryExists..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/ensureFilePathExists.relativeTo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/ensureFilePathExists.relativeTo..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/fileName..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/fileName..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/filePathExists.relativeTo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/filePathExists.relativeTo..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/initialize.st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/parentDirectoryOf..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/parentDirectoryOf..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/pathNameDelimiter.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/pathNameDelimiter.st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/readStreamFor.do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/readStreamFor.do..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/readStreamFor.in.do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/readStreamFor.in.do..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/resolvePath.in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/resolvePath.in..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/writeStreamFor.in.do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/class/writeStreamFor.in.do..st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/TonelFileSystemUtils.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-FileSystem.package/monticello.meta/categories.st -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'MonticelloTonel-FileSystem') -------------------------------------------------------------------------------- /MonticelloTonel-FileSystem.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/.filetree -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMock.class/README.md: -------------------------------------------------------------------------------- 1 | Common superclass for mocks -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMock.class/class/wantsChangeSetLogging.st: -------------------------------------------------------------------------------- 1 | compiling 2 | wantsChangeSetLogging 3 | 4 | ^ false -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMock.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMock.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockAPoolDictionary.class/README.md: -------------------------------------------------------------------------------- 1 | Mocking a pool -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockAPoolDictionary.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockAPoolDictionary.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/README.md: -------------------------------------------------------------------------------- 1 | A mock class to verify serialization using Tonel format -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/class/cVar.st: -------------------------------------------------------------------------------- 1 | accessing 2 | cVar 3 | 4 | ^ CVar -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/class/initializationOrder.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/class/initializationOrder.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/class/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/class/initialize.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/class/one.st: -------------------------------------------------------------------------------- 1 | accessing 2 | one 3 | 4 | ^ 1 -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/class/touchCVar.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/class/touchCVar.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/a.st: -------------------------------------------------------------------------------- 1 | numeric 2 | a 3 | 4 | ^ 'a2' -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/b.st: -------------------------------------------------------------------------------- 1 | numeric 2 | b 3 | 4 | ^ 'b1' -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/c.st: -------------------------------------------------------------------------------- 1 | numeric 2 | c 3 | 4 | ^ 'c1' -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/d.st: -------------------------------------------------------------------------------- 1 | numeric 2 | d 3 | 4 | ^ 'd' -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/falsehood.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/falsehood.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/methodInCategoryWithApostrophe.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/methodInCategoryWithApostrophe.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/moreTruth.st: -------------------------------------------------------------------------------- 1 | boolean 2 | moreTruth 3 | 4 | ^ true -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/one.st: -------------------------------------------------------------------------------- 1 | numeric 2 | one 3 | 4 | ^ 1 -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/truth.st: -------------------------------------------------------------------------------- 1 | boolean 2 | truth 3 | 4 | ^ true -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/instance/two.st: -------------------------------------------------------------------------------- 1 | numeric 2 | two 3 | 4 | ^ 2 -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassA.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassB.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassB.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassB.class/class/cVar.st: -------------------------------------------------------------------------------- 1 | accessing 2 | cVar 3 | 4 | ^ CVar -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassB.class/class/ciVar.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassB.class/class/ciVar.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassB.class/instance/ivarb.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassB.class/instance/ivarb.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassB.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassB.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassD.class/README.md: -------------------------------------------------------------------------------- 1 | A mock class to verify serialization using Tonel format -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassD.class/instance/one.st: -------------------------------------------------------------------------------- 1 | accessing 2 | one 3 | 4 | ^ 1 -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassD.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassD.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassE.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassE.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassE.class/class/two.st: -------------------------------------------------------------------------------- 1 | accessing 2 | two 3 | 4 | ^ 2 -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassE.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassE.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassF.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassF.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassF.class/class/foo.st: -------------------------------------------------------------------------------- 1 | accessing 2 | foo 3 | 4 | ^ Foo -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassF.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassF.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassG.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassG.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassG.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassG.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassH.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassH.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassH.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassH.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassI.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockClassI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockClassI.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockSubclassOfA.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockSubclassOfA.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockSubclassOfA.class/class/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockSubclassOfA.class/class/initialize.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockSubclassOfA.class/instance/variables.st: -------------------------------------------------------------------------------- 1 | accessing 2 | variables 3 | 4 | ^ x + Y + MTMockClassA -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockSubclassOfA.class/instance/variables2.st: -------------------------------------------------------------------------------- 1 | accessing 2 | variables2 3 | 4 | ^ ivar + CVar -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/MTMockSubclassOfA.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/MTMockSubclassOfA.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/ManifestMonticelloTonelTestsMocks.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/ManifestMonticelloTonelTestsMocks.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/ManifestMonticelloTonelTestsMocks.class/class/ruleClassNotReferencedRuleV1FalsePositive.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/ManifestMonticelloTonelTestsMocks.class/class/ruleClassNotReferencedRuleV1FalsePositive.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/ManifestMonticelloTonelTestsMocks.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/ManifestMonticelloTonelTestsMocks.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/TonelWriter.extension/instance/mockClassExtension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests-Mocks.package/TonelWriter.extension/instance/mockClassExtension.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/TonelWriter.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TonelWriter" 3 | } -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'MonticelloTonel-Tests-Mocks'! 2 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'MonticelloTonel-Tests-Mocks') -------------------------------------------------------------------------------- /MonticelloTonel-Tests-Mocks.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/.filetree -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/class/isAbstract.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/class/isAbstract.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/class/mockSnapshot.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/class/mockSnapshot.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/class/mockSnapshotSTON.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/class/mockSnapshotSTON.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/class/mockSnapshotSTONWithCommentsInSelector.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/class/mockSnapshotSTONWithCommentsInSelector.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/class/resources.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/class/resources.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/classWithTraits.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/classWithTraits.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/classWithTraitsWithClassComposition.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/classWithTraitsWithClassComposition.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockCategoryName.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockCategoryName.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockClassA.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockClassA.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockClassB.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockClassB.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockExtensionMethodCategory.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockExtensionMethodCategory.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockSnapshot.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/mockSnapshot.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/readDefinitionOfClass.fromPackage.whitContent..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/readDefinitionOfClass.fromPackage.whitContent..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/trait1.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/trait1.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/trait2.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/instance/trait2.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/AbstractTonelTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/AbstractTonelTest.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelMock.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelMock.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelMock.class/class/classMethod.st: -------------------------------------------------------------------------------- 1 | accessing 2 | classMethod 3 | 4 | ^ 8 -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelMock.class/instance/instanceMethod.st: -------------------------------------------------------------------------------- 1 | accessing 2 | instanceMethod 3 | 4 | ^ true -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelMock.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelMock.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/assertParse.rule.equals..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/assertParse.rule.equals..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/parse.rule..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/parse.rule..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/shouldParse.rule.raise..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/shouldParse.rule.raise..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testComment.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testComment.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testExtractSelector.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testExtractSelector.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testExtractSelectorWithComments.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testExtractSelectorWithComments.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testLiteralDollarCharacterAtEndOfLiteralArray.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testLiteralDollarCharacterAtEndOfLiteralArray.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMaybeReturnADollar.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMaybeReturnADollar.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMetadata.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMetadata.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethod.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethod.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBody.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBody.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithBlockContainingDollarCharacter.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithBlockContainingDollarCharacter.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithCommentNextToDollarCharLiteral.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithCommentNextToDollarCharLiteral.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithSquareBracketInsideLiteralArray.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithSquareBracketInsideLiteralArray.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithSquareBracketInsideLiteralArray2.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithSquareBracketInsideLiteralArray2.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithTrickyDollarCharLiteralInLiteralArray.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodBodyWithTrickyDollarCharLiteralInLiteralArray.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodDef.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodDef.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodDefList.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testMethodDefList.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testType.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testType.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testTypeDef.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testTypeDef.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testTypeDefWithCategory.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testTypeDefWithCategory.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/instance/testTypeDefWithPackageAndTag.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/instance/testTypeDefWithPackageAndTag.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelParserTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelParserTest.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/assertClassDefinition.and..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/assertClassDefinition.and..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/assertDefinition.and..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/assertDefinition.and..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/assertMethodDefinition.and..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/assertMethodDefinition.and..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/assertOrganisationDefinition.and..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/assertOrganisationDefinition.and..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/mockSnapshotWithCommentsInSelector.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/mockSnapshotWithCommentsInSelector.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/newMemoryFileSystemSnapshot.writtenBy..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/newMemoryFileSystemSnapshot.writtenBy..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testHiddenFilesAreIgnored.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testHiddenFilesAreIgnored.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testLoadDefinitions.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testLoadDefinitions.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testLoadSelectorWithComments.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testLoadSelectorWithComments.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testReadClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testReadClass.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testReadClassWithCategoryAsPackage.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testReadClassWithCategoryAsPackage.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testReadClassWithCategoryAsPackageAndMissmatchInCase.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testReadClassWithCategoryAsPackageAndMissmatchInCase.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testReadClassWithCategoryAsPackageAndTag.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/testReadClassWithCategoryAsPackageAndTag.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/instance/withTonelWriterClassesDo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/instance/withTonelWriterClassesDo..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTest.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadClassWithClassTraitCompositionDoesHaveTheCorrectTraitComposition.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadClassWithClassTraitCompositionDoesHaveTheCorrectTraitComposition.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadClassWithClassTraitCompositionDoesHaveTraitComposition.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadClassWithClassTraitCompositionDoesHaveTraitComposition.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadClassWithClassTraitCompositionIsAClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadClassWithClassTraitCompositionIsAClass.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadClassWithoutClassTraitCompositionDoesNotHaveTraitComposition.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadClassWithoutClassTraitCompositionDoesNotHaveTraitComposition.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadTraitWithClassTraitCompositionDoesHaveTheCorrectTraitComposition.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadTraitWithClassTraitCompositionDoesHaveTheCorrectTraitComposition.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadTraitWithClassTraitCompositionDoesHaveTraitComposition.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadTraitWithClassTraitCompositionDoesHaveTraitComposition.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadTraitWithClassTraitCompositionIsATrait.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadTraitWithClassTraitCompositionIsATrait.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadTraitWithoutClassTraitCompositionDoesNotHaveTraitComposition.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/instance/testLoadTraitWithoutClassTraitCompositionDoesNotHaveTraitComposition.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelReaderTraitCompositionTest.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelRepositoryTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/mockSnapshot.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/mockSnapshot.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/newMemoryFileSystem.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/newMemoryFileSystem.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/setUp.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/setUp.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/testCanCreateTonelRepositoryFromUrl.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/testCanCreateTonelRepositoryFromUrl.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/testLoadAllFileNames.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelRepositoryTest.class/instance/testLoadAllFileNames.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelRepositoryTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelRepositoryTest.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelScannerTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelScannerTest.class/instance/testRemoveFromEnclosingStartEnd.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelScannerTest.class/instance/testRemoveFromEnclosingStartEnd.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelScannerTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelScannerTest.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSnapshotResource.class/README.md: -------------------------------------------------------------------------------- 1 | A test resource mocking a snapshot -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSnapshotResource.class/class/mockPackage.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSnapshotResource.class/class/mockPackage.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSnapshotResource.class/class/mockPackageName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | mockPackageName 3 | ^ 'MonticelloTonel-Tests-Mocks' -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSnapshotResource.class/class/takeSnapshot.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSnapshotResource.class/class/takeSnapshot.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSnapshotResource.class/instance/definitions.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSnapshotResource.class/instance/definitions.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSnapshotResource.class/instance/setUp.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSnapshotResource.class/instance/setUp.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSnapshotResource.class/instance/snapshot.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSnapshotResource.class/instance/snapshot.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSnapshotResource.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSnapshotResource.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSourceScannerTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScan.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScan.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanForComment.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanForComment.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanForLiteralArray.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanForLiteralArray.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanForString.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanForString.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanMethodWithLotsOfSpecials.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanMethodWithLotsOfSpecials.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanMethodWithParserErrors.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanMethodWithParserErrors.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanMethodWithTerminatingBrackets.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSourceScannerTest.class/instance/testScanMethodWithTerminatingBrackets.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelSourceScannerTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelSourceScannerTest.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelTestResource.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelTestResource.class/README.md -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelTestResource.class/instance/classWithTraits.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelTestResource.class/instance/classWithTraits.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelTestResource.class/instance/classWithTraitsWithClassComposition.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelTestResource.class/instance/classWithTraitsWithClassComposition.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelTestResource.class/instance/setUp.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelTestResource.class/instance/setUp.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelTestResource.class/instance/tearDown.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelTestResource.class/instance/tearDown.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelTestResource.class/instance/trait1.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelTestResource.class/instance/trait1.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelTestResource.class/instance/trait2.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelTestResource.class/instance/trait2.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelTestResource.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelTestResource.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/class/isAbstract.st: -------------------------------------------------------------------------------- 1 | testing 2 | isAbstract 3 | 4 | ^ self = TonelWriterTest -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/actualClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/actualClass.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/checkFilesStructureIn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/checkFilesStructureIn..st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedBinaryInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedBinaryInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedClassDefinitionWithTraitCompositionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedClassDefinitionWithTraitCompositionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedClassWithTraitsDefinitionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedClassWithTraitsDefinitionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedComparisonMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedComparisonMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedFormatVersion.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedFormatVersion.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedKeywordInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedKeywordInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedMTMockASubclassClassSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedMTMockASubclassClassSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedMTMockClassAClassSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedMTMockClassAClassSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedSomeObjectClassDefinitionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedSomeObjectClassDefinitionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedSomeObjectClassDefinitionWithVariablesSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedSomeObjectClassDefinitionWithVariablesSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedSourceCodeForTonelMock.st: -------------------------------------------------------------------------------- 1 | private 2 | expectedSourceCodeForTonelMock 3 | 4 | ^ self subclassResponsibility -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedTonelWriterExtensionSt.st: -------------------------------------------------------------------------------- 1 | private 2 | expectedTonelWriterExtensionSt 3 | 4 | ^ self subclassResponsibility -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedUnaryClassMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedUnaryClassMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedUnaryInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedUnaryInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testForVersion.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testForVersion.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testFormatVersion.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testFormatVersion.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testReaderClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testReaderClass.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testSourceCodeOf.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testSourceCodeOf.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testSplitMethodSourceInto.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testSplitMethodSourceInto.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testSplitMethodSourceIntoCorrupted.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testSplitMethodSourceIntoCorrupted.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteBinaryInstanceMethodDefinitionWithDotNextToArgument.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteBinaryInstanceMethodDefinitionWithDotNextToArgument.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteClassDefinitionOn.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteClassDefinitionOn.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteClassDefinitionWithClassTraitCompositionFromRealClassShouldWriteIt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteClassDefinitionWithClassTraitCompositionFromRealClassShouldWriteIt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteClassDefinitionWithTraitComposition.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteClassDefinitionWithTraitComposition.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteClassDefinitionWithTraitCompositionFromRealClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteClassDefinitionWithTraitCompositionFromRealClass.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteKeywordInstanceMethodDefinitionWithDotNextToArgument.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteKeywordInstanceMethodDefinitionWithDotNextToArgument.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteMethodDefinitionOn.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteMethodDefinitionOn.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteSnapshot.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteSnapshot.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteSnapshotWithOrganizationAndOnlyOnceClassWithTag.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteSnapshotWithOrganizationAndOnlyOnceClassWithTag.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteSnapshotWithoutOrganization.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteSnapshotWithoutOrganization.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteSnapshotWithoutOrganizationAndOnlyOnceClassWithTag.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteSnapshotWithoutOrganizationAndOnlyOnceClassWithTag.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteTraitDefinitionWithTraitCompositionFromTrait.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteTraitDefinitionWithTraitCompositionFromTrait.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteUnaryInstanceMethodDefinitionWithDotNextToSelector.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/instance/testWriteUnaryInstanceMethodDefinitionWithDotNextToSelector.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterTest.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/actualClass.st: -------------------------------------------------------------------------------- 1 | private - accessing 2 | actualClass 3 | 4 | ^ TonelWriterV1 -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedBinaryInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedBinaryInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedClassDefinitionWithTraitCompositionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedClassDefinitionWithTraitCompositionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedClassWithTraitsDefinitionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedClassWithTraitsDefinitionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedComparisonMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedComparisonMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedKeywordInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedKeywordInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedMTMockASubclassClassSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedMTMockASubclassClassSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedMTMockClassAClassSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedMTMockClassAClassSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedSomeObjectClassDefinitionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedSomeObjectClassDefinitionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedSomeObjectClassDefinitionWithVariablesSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedSomeObjectClassDefinitionWithVariablesSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedSourceCodeForTonelMock.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedSourceCodeForTonelMock.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedTonelWriterExtensionSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedTonelWriterExtensionSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedUnaryClassMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedUnaryClassMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedUnaryInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedUnaryInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/instance/expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV1Test.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV1Test.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/actualClass.st: -------------------------------------------------------------------------------- 1 | private - accessing 2 | actualClass 3 | 4 | ^ TonelWriterV2 -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedBinaryInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedBinaryInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedClassDefinitionWithTraitCompositionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedClassDefinitionWithTraitCompositionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedClassWithTraitsDefinitionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedClassWithTraitsDefinitionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedComparisonMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedComparisonMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedKeywordInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedKeywordInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedMTMockASubclassClassSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedMTMockASubclassClassSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedMTMockClassAClassSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedMTMockClassAClassSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedSomeObjectClassDefinitionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedSomeObjectClassDefinitionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedSomeObjectClassDefinitionWithVariablesSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedSomeObjectClassDefinitionWithVariablesSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedSourceCodeForTonelMock.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedSourceCodeForTonelMock.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedTonelWriterExtensionSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedTonelWriterExtensionSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedUnaryClassMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedUnaryClassMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedUnaryInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedUnaryInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/instance/expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV2Test.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV2Test.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/actualClass.st: -------------------------------------------------------------------------------- 1 | private - accessing 2 | actualClass 3 | 4 | ^ TonelWriterV3 -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedBinaryInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedBinaryInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedClassDefinitionWithTraitCompositionFromRealClassSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedClassDefinitionWithTraitCompositionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedClassDefinitionWithTraitCompositionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedClassWithTraitsDefinitionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedClassWithTraitsDefinitionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedComparisonMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedComparisonMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedKeywordInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedKeywordInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedMTMockASubclassClassSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedMTMockASubclassClassSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedMTMockClassAClassSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedMTMockClassAClassSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedSomeObjectClassDefinitionSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedSomeObjectClassDefinitionSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedSomeObjectClassDefinitionWithVariablesSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedSomeObjectClassDefinitionWithVariablesSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedSourceCodeForTonelMock.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedSourceCodeForTonelMock.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedTonelWriterExtensionSt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedTonelWriterExtensionSt.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedUnaryClassMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedUnaryClassMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedUnaryInstanceMethodSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedUnaryInstanceMethodSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/instance/expectedUnaryInstanceMethodWithDotAfterSelectorSourceCode.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/TonelWriterV3Test.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/TonelWriterV3Test.class/properties.json -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/MonticelloTonel-Tests.package/monticello.meta/categories.st -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'MonticelloTonel-Tests') -------------------------------------------------------------------------------- /MonticelloTonel-Tests.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/README.md -------------------------------------------------------------------------------- /scripts/preLoading.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-vcs/tonel/HEAD/scripts/preLoading.st --------------------------------------------------------------------------------