Skip to content

Commit

Permalink
Merge pull request #334 from macta/convert-exercise-tags-to-packages
Browse files Browse the repository at this point in the history
promote public exercism src to full package names
  • Loading branch information
macta authored May 12, 2019
2 parents 64c3202 + 5887bc2 commit 3367b98
Show file tree
Hide file tree
Showing 84 changed files with 84 additions and 84 deletions.
2 changes: 1 addition & 1 deletion exercises/acronym/.meta/solution/Acronym.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This solution shows the use of Stream processing.
Class {
#name : #Acronym,
#superclass : #Object,
#category : #'Exercism-Acronym'
#category : #'Exercise@Acronym'
}

{ #category : #exercism }
Expand Down
2 changes: 1 addition & 1 deletion exercises/acronym/AcronymTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Class {
#instVars : [
'acronymCalculator'
],
#category : #'Exercism-Acronym'
#category : #'Exercise@Acronym'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/allergies/.meta/solution/Allergies.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This solution shows how Pharo can access bit sequences to solve this exercise. I
Class {
#name : #Allergies,
#superclass : #Object,
#category : #'Exercism-Allergies'
#category : #'Exercise@Allergies'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/allergies/AllergiesTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Class {
#instVars : [
'allergiesCalculator'
],
#category : #'Exercism-Allergies'
#category : #'Exercise@Allergies'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/anagram/.meta/solution/Anagram.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Using the often maligned Bag datatype, makes this exercise quite easy
Class {
#name : #Anagram,
#superclass : #Object,
#category : #'Exercism-Anagram'
#category : #'Exercise@Anagram'
}

{ #category : #exercism }
Expand Down
2 changes: 1 addition & 1 deletion exercises/anagram/AnagramTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Class {
#instVars : [
'anagramCalculator'
],
#category : #'Exercism-Anagram'
#category : #'Exercise@Anagram'
}

{ #category : #helper }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ If you spot the following useful methods in Integer, this solution is quite triv
Class {
#name : #ArmstrongNumbers,
#superclass : #Object,
#category : #'Exercism-ArmstrongNumbers'
#category : #'Exercise@ArmstrongNumbers'
}

{ #category : #testing }
Expand Down
2 changes: 1 addition & 1 deletion exercises/armstrong-numbers/ArmstrongNumbersTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Class {
#instVars : [
'armstrongNumbersCalculator'
],
#category : #'Exercism-ArmstrongNumbers'
#category : #'Exercise@ArmstrongNumbers'
}

{ #category : #config }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Class {
#instVars : [
'key'
],
#category : #'Exercism-AtbashCipher'
#category : #'Exercise@AtbashCipher'
}

{ #category : #encoding }
Expand Down
2 changes: 1 addition & 1 deletion exercises/atbash-cipher/AtbashCipherTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Class {
#instVars : [
'atbashCipherCalculator'
],
#category : #'Exercism-AtbashCipher'
#category : #'Exercise@AtbashCipher'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/binary/.meta/solution/Binary.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ I convert a binary string to decimal. Of note is the non-binary string check, th
Class {
#name : #Binary,
#superclass : #Object,
#category : #'Exercism-Binary'
#category : #'Exercise@Binary'
}

{ #category : #exercism }
Expand Down
2 changes: 1 addition & 1 deletion exercises/binary/BinaryTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Class {
#instVars : [
'binaryCalculator'
],
#category : #'Exercism-Binary'
#category : #'Exercise@Binary'
}

{ #category : #helper }
Expand Down
2 changes: 1 addition & 1 deletion exercises/bowling/.meta/solution/Bowling.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'frames',
'currentFrame'
],
#category : #'Exercism-Bowling'
#category : #'Exercise@Bowling'
}

{ #category : #rolling }
Expand Down
2 changes: 1 addition & 1 deletion exercises/bowling/.meta/solution/Frame.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Class {
'roll2',
'bonus'
],
#category : #'Exercism-Bowling'
#category : #'Exercise@Bowling'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion exercises/bowling/BowlingTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Class {
#instVars : [
'bowlingCalculator'
],
#category : #'Exercism-Bowling'
#category : #'Exercise@Bowling'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/clock/.meta/solution/Clock.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Class {
'hour',
'minute'
],
#category : #'Exercism-Clock'
#category : #'Exercise@Clock'
}

{ #category : #exercism }
Expand Down
2 changes: 1 addition & 1 deletion exercises/clock/ClockTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Class {
'clock1',
'clock2'
],
#category : #'Exercism-Clock'
#category : #'Exercise@Clock'
}

{ #category : #config }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This problem can be solved either by recursion or a simple while loop.
Class {
#name : #CollatzConjecture,
#superclass : #Object,
#category : #'Exercism-CollatzConjecture'
#category : #'Exercise@CollatzConjecture'
}

{ #category : #calculating }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Class {
#instVars : [
'collatzConjectureCalculator'
],
#category : #'Exercism-CollatzConjecture'
#category : #'Exercise@CollatzConjecture'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/darts/.meta/solution/Darts.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This is pretty straight forward if the soluton uses c = sqrt of a^2 + b^2
Class {
#name : #Darts,
#superclass : #Object,
#category : #'Exercism-Darts'
#category : #'Exercise@Darts'
}

{ #category : #scoring }
Expand Down
2 changes: 1 addition & 1 deletion exercises/darts/DartsTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Class {
#instVars : [
'dartsCalculator'
],
#category : #'Exercism-Darts'
#category : #'Exercise@Darts'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/diamond/.meta/solution/Diamond.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ As the output is symetrical, you only have to generate the top half and then mir
Class {
#name : #Diamond,
#superclass : #Object,
#category : #'Exercism-Diamond'
#category : #'Exercise@Diamond'
}

{ #category : #formatting }
Expand Down
2 changes: 1 addition & 1 deletion exercises/diamond/DiamondTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Class {
#instVars : [
'diamondCalculator'
],
#category : #'Exercism-Diamond'
#category : #'Exercise@Diamond'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/etl/.meta/solution/Etl.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ I invert the storage of score/letter storage. While efficiency is not always the
Class {
#name : #Etl,
#superclass : #Object,
#category : #'Exercism-Etl'
#category : #'Exercise@Etl'
}

{ #category : #exercism }
Expand Down
2 changes: 1 addition & 1 deletion exercises/etl/EtlTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Class {
#instVars : [
'etlCalculator'
],
#category : #'Exercism-Etl'
#category : #'Exercise@Etl'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/forth/.meta/solution/Forth.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Class {
'vocabulary',
'currentDefinition'
],
#category : #'Exercism-Forth'
#category : #'Exercise@Forth'
}

{ #category : #vocabulary }
Expand Down
2 changes: 1 addition & 1 deletion exercises/forth/.meta/solution/ForthWord.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Class {
'name',
'definition'
],
#category : #'Exercism-Forth'
#category : #'Exercise@Forth'
}

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion exercises/forth/ForthTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Class {
#instVars : [
'forthCalculator'
],
#category : #'Exercism-Forth'
#category : #'Exercise@Forth'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/grade-school/.meta/solution/GradeSchool.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'students'
],
#category : #'Exercism-GradeSchool'
#category : #'Exercise@GradeSchool'
}

{ #category : #helper }
Expand Down
2 changes: 1 addition & 1 deletion exercises/grade-school/GradeSchoolTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Class {
#instVars : [
'gradeSchoolCalculator'
],
#category : #'Exercism-GradeSchool'
#category : #'Exercise@GradeSchool'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/grains/.meta/solution/Grains.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ I am a recursive solution to the Grains problem.
Class {
#name : #Grains,
#superclass : #Object,
#category : #'Exercism-Grains'
#category : #'Exercise@Grains'
}

{ #category : #exercism }
Expand Down
2 changes: 1 addition & 1 deletion exercises/grains/GrainsTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Class {
#instVars : [
'grainsCalculator'
],
#category : #'Exercism-Grains'
#category : #'Exercise@Grains'
}

{ #category : #helper }
Expand Down
2 changes: 1 addition & 1 deletion exercises/hamming/.meta/solution/Hamming.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ It's useful to extract the error message into a seperate method for readability
Class {
#name : #Hamming,
#superclass : #Object,
#category : #'Exercism-Hamming'
#category : #'Exercise@Hamming'
}

{ #category : #exercism }
Expand Down
2 changes: 1 addition & 1 deletion exercises/hamming/HammingTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Class {
#instVars : [
'hammingCalculator'
],
#category : #'Exercism-Hamming'
#category : #'Exercise@Hamming'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/hello-world/.meta/solution/HelloWorld.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Of interest in this example is that classes in Pharo are singleton objects in th
Class {
#name : #HelloWorld,
#superclass : #Object,
#category : #'Exercism-HelloWorld'
#category : #'Exercise@HelloWorld'
}

{ #category : #example }
Expand Down
2 changes: 1 addition & 1 deletion exercises/hello-world/HelloWorldTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Try doing this with your HelloWorld example, by simply running any one of the un
Class {
#name : #HelloWorldTest,
#superclass : #ExercismTest,
#category : #'Exercism-HelloWorld'
#category : #'Exercise@HelloWorld'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/high-scores/.meta/solution/HighScores.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A simple exercise, of note is how to handle the top three scores - ideally you c
Class {
#name : #HighScores,
#superclass : #Object,
#category : #'Exercism-HighScores'
#category : #'Exercise@HighScores'
}

{ #category : #exercism }
Expand Down
2 changes: 1 addition & 1 deletion exercises/high-scores/HighScoresTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Class {
#instVars : [
'highScoresCalculator'
],
#category : #'Exercism-HighScores'
#category : #'Exercise@HighScores'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/isbn-verifier/.meta/solution/ISBN.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Class {
'digits',
'control'
],
#category : #'Exercism-IsbnVerifier'
#category : #'Exercise@IsbnVerifier'
}

{ #category : #'instance creation' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ I translate the exercism test to a true ISBN object.
Class {
#name : #IsbnVerifier,
#superclass : #Object,
#category : #'Exercism-IsbnVerifier'
#category : #'Exercise@IsbnVerifier'
}

{ #category : #verifying }
Expand Down
2 changes: 1 addition & 1 deletion exercises/isbn-verifier/IsbnVerifierTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Class {
#instVars : [
'isbnVerifierCalculator'
],
#category : #'Exercism-IsbnVerifier'
#category : #'Exercise@IsbnVerifier'
}

{ #category : #config }
Expand Down
2 changes: 1 addition & 1 deletion exercises/isogram/.meta/solution/Isogram.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ By using a Set, the problem is simplified
Class {
#name : #Isogram,
#superclass : #Object,
#category : #'Exercism-Isogram'
#category : #'Exercise@Isogram'
}

{ #category : #exercism }
Expand Down
2 changes: 1 addition & 1 deletion exercises/isogram/IsogramTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Class {
#instVars : [
'isogramCalculator'
],
#category : #'Exercism-Isogram'
#category : #'Exercise@Isogram'
}

{ #category : #helper }
Expand Down
2 changes: 1 addition & 1 deletion exercises/leap/.meta/solution/Leap.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Of interest, in this example is that boolean operations like and: and or: are im
Class {
#name : #Leap,
#superclass : #Object,
#category : #'Exercism-Leap'
#category : #'Exercise@Leap'
}

{ #category : #example }
Expand Down
Loading

0 comments on commit 3367b98

Please sign in to comment.