trackler 2.2.1.100 → 2.2.1.101

Sign up to get free protection for your applications and to get access to all the features.
Files changed (204) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trackler/version.rb +1 -1
  3. data/problem-specifications/exercises/kindergarten-garden/canonical-data.json +37 -19
  4. data/problem-specifications/exercises/ocr-numbers/canonical-data.json +144 -110
  5. data/problem-specifications/exercises/palindrome-products/canonical-data.json +49 -25
  6. data/problem-specifications/exercises/poker/canonical-data.json +171 -115
  7. data/problem-specifications/exercises/prime-factors/canonical-data.json +22 -8
  8. data/problem-specifications/exercises/protein-translation/canonical-data.json +70 -24
  9. data/problem-specifications/exercises/proverb/canonical-data.json +24 -12
  10. data/problem-specifications/exercises/queen-attack/canonical-data.json +115 -91
  11. data/problem-specifications/exercises/rail-fence-cipher/canonical-data.json +25 -13
  12. data/problem-specifications/exercises/raindrops/canonical-data.json +55 -19
  13. data/problem-specifications/exercises/rational-numbers/canonical-data.json +374 -0
  14. data/problem-specifications/exercises/rational-numbers/description.md +27 -0
  15. data/problem-specifications/exercises/rational-numbers/metadata.yml +4 -0
  16. data/problem-specifications/exercises/rectangles/canonical-data.json +93 -67
  17. data/problem-specifications/exercises/reverse-string/canonical-data.json +16 -6
  18. data/problem-specifications/exercises/rna-transcription/metadata.yml +3 -3
  19. data/problem-specifications/exercises/roman-numerals/canonical-data.json +10 -2
  20. data/tracks/bash/config.json +11 -11
  21. data/tracks/c/exercises/roman-numerals/test/test_roman_numerals.c +7 -0
  22. data/tracks/clojure/exercises/armstrong-numbers/README.md +1 -1
  23. data/tracks/delphi/config.json +11 -0
  24. data/tracks/delphi/exercises/clock/uClockExample.pas +6 -1
  25. data/tracks/delphi/exercises/clock/uClockTest.pas +22 -19
  26. data/tracks/delphi/exercises/isbn-verifier/README.md +1 -1
  27. data/tracks/delphi/exercises/reverse-string/README.md +1 -1
  28. data/tracks/delphi/exercises/rna-transcription/README.md +1 -1
  29. data/tracks/delphi/exercises/roman-numerals/uRomanNumeralsTest.pas +14 -0
  30. data/tracks/delphi/exercises/space-age/README.md +45 -0
  31. data/tracks/delphi/exercises/space-age/SpaceAge.dpr +60 -0
  32. data/tracks/delphi/exercises/space-age/uSpaceAgeExample.pas +120 -0
  33. data/tracks/delphi/exercises/space-age/uSpaceAgeTests.pas +135 -0
  34. data/tracks/delphi/exercises/two-fer/README.md +1 -1
  35. data/tracks/elixir/exercises/nth-prime/nth_prime.exs +0 -1
  36. data/tracks/fsharp/exercises/pov/PovTest.fs +66 -53
  37. data/tracks/fsharp/exercises/space-age/Example.fs +11 -11
  38. data/tracks/fsharp/exercises/space-age/SpaceAge.fs +1 -1
  39. data/tracks/fsharp/exercises/space-age/SpaceAgeTest.fs +21 -34
  40. data/tracks/fsharp/exercises/triangle/Example.fs +11 -16
  41. data/tracks/fsharp/exercises/triangle/Triangle.fs +4 -5
  42. data/tracks/fsharp/exercises/triangle/TriangleTest.fs +44 -31
  43. data/tracks/fsharp/generators/Generators.fs +121 -0
  44. data/tracks/go/config.json +12 -0
  45. data/tracks/go/exercises/clock/.meta/gen.go +37 -13
  46. data/tracks/go/exercises/clock/cases_test.go +10 -10
  47. data/tracks/go/exercises/clock/clock_test.go +16 -2
  48. data/tracks/go/exercises/clock/example.go +4 -0
  49. data/tracks/go/exercises/clock/example_clock_test.go +3 -3
  50. data/tracks/go/exercises/parallel-letter-frequency/.meta/hints.md +33 -0
  51. data/tracks/go/exercises/parallel-letter-frequency/README.md +35 -0
  52. data/tracks/go/exercises/raindrops/.meta/hints.md +7 -4
  53. data/tracks/go/exercises/raindrops/README.md +12 -0
  54. data/tracks/go/exercises/roman-numerals/.meta/gen.go +4 -2
  55. data/tracks/go/exercises/roman-numerals/cases_test.go +3 -2
  56. data/tracks/go/exercises/space-age/.meta/hints.md +10 -0
  57. data/tracks/go/exercises/space-age/README.md +14 -1
  58. data/tracks/go/exercises/twelve-days/README.md +2 -5
  59. data/tracks/go/exercises/two-bucket/.meta/gen.go +62 -0
  60. data/tracks/go/exercises/two-bucket/.meta/hints.md +16 -0
  61. data/tracks/go/exercises/two-bucket/README.md +72 -0
  62. data/tracks/go/exercises/two-bucket/cases_test.go +44 -0
  63. data/tracks/go/exercises/two-bucket/example.go +198 -0
  64. data/tracks/go/exercises/two-bucket/two_bucket_test.go +61 -0
  65. data/tracks/idris/.travis.yml +3 -2
  66. data/tracks/idris/bin/fetch-idris-testing.sh +11 -0
  67. data/tracks/idris/bin/solve_exercises.sh +2 -2
  68. data/tracks/idris/config.json +11 -0
  69. data/tracks/idris/config/exercise_readme.go.tmpl +0 -3
  70. data/tracks/idris/docs/INSTALLATION.md +22 -0
  71. data/tracks/idris/docs/TESTS.md +12 -4
  72. data/tracks/idris/exercises/accumulate/src/Accumulate.idr +5 -0
  73. data/tracks/idris/exercises/hamming/Hamming.ipkg +2 -0
  74. data/tracks/idris/exercises/hamming/src/{example.idr → Example.idr} +5 -1
  75. data/tracks/idris/exercises/hamming/src/Hamming.idr +13 -5
  76. data/tracks/idris/exercises/hamming/src/Test/Hamming.idr +31 -58
  77. data/tracks/idris/exercises/hello-world/HelloWorld.ipkg +2 -0
  78. data/tracks/idris/exercises/hello-world/src/Example.idr +9 -0
  79. data/tracks/idris/exercises/hello-world/src/HelloWorld.idr +6 -1
  80. data/tracks/idris/exercises/hello-world/src/Test/HelloWorld.idr +18 -18
  81. data/tracks/idris/exercises/leap/Leap.ipkg +2 -0
  82. data/tracks/idris/exercises/leap/src/{example.idr → Example.idr} +4 -0
  83. data/tracks/idris/exercises/leap/src/Leap.idr +5 -1
  84. data/tracks/idris/exercises/leap/src/Test/Leap.idr +21 -30
  85. data/tracks/idris/exercises/rna-transcription/Makefile +23 -0
  86. data/tracks/idris/exercises/rna-transcription/README.md +27 -0
  87. data/tracks/idris/exercises/rna-transcription/RnaTranscription.ipkg +5 -0
  88. data/tracks/idris/exercises/rna-transcription/src/RnaTranscription.idr +17 -0
  89. data/tracks/idris/exercises/rna-transcription/src/Test/RnaTranscription.idr +27 -0
  90. data/tracks/idris/exercises/rna-transcription/src/example.idr +35 -0
  91. data/tracks/java/exercises/etl/.meta/version +1 -0
  92. data/tracks/java/exercises/gigasecond/.meta/version +1 -0
  93. data/tracks/java/exercises/isbn-verifier/README.md +1 -1
  94. data/tracks/java/exercises/nucleotide-count/.meta/src/reference/java/NucleotideCounter.java +7 -1
  95. data/tracks/java/exercises/nucleotide-count/.meta/version +1 -0
  96. data/tracks/java/exercises/nucleotide-count/src/test/java/NucleotideCounterTest.java +19 -54
  97. data/tracks/java/exercises/proverb/.meta/version +1 -0
  98. data/tracks/java/exercises/reverse-string/README.md +1 -1
  99. data/tracks/java/exercises/rna-transcription/README.md +1 -1
  100. data/tracks/java/exercises/sum-of-multiples/.meta/version +1 -0
  101. data/tracks/java/exercises/sum-of-multiples/src/test/java/SumOfMultiplesTest.java +13 -1
  102. data/tracks/kotlin/config/exercise_readme.go.tmpl +0 -3
  103. data/tracks/kotlin/docs/TESTS.md +1 -1
  104. data/tracks/objective-c/config.json +11 -0
  105. data/tracks/objective-c/exercises/collatz-conjecture/CollatzConjectureExample.h +7 -0
  106. data/tracks/objective-c/exercises/collatz-conjecture/CollatzConjectureExample.m +26 -0
  107. data/tracks/objective-c/exercises/collatz-conjecture/CollatzConjectureTest.m +39 -0
  108. data/tracks/objective-c/xcodeProject/ObjectiveC.xcodeproj/project.pbxproj +31 -1
  109. data/tracks/objective-c/xcodeProject/ObjectiveC.xcodeproj/xcshareddata/xcschemes/OCLint.xcscheme +3 -1
  110. data/tracks/objective-c/xcodeProject/ObjectiveC.xcodeproj/xcshareddata/xcschemes/xobjectivecTest.xcscheme +3 -1
  111. data/tracks/ocaml/exercises/forth/example.ml +9 -9
  112. data/tracks/ocaml/tools/test-generator/Makefile +3 -9
  113. data/tracks/ocaml/tools/test-generator/src/test_gen.ml +18 -16
  114. data/tracks/perl6/exercises/acronym/.meta/exercise-data.yaml +1 -1
  115. data/tracks/perl6/exercises/acronym/acronym.t +4 -14
  116. data/tracks/perl6/exercises/all-your-base/all-your-base.t +0 -2
  117. data/tracks/perl6/exercises/allergies/allergies.t +0 -2
  118. data/tracks/perl6/exercises/anagram/.meta/exercise-data.yaml +1 -1
  119. data/tracks/perl6/exercises/anagram/anagram.t +2 -40
  120. data/tracks/perl6/exercises/atbash-cipher/atbash-cipher.t +0 -1
  121. data/tracks/perl6/exercises/bob/bob.t +0 -2
  122. data/tracks/perl6/exercises/clock/.meta/exercise-data.yaml +15 -11
  123. data/tracks/perl6/exercises/clock/.meta/solutions/Clock.pm6 +5 -1
  124. data/tracks/perl6/exercises/clock/Clock.pm6 +1 -1
  125. data/tracks/perl6/exercises/clock/clock.t +314 -217
  126. data/tracks/perl6/exercises/etl/etl.t +0 -2
  127. data/tracks/perl6/exercises/flatten-array/flatten-array.t +0 -2
  128. data/tracks/perl6/exercises/grains/grains.t +0 -2
  129. data/tracks/perl6/exercises/hamming/.meta/exercise-data.yaml +2 -2
  130. data/tracks/perl6/exercises/hamming/hamming.t +63 -35
  131. data/tracks/perl6/exercises/hello-world/hello-world.t +2 -3
  132. data/tracks/perl6/exercises/leap/.meta/exercise-data.yaml +1 -1
  133. data/tracks/perl6/exercises/leap/leap.t +14 -8
  134. data/tracks/perl6/exercises/luhn/luhn.t +0 -2
  135. data/tracks/perl6/exercises/nucleotide-count/.meta/exercise-data.yaml +2 -2
  136. data/tracks/perl6/exercises/nucleotide-count/nucleotide-count.t +18 -10
  137. data/tracks/perl6/exercises/pangram/.meta/exercise-data.yaml +1 -1
  138. data/tracks/perl6/exercises/pangram/pangram.t +32 -14
  139. data/tracks/perl6/exercises/phone-number/.meta/exercise-data.yaml +4 -4
  140. data/tracks/perl6/exercises/phone-number/.meta/solutions/Phone.pm6 +1 -1
  141. data/tracks/perl6/exercises/phone-number/Phone.pm6 +1 -1
  142. data/tracks/perl6/exercises/phone-number/phone-number.t +59 -21
  143. data/tracks/perl6/exercises/raindrops/raindrops.t +0 -2
  144. data/tracks/perl6/exercises/rna-transcription/.meta/exercise-data.yaml +1 -1
  145. data/tracks/perl6/exercises/rna-transcription/README.md +1 -1
  146. data/tracks/perl6/exercises/rna-transcription/rna-transcription.t +17 -9
  147. data/tracks/perl6/exercises/roman-numerals/.meta/exercise-data.yaml +3 -3
  148. data/tracks/perl6/exercises/roman-numerals/.meta/solutions/RomanNumerals.pm6 +1 -1
  149. data/tracks/perl6/exercises/roman-numerals/RomanNumerals.pm6 +1 -1
  150. data/tracks/perl6/exercises/roman-numerals/roman-numerals.t +66 -24
  151. data/tracks/perl6/exercises/scrabble-score/.meta/exercise-data.yaml +1 -1
  152. data/tracks/perl6/exercises/scrabble-score/scrabble-score.t +35 -15
  153. data/tracks/perl6/exercises/space-age/.meta/exercise-data.yaml +1 -1
  154. data/tracks/perl6/exercises/space-age/space-age.t +34 -20
  155. data/tracks/perl6/exercises/two-fer/.meta/exercise-data.yaml +2 -2
  156. data/tracks/perl6/exercises/two-fer/two-fer.t +15 -11
  157. data/tracks/perl6/exercises/word-count/.meta/exercise-data.yaml +1 -1
  158. data/tracks/perl6/exercises/word-count/word-count.t +46 -26
  159. data/tracks/perl6/exercises/wordy/.meta/exercise-data.yaml +2 -2
  160. data/tracks/perl6/exercises/wordy/wordy.t +51 -21
  161. data/tracks/perl6/lib/Exercism/Generator.pm6 +1 -1
  162. data/tracks/perl6/t/generated-tests.t +1 -1
  163. data/tracks/perl6/templates/test.mustache +0 -1
  164. data/tracks/python/config.json +12 -0
  165. data/tracks/python/exercises/forth/example.py +1 -1
  166. data/tracks/python/exercises/forth/forth_test.py +43 -38
  167. data/tracks/python/exercises/spiral-matrix/README.md +42 -0
  168. data/tracks/python/exercises/spiral-matrix/example.py +11 -0
  169. data/tracks/python/exercises/spiral-matrix/spiral_matrix.py +2 -0
  170. data/tracks/python/exercises/spiral-matrix/spiral_matrix_test.py +40 -0
  171. data/tracks/racket/config/exercise_readme.go.tmpl +24 -4
  172. data/tracks/racket/exercises/accumulate/README.md +3 -6
  173. data/tracks/racket/exercises/acronym/README.md +3 -4
  174. data/tracks/racket/exercises/allergies/README.md +3 -4
  175. data/tracks/racket/exercises/anagram/README.md +3 -3
  176. data/tracks/racket/exercises/bob/README.md +5 -3
  177. data/tracks/racket/exercises/collatz-conjecture/README.md +3 -3
  178. data/tracks/racket/exercises/difference-of-squares/README.md +3 -3
  179. data/tracks/racket/exercises/etl/README.md +6 -4
  180. data/tracks/racket/exercises/gigasecond/README.md +3 -3
  181. data/tracks/racket/exercises/grains/README.md +3 -4
  182. data/tracks/racket/exercises/grep/README.md +15 -15
  183. data/tracks/racket/exercises/hamming/README.md +3 -3
  184. data/tracks/racket/exercises/hello-world/README.md +1 -1
  185. data/tracks/racket/exercises/leap/README.md +4 -4
  186. data/tracks/racket/exercises/list-ops/README.md +3 -4
  187. data/tracks/racket/exercises/meetup/README.md +19 -15
  188. data/tracks/racket/exercises/nucleotide-count/README.md +11 -25
  189. data/tracks/racket/exercises/perfect-numbers/README.md +5 -5
  190. data/tracks/racket/exercises/phone-number/README.md +7 -6
  191. data/tracks/racket/exercises/raindrops/README.md +3 -3
  192. data/tracks/racket/exercises/rna-transcription/README.md +4 -4
  193. data/tracks/racket/exercises/roman-numerals/README.md +4 -4
  194. data/tracks/racket/exercises/say/README.md +3 -3
  195. data/tracks/racket/exercises/scrabble-score/README.md +6 -4
  196. data/tracks/racket/exercises/word-count/README.md +4 -5
  197. data/tracks/scheme/config/exercise_readme.go.tmpl +0 -3
  198. data/tracks/scheme/docs/INSTALLATION.md +23 -14
  199. metadata +40 -9
  200. data/tracks/idris/docs/EXERCISE_README_INSERT.md +0 -0
  201. data/tracks/idris/exercises/hello-world/src/example.idr +0 -5
  202. data/tracks/kotlin/config/exercise-readme-insert.md +0 -1
  203. data/tracks/racket/docs/EXERCISE_README_INSERT.md +0 -23
  204. data/tracks/scheme/docs/EXERCISE_README_INSERT.md +0 -0
@@ -26,16 +26,16 @@ You can run the provided tests through DrRacket, or via the command line.
26
26
 
27
27
  To run the test through DrRacket, simply open the test file and click the 'Run' button in the upper right.
28
28
 
29
- To run the test from the command line, simply run the test from the exercise directory. For example, if the test suite is called `hello-world-test.rkt`, you can run the following command:
29
+ To run the test from the command line, run the test from the exercise directory with the following command:
30
30
 
31
31
  ```
32
- raco test hello-world-test.rkt
32
+ raco test raindrops-test.rkt
33
33
  ```
34
34
 
35
35
  which will display the following:
36
36
 
37
37
  ```
38
- raco test: (submod "hello-world-test.rkt" test)
38
+ raco test: (submod "raindrops-test.rkt" test)
39
39
  2 success(es) 0 failure(s) 0 error(s) 2 test(s) run
40
40
  0
41
41
  2 tests passed
@@ -1,4 +1,4 @@
1
- # Rna Transcription
1
+ # RNA Transcription
2
2
 
3
3
  Given a DNA strand, return its RNA complement (per RNA transcription).
4
4
 
@@ -27,16 +27,16 @@ You can run the provided tests through DrRacket, or via the command line.
27
27
 
28
28
  To run the test through DrRacket, simply open the test file and click the 'Run' button in the upper right.
29
29
 
30
- To run the test from the command line, simply run the test from the exercise directory. For example, if the test suite is called `hello-world-test.rkt`, you can run the following command:
30
+ To run the test from the command line, run the test from the exercise directory with the following command:
31
31
 
32
32
  ```
33
- raco test hello-world-test.rkt
33
+ raco test rna-transcription-test.rkt
34
34
  ```
35
35
 
36
36
  which will display the following:
37
37
 
38
38
  ```
39
- raco test: (submod "hello-world-test.rkt" test)
39
+ raco test: (submod "rna-transcription-test.rkt" test)
40
40
  2 success(es) 0 failure(s) 0 error(s) 2 test(s) run
41
41
  0
42
42
  2 tests passed
@@ -14,7 +14,7 @@ The Romans wrote numbers using letters - I, V, X, L, C, D, M. (notice
14
14
  these letters have lots of straight lines and are hence easy to hack
15
15
  into stone tablets).
16
16
 
17
- ```
17
+ ```text
18
18
  1 => I
19
19
  10 => X
20
20
  7 => VII
@@ -51,16 +51,16 @@ You can run the provided tests through DrRacket, or via the command line.
51
51
 
52
52
  To run the test through DrRacket, simply open the test file and click the 'Run' button in the upper right.
53
53
 
54
- To run the test from the command line, simply run the test from the exercise directory. For example, if the test suite is called `hello-world-test.rkt`, you can run the following command:
54
+ To run the test from the command line, run the test from the exercise directory with the following command:
55
55
 
56
56
  ```
57
- raco test hello-world-test.rkt
57
+ raco test roman-numerals-test.rkt
58
58
  ```
59
59
 
60
60
  which will display the following:
61
61
 
62
62
  ```
63
- raco test: (submod "hello-world-test.rkt" test)
63
+ raco test: (submod "roman-numerals-test.rkt" test)
64
64
  2 success(es) 0 failure(s) 0 error(s) 2 test(s) run
65
65
  0
66
66
  2 tests passed
@@ -71,16 +71,16 @@ You can run the provided tests through DrRacket, or via the command line.
71
71
 
72
72
  To run the test through DrRacket, simply open the test file and click the 'Run' button in the upper right.
73
73
 
74
- To run the test from the command line, simply run the test from the exercise directory. For example, if the test suite is called `hello-world-test.rkt`, you can run the following command:
74
+ To run the test from the command line, run the test from the exercise directory with the following command:
75
75
 
76
76
  ```
77
- raco test hello-world-test.rkt
77
+ raco test say-test.rkt
78
78
  ```
79
79
 
80
80
  which will display the following:
81
81
 
82
82
  ```
83
- raco test: (submod "hello-world-test.rkt" test)
83
+ raco test: (submod "say-test.rkt" test)
84
84
  2 success(es) 0 failure(s) 0 error(s) 2 test(s) run
85
85
  0
86
86
  2 tests passed
@@ -6,7 +6,7 @@ Given a word, compute the scrabble score for that word.
6
6
 
7
7
  You'll need these:
8
8
 
9
- ```plain
9
+ ```text
10
10
  Letter Value
11
11
  A, E, I, O, U, L, N, R, S, T 1
12
12
  D, G 2
@@ -18,6 +18,7 @@ Q, Z 10
18
18
  ```
19
19
 
20
20
  ## Examples
21
+
21
22
  "cabbage" should be scored as worth 14 points:
22
23
 
23
24
  - 3 points for C
@@ -34,6 +35,7 @@ And to total:
34
35
  - = 14
35
36
 
36
37
  ## Extensions
38
+
37
39
  - You can play a double or a triple letter.
38
40
  - You can play a double or a triple word.
39
41
 
@@ -46,16 +48,16 @@ You can run the provided tests through DrRacket, or via the command line.
46
48
 
47
49
  To run the test through DrRacket, simply open the test file and click the 'Run' button in the upper right.
48
50
 
49
- To run the test from the command line, simply run the test from the exercise directory. For example, if the test suite is called `hello-world-test.rkt`, you can run the following command:
51
+ To run the test from the command line, run the test from the exercise directory with the following command:
50
52
 
51
53
  ```
52
- raco test hello-world-test.rkt
54
+ raco test scrabble-score-test.rkt
53
55
  ```
54
56
 
55
57
  which will display the following:
56
58
 
57
59
  ```
58
- raco test: (submod "hello-world-test.rkt" test)
60
+ raco test: (submod "scrabble-score-test.rkt" test)
59
61
  2 success(es) 0 failure(s) 0 error(s) 2 test(s) run
60
62
  0
61
63
  2 tests passed
@@ -4,14 +4,13 @@ Given a phrase, count the occurrences of each word in that phrase.
4
4
 
5
5
  For example for the input `"olly olly in come free"`
6
6
 
7
- ```plain
7
+ ```text
8
8
  olly: 2
9
9
  in: 1
10
10
  come: 1
11
11
  free: 1
12
12
  ```
13
13
 
14
-
15
14
  * * * *
16
15
 
17
16
  For installation and learning resources, refer to the
@@ -21,16 +20,16 @@ You can run the provided tests through DrRacket, or via the command line.
21
20
 
22
21
  To run the test through DrRacket, simply open the test file and click the 'Run' button in the upper right.
23
22
 
24
- To run the test from the command line, simply run the test from the exercise directory. For example, if the test suite is called `hello-world-test.rkt`, you can run the following command:
23
+ To run the test from the command line, run the test from the exercise directory with the following command:
25
24
 
26
25
  ```
27
- raco test hello-world-test.rkt
26
+ raco test word-count-test.rkt
28
27
  ```
29
28
 
30
29
  which will display the following:
31
30
 
32
31
  ```
33
- raco test: (submod "hello-world-test.rkt" test)
32
+ raco test: (submod "word-count-test.rkt" test)
34
33
  2 success(es) 0 failure(s) 0 error(s) 2 test(s) run
35
34
  0
36
35
  2 tests passed
@@ -4,9 +4,6 @@
4
4
  {{- with .Hints }}
5
5
  {{ . }}
6
6
  {{ end }}
7
- {{- with .TrackInsert }}
8
- {{ . }}
9
- {{ end }}
10
7
  {{- with .Spec.Credits -}}
11
8
  ## Source
12
9
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Install [Guile Scheme](http://www.gnu.org/software/guile/), a free, open-source scheme implementation available on a variety of platforms.
4
4
 
5
- **OS X**
5
+ ### OS X
6
6
 
7
7
  Install via Homebrew:
8
8
 
@@ -10,28 +10,30 @@ Install via Homebrew:
10
10
  brew install guile
11
11
  ```
12
12
 
13
- **Linux**
13
+ ### Linux
14
14
 
15
15
  On most Linux distros, Guile is probably already installed as it's the official
16
- GNU extension language. If not, use your distro's package manager to install, e.g.:
16
+ GNU extension language. If not, in most cases, you can use your distro's package manager to install it.
17
+
18
+ #### Debian
17
19
 
18
- Debian:
19
20
  ```bash
20
21
  sudo apt-get install guile
21
22
  ```
22
23
 
23
- Arch:
24
+ #### Arch
25
+
24
26
  ```bash
25
27
  pacman -S guile
26
28
  ```
27
29
 
28
- Ubuntu:
30
+ #### Ubuntu 14.04
29
31
 
30
- In ubuntu 14.04 the packages for guile are missing modules that prevent the
31
- tests from running.
32
- Guile can be installed from source under your home directory by following the
33
- instructions below.
34
- ```
32
+ The Guile packages for Ubuntu 14.04 are missing modules that prevent the tests
33
+ from running. Guile can be installed from source under your home directory by
34
+ following the instructions below.
35
+
36
+ ```bash
35
37
  sudo apt-get install libltdl-dev libunistring-dev libgc-dev libmpd-dev libgmp3-dev libffi-dev
36
38
  cd $HOME/Downloads/
37
39
  wget ftp://ftp.gnu.org/gnu/guile/guile-2.0.11.tar.gz
@@ -46,9 +48,16 @@ ln -s $HOME/lib/guile/bin/guile $HOME/bin/guile
46
48
  After installation is complete you will need to log out and back into ubuntu
47
49
  in order for the path to be set on your /home/bin directory.
48
50
 
49
- **Windows**
51
+ #### Ubuntu 16.04
52
+
53
+ ```bash
54
+ sudo apt install guile-2.0
55
+ ```
56
+
57
+ ### Windows
50
58
 
51
- Guile can theoretically be compiled from source under [Cygwin](https://www.cygwin.com/), but as with
52
- many things, it's probably easier just to run a Linux VM.
59
+ Guile can theoretically be compiled from source under
60
+ [Cygwin](https://www.cygwin.com/), but as with many things, it's probably easier
61
+ just to run a Linux VM.
53
62
 
54
63
  You shouldn't need any "extra" packages.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trackler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1.100
4
+ version: 2.2.1.101
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katrina Owen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-25 00:00:00.000000000 Z
11
+ date: 2018-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip
@@ -475,6 +475,9 @@ files:
475
475
  - problem-specifications/exercises/raindrops/canonical-data.json
476
476
  - problem-specifications/exercises/raindrops/description.md
477
477
  - problem-specifications/exercises/raindrops/metadata.yml
478
+ - problem-specifications/exercises/rational-numbers/canonical-data.json
479
+ - problem-specifications/exercises/rational-numbers/description.md
480
+ - problem-specifications/exercises/rational-numbers/metadata.yml
478
481
  - problem-specifications/exercises/react/canonical-data.json
479
482
  - problem-specifications/exercises/react/description.md
480
483
  - problem-specifications/exercises/react/metadata.yml
@@ -3466,6 +3469,10 @@ files:
3466
3469
  - tracks/delphi/exercises/secret-handshake/SecretHandshake.dpr
3467
3470
  - tracks/delphi/exercises/secret-handshake/uSecretHandshakeExample.pas
3468
3471
  - tracks/delphi/exercises/secret-handshake/uTestSecretHandshake.pas
3472
+ - tracks/delphi/exercises/space-age/README.md
3473
+ - tracks/delphi/exercises/space-age/SpaceAge.dpr
3474
+ - tracks/delphi/exercises/space-age/uSpaceAgeExample.pas
3475
+ - tracks/delphi/exercises/space-age/uSpaceAgeTests.pas
3469
3476
  - tracks/delphi/exercises/triangle/README.md
3470
3477
  - tracks/delphi/exercises/triangle/Triangle.dpr
3471
3478
  - tracks/delphi/exercises/triangle/uTestTriangle.pas
@@ -6132,6 +6139,7 @@ files:
6132
6139
  - tracks/go/exercises/pangram/cases_test.go
6133
6140
  - tracks/go/exercises/pangram/example.go
6134
6141
  - tracks/go/exercises/pangram/pangram_test.go
6142
+ - tracks/go/exercises/parallel-letter-frequency/.meta/hints.md
6135
6143
  - tracks/go/exercises/parallel-letter-frequency/README.md
6136
6144
  - tracks/go/exercises/parallel-letter-frequency/example.go
6137
6145
  - tracks/go/exercises/parallel-letter-frequency/frequency.go
@@ -6273,6 +6281,7 @@ files:
6273
6281
  - tracks/go/exercises/simple-linked-list/example.go
6274
6282
  - tracks/go/exercises/simple-linked-list/linked_list_test.go
6275
6283
  - tracks/go/exercises/space-age/.meta/gen.go
6284
+ - tracks/go/exercises/space-age/.meta/hints.md
6276
6285
  - tracks/go/exercises/space-age/README.md
6277
6286
  - tracks/go/exercises/space-age/cases_test.go
6278
6287
  - tracks/go/exercises/space-age/example.go
@@ -6316,6 +6325,12 @@ files:
6316
6325
  - tracks/go/exercises/twelve-days/README.md
6317
6326
  - tracks/go/exercises/twelve-days/example.go
6318
6327
  - tracks/go/exercises/twelve-days/twelve_days_test.go
6328
+ - tracks/go/exercises/two-bucket/.meta/gen.go
6329
+ - tracks/go/exercises/two-bucket/.meta/hints.md
6330
+ - tracks/go/exercises/two-bucket/README.md
6331
+ - tracks/go/exercises/two-bucket/cases_test.go
6332
+ - tracks/go/exercises/two-bucket/example.go
6333
+ - tracks/go/exercises/two-bucket/two_bucket_test.go
6319
6334
  - tracks/go/exercises/two-fer/README.md
6320
6335
  - tracks/go/exercises/two-fer/example.go
6321
6336
  - tracks/go/exercises/two-fer/example_two_fer_test.go
@@ -7206,13 +7221,13 @@ files:
7206
7221
  - tracks/idris/_src/Makefile.template
7207
7222
  - tracks/idris/bin/fetch-configlet
7208
7223
  - tracks/idris/bin/fetch-exercism-infra.sh
7224
+ - tracks/idris/bin/fetch-idris-testing.sh
7209
7225
  - tracks/idris/bin/fetch-stack.sh
7210
7226
  - tracks/idris/bin/solve_exercises.sh
7211
7227
  - tracks/idris/config.json
7212
7228
  - tracks/idris/config/exercise_readme.go.tmpl
7213
7229
  - tracks/idris/config/maintainers.json
7214
7230
  - tracks/idris/docs/ABOUT.md
7215
- - tracks/idris/docs/EXERCISE_README_INSERT.md
7216
7231
  - tracks/idris/docs/INSTALLATION.md
7217
7232
  - tracks/idris/docs/LEARNING.md
7218
7233
  - tracks/idris/docs/RESOURCES.md
@@ -7222,26 +7237,33 @@ files:
7222
7237
  - tracks/idris/exercises/accumulate/Accumulate.ipkg
7223
7238
  - tracks/idris/exercises/accumulate/Makefile
7224
7239
  - tracks/idris/exercises/accumulate/README.md
7240
+ - tracks/idris/exercises/accumulate/src/Accumulate.idr
7225
7241
  - tracks/idris/exercises/accumulate/src/Example.idr
7226
7242
  - tracks/idris/exercises/accumulate/src/Test/Accumulate.idr
7227
7243
  - tracks/idris/exercises/hamming/Hamming.ipkg
7228
7244
  - tracks/idris/exercises/hamming/Makefile
7229
7245
  - tracks/idris/exercises/hamming/README.md
7246
+ - tracks/idris/exercises/hamming/src/Example.idr
7230
7247
  - tracks/idris/exercises/hamming/src/Hamming.idr
7231
7248
  - tracks/idris/exercises/hamming/src/Test/Hamming.idr
7232
- - tracks/idris/exercises/hamming/src/example.idr
7233
7249
  - tracks/idris/exercises/hello-world/HelloWorld.ipkg
7234
7250
  - tracks/idris/exercises/hello-world/Makefile
7235
7251
  - tracks/idris/exercises/hello-world/README.md
7252
+ - tracks/idris/exercises/hello-world/src/Example.idr
7236
7253
  - tracks/idris/exercises/hello-world/src/HelloWorld.idr
7237
7254
  - tracks/idris/exercises/hello-world/src/Test/HelloWorld.idr
7238
- - tracks/idris/exercises/hello-world/src/example.idr
7239
7255
  - tracks/idris/exercises/leap/Leap.ipkg
7240
7256
  - tracks/idris/exercises/leap/Makefile
7241
7257
  - tracks/idris/exercises/leap/README.md
7258
+ - tracks/idris/exercises/leap/src/Example.idr
7242
7259
  - tracks/idris/exercises/leap/src/Leap.idr
7243
7260
  - tracks/idris/exercises/leap/src/Test/Leap.idr
7244
- - tracks/idris/exercises/leap/src/example.idr
7261
+ - tracks/idris/exercises/rna-transcription/Makefile
7262
+ - tracks/idris/exercises/rna-transcription/README.md
7263
+ - tracks/idris/exercises/rna-transcription/RnaTranscription.ipkg
7264
+ - tracks/idris/exercises/rna-transcription/src/RnaTranscription.idr
7265
+ - tracks/idris/exercises/rna-transcription/src/Test/RnaTranscription.idr
7266
+ - tracks/idris/exercises/rna-transcription/src/example.idr
7245
7267
  - tracks/idris/img/.keep
7246
7268
  - tracks/idris/img/icon.png
7247
7269
  - tracks/java/.git
@@ -7441,6 +7463,7 @@ files:
7441
7463
  - tracks/java/exercises/difference-of-squares/src/main/java/DifferenceOfSquaresCalculator.java
7442
7464
  - tracks/java/exercises/difference-of-squares/src/test/java/DifferenceOfSquaresCalculatorTest.java
7443
7465
  - tracks/java/exercises/etl/.meta/src/reference/java/Etl.java
7466
+ - tracks/java/exercises/etl/.meta/version
7444
7467
  - tracks/java/exercises/etl/README.md
7445
7468
  - tracks/java/exercises/etl/build.gradle
7446
7469
  - tracks/java/exercises/etl/src/main/java/Etl.java
@@ -7467,6 +7490,7 @@ files:
7467
7490
  - tracks/java/exercises/forth/src/main/java/.keep
7468
7491
  - tracks/java/exercises/forth/src/test/java/ForthEvaluatorTest.java
7469
7492
  - tracks/java/exercises/gigasecond/.meta/src/reference/java/Gigasecond.java
7493
+ - tracks/java/exercises/gigasecond/.meta/version
7470
7494
  - tracks/java/exercises/gigasecond/README.md
7471
7495
  - tracks/java/exercises/gigasecond/build.gradle
7472
7496
  - tracks/java/exercises/gigasecond/src/main/java/Gigasecond.java
@@ -7578,6 +7602,7 @@ files:
7578
7602
  - tracks/java/exercises/nth-prime/src/test/java/PrimeCalculatorTest.java
7579
7603
  - tracks/java/exercises/nucleotide-count/.meta/hints.md
7580
7604
  - tracks/java/exercises/nucleotide-count/.meta/src/reference/java/NucleotideCounter.java
7605
+ - tracks/java/exercises/nucleotide-count/.meta/version
7581
7606
  - tracks/java/exercises/nucleotide-count/README.md
7582
7607
  - tracks/java/exercises/nucleotide-count/build.gradle
7583
7608
  - tracks/java/exercises/nucleotide-count/src/main/java/.keep
@@ -7660,6 +7685,7 @@ files:
7660
7685
  - tracks/java/exercises/protein-translation/src/main/java/ProteinTranslator.java
7661
7686
  - tracks/java/exercises/protein-translation/src/test/java/ProteinTranslatorTest.java
7662
7687
  - tracks/java/exercises/proverb/.meta/src/reference/java/Proverb.java
7688
+ - tracks/java/exercises/proverb/.meta/version
7663
7689
  - tracks/java/exercises/proverb/README.md
7664
7690
  - tracks/java/exercises/proverb/build.gradle
7665
7691
  - tracks/java/exercises/proverb/src/main/java/Proverb.java
@@ -7813,6 +7839,7 @@ files:
7813
7839
  - tracks/java/exercises/sublist/src/main/java/Relationship.java
7814
7840
  - tracks/java/exercises/sublist/src/test/java/RelationshipComputerTest.java
7815
7841
  - tracks/java/exercises/sum-of-multiples/.meta/src/reference/java/SumOfMultiples.java
7842
+ - tracks/java/exercises/sum-of-multiples/.meta/version
7816
7843
  - tracks/java/exercises/sum-of-multiples/README.md
7817
7844
  - tracks/java/exercises/sum-of-multiples/build.gradle
7818
7845
  - tracks/java/exercises/sum-of-multiples/src/main/java/SumOfMultiples.java
@@ -8359,7 +8386,6 @@ files:
8359
8386
  - tracks/kotlin/bin/journey-test.sh
8360
8387
  - tracks/kotlin/bin/unit-tests.sh
8361
8388
  - tracks/kotlin/config.json
8362
- - tracks/kotlin/config/exercise-readme-insert.md
8363
8389
  - tracks/kotlin/config/exercise_readme.go.tmpl
8364
8390
  - tracks/kotlin/config/maintainers.json
8365
8391
  - tracks/kotlin/docs/ABOUT.md
@@ -9481,6 +9507,9 @@ files:
9481
9507
  - tracks/objective-c/exercises/clock/ClockExample.m
9482
9508
  - tracks/objective-c/exercises/clock/ClockTest.m
9483
9509
  - tracks/objective-c/exercises/clock/README.md
9510
+ - tracks/objective-c/exercises/collatz-conjecture/CollatzConjectureExample.h
9511
+ - tracks/objective-c/exercises/collatz-conjecture/CollatzConjectureExample.m
9512
+ - tracks/objective-c/exercises/collatz-conjecture/CollatzConjectureTest.m
9484
9513
  - tracks/objective-c/exercises/crypto-square/CryptoSquareExample.h
9485
9514
  - tracks/objective-c/exercises/crypto-square/CryptoSquareExample.m
9486
9515
  - tracks/objective-c/exercises/crypto-square/CryptoSquareTest.m
@@ -11367,6 +11396,10 @@ files:
11367
11396
  - tracks/python/exercises/space-age/example.py
11368
11397
  - tracks/python/exercises/space-age/space_age.py
11369
11398
  - tracks/python/exercises/space-age/space_age_test.py
11399
+ - tracks/python/exercises/spiral-matrix/README.md
11400
+ - tracks/python/exercises/spiral-matrix/example.py
11401
+ - tracks/python/exercises/spiral-matrix/spiral_matrix.py
11402
+ - tracks/python/exercises/spiral-matrix/spiral_matrix_test.py
11370
11403
  - tracks/python/exercises/strain/README.md
11371
11404
  - tracks/python/exercises/strain/example.py
11372
11405
  - tracks/python/exercises/strain/strain.py
@@ -11590,7 +11623,6 @@ files:
11590
11623
  - tracks/racket/config/exercise_readme.go.tmpl
11591
11624
  - tracks/racket/config/maintainers.json
11592
11625
  - tracks/racket/docs/ABOUT.md
11593
- - tracks/racket/docs/EXERCISE_README_INSERT.md
11594
11626
  - tracks/racket/docs/INSTALLATION.md
11595
11627
  - tracks/racket/docs/LEARNING.md
11596
11628
  - tracks/racket/docs/RESOURCES.md
@@ -13338,7 +13370,6 @@ files:
13338
13370
  - tracks/scheme/config/exercise_readme.go.tmpl
13339
13371
  - tracks/scheme/config/maintainers.json
13340
13372
  - tracks/scheme/docs/ABOUT.md
13341
- - tracks/scheme/docs/EXERCISE_README_INSERT.md
13342
13373
  - tracks/scheme/docs/INSTALLATION.md
13343
13374
  - tracks/scheme/docs/RESOURCES.md
13344
13375
  - tracks/scheme/docs/SNIPPET.txt