trackler 2.1.0.34 → 2.1.0.36

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trackler/version.rb +1 -1
  3. data/tracks/coq/config.json +3 -5
  4. data/tracks/csharp/.gitignore +5 -1
  5. data/tracks/csharp/exercises/acronym/AcronymTest.cs +3 -7
  6. data/tracks/csharp/exercises/atbash-cipher/AtbashCipherTest.cs +2 -0
  7. data/tracks/csharp/exercises/beer-song/BeerSongTest.cs +9 -7
  8. data/tracks/csharp/exercises/bob/Bob.cs +1 -1
  9. data/tracks/csharp/exercises/bob/BobTest.cs +79 -37
  10. data/tracks/csharp/exercises/bob/Example.cs +1 -1
  11. data/tracks/csharp/exercises/food-chain/FoodChainTest.cs +2 -0
  12. data/tracks/csharp/exercises/hello-world/HelloWorldTest.cs +5 -3
  13. data/tracks/csharp/exercises/isogram/IsogramTest.cs +8 -0
  14. data/tracks/csharp/exercises/leap/LeapTest.cs +2 -0
  15. data/tracks/csharp/exercises/luhn/LuhnTest.cs +2 -0
  16. data/tracks/csharp/exercises/nth-prime/NthPrimeTest.cs +2 -0
  17. data/tracks/csharp/exercises/perfect-numbers/PerfectNumbersTest.cs +2 -0
  18. data/tracks/csharp/exercises/pig-latin/PigLatinTest.cs +2 -0
  19. data/tracks/csharp/exercises/raindrops/RaindropsTest.cs +2 -0
  20. data/tracks/csharp/exercises/roman-numerals/RomanNumeralsTest.cs +2 -0
  21. data/tracks/csharp/exercises/rotational-cipher/RotationalCipherTest.cs +2 -0
  22. data/tracks/csharp/exercises/wordy/WordyTest.cs +2 -0
  23. data/tracks/csharp/generators/Classes/TestClass.cs +1 -0
  24. data/tracks/csharp/generators/Classes/TestClassRenderer.cs +4 -1
  25. data/tracks/csharp/generators/Exercises/Bob.cs +20 -0
  26. data/tracks/csharp/generators/Exercises/Exercise.cs +2 -1
  27. data/tracks/csharp/generators/Methods/TestMethodGenerator.cs +4 -0
  28. data/tracks/delphi/exercises/hello-world/uTestHelloWorld.pas +12 -1
  29. data/tracks/elixir/config.json +58 -7
  30. data/tracks/go/config.json +5 -6
  31. data/tracks/go/exercises/anagram/anagram_test.go +2 -2
  32. data/tracks/go/exercises/anagram/example.go +2 -3
  33. data/tracks/java/.travis.yml +9 -9
  34. data/tracks/java/bin/fetch-configlet +1 -1
  35. data/tracks/java/bin/journey-test.sh +23 -17
  36. data/tracks/java/bin/unit-tests.sh +2 -2
  37. data/tracks/julia/exercises/rotational-cipher/runtests.jl +13 -13
  38. data/tracks/julia/runtests.jl +13 -0
  39. data/tracks/lisp/config.json +174 -120
  40. data/tracks/lua/README.md +9 -8
  41. data/tracks/ocaml/config.json +0 -5
  42. data/tracks/php/config.json +424 -402
  43. data/tracks/ruby/README.md +6 -0
  44. data/tracks/scala/config.json +0 -7
  45. data/tracks/typescript/config.json +27 -13
  46. metadata +3 -2
@@ -1,402 +1,424 @@
1
- {
2
- "slug": "php",
3
- "language": "PHP",
4
- "repository": "https://github.com/exercism/xphp",
5
- "active": true,
6
- "deprecated": [
7
-
8
- ],
9
- "ignored": [
10
- "docs",
11
- "img"
12
- ],
13
- "foregone": [
14
-
15
- ],
16
- "exercises": [
17
- {
18
- "slug": "hello-world",
19
- "difficulty": 1,
20
- "topics": [
21
- "Text formatting",
22
- "Optional values"
23
- ]
24
- },
25
- {
26
- "slug": "hamming",
27
- "difficulty": 2,
28
- "topics": [
29
- "Strings",
30
- "Filtering"
31
- ]
32
- },
33
- {
34
- "slug": "gigasecond",
35
- "difficulty": 2,
36
- "topics": [
37
- "Dates"
38
- ]
39
- },
40
- {
41
- "slug": "bob",
42
- "difficulty": 4,
43
- "topics": [
44
- "Strings",
45
- "Control-flow (if-else statements)"
46
- ]
47
- },
48
- {
49
- "slug": "pangram",
50
- "difficulty": 4,
51
- "topics": [
52
- "Strings"
53
- ]
54
- },
55
- {
56
- "slug": "rna-transcription",
57
- "difficulty": 3,
58
- "topics": [
59
- "Strings",
60
- "Transforming"
61
- ]
62
- },
63
- {
64
- "slug": "raindrops",
65
- "difficulty": 6,
66
- "topics": [
67
- "Text formatting",
68
- "Filtering"
69
- ]
70
- },
71
- {
72
- "slug": "isogram",
73
- "difficulty": 4,
74
- "topics": [
75
- "Strings",
76
- "Filtering"
77
- ]
78
- },
79
- {
80
- "slug": "difference-of-squares",
81
- "difficulty": 2,
82
- "topics": [
83
- "Integers"
84
- ]
85
- },
86
- {
87
- "slug": "largest-series-product",
88
- "difficulty": 5,
89
- "topics": [
90
- "Strings",
91
- "Integers",
92
- "Transforming"
93
- ]
94
- },
95
- {
96
- "slug": "roman-numerals",
97
- "difficulty": 4,
98
- "topics": [
99
- "Control-flow (loops)",
100
- "Transforming"
101
- ]
102
- },
103
- {
104
- "slug": "sieve",
105
- "difficulty": 1,
106
- "topics": [
107
- "Filtering",
108
- "Mathematics"
109
- ]
110
- },
111
- {
112
- "slug": "pig-latin",
113
- "difficulty": 4,
114
- "topics": [
115
- "Strings",
116
- "Transforming"
117
- ]
118
- },
119
- {
120
- "slug": "robot-name",
121
- "difficulty": 3,
122
- "topics": [
123
- "Randomness",
124
- "Strings",
125
- "Classes"
126
- ]
127
- },
128
- {
129
- "slug": "leap",
130
- "difficulty": 1,
131
- "topics": [
132
- "Integers"
133
- ]
134
- },
135
- {
136
- "slug": "word-count",
137
- "difficulty": 1,
138
- "topics": [
139
- "Strings",
140
- "Dictionaries",
141
- "Transforming"
142
- ]
143
- },
144
- {
145
- "slug": "anagram",
146
- "difficulty": 1,
147
- "topics": [
148
- "Strings",
149
- "Filtering"
150
- ]
151
- },
152
- {
153
- "slug": "trinary",
154
- "difficulty": 1,
155
- "topics": []
156
- },
157
- {
158
- "slug": "bowling",
159
- "difficulty": 1,
160
- "topics": [
161
- "Algorithms",
162
- "Control-flow (loops)"
163
- ]
164
- },
165
- {
166
- "slug": "clock",
167
- "difficulty": 1,
168
- "topics": [
169
- "Time",
170
- "Structural equality"
171
- ]
172
- },
173
- {
174
- "slug": "wordy",
175
- "difficulty": 1,
176
- "topics": [
177
- "Parsing",
178
- "Strings",
179
- "Transforming"
180
- ]
181
- },
182
- {
183
- "slug": "connect",
184
- "difficulty": 1,
185
- "topics": []
186
- },
187
- {
188
- "slug": "minesweeper",
189
- "difficulty": 1,
190
- "topics": [
191
- "Parsing",
192
- "Transforming"
193
- ]
194
- },
195
- {
196
- "slug": "change",
197
- "difficulty": 1,
198
- "topics": [
199
- "Integers",
200
- "Arrays"
201
- ]
202
- },
203
- {
204
- "slug": "phone-number",
205
- "difficulty": 1,
206
- "topics": [
207
- "Parsing",
208
- "Transforming"
209
- ]
210
- },
211
- {
212
- "slug": "beer-song",
213
- "difficulty": 1,
214
- "topics": [
215
- "Text formatting",
216
- "Algorithms"
217
- ]
218
- },
219
- {
220
- "slug": "atbash-cipher",
221
- "difficulty": 1,
222
- "topics": [
223
- "Strings",
224
- "Algorithms",
225
- "Transforming"
226
- ]
227
- },
228
- {
229
- "slug": "bracket-push",
230
- "difficulty": 1,
231
- "topics": [
232
- "Parsing",
233
- "Strings"
234
- ]
235
- },
236
- {
237
- "slug": "binary",
238
- "difficulty": 1,
239
- "topics": []
240
- },
241
- {
242
- "slug": "accumulate",
243
- "difficulty": 1,
244
- "topics": [
245
- "Extension methods",
246
- "Sequences",
247
- "Transforming"
248
- ]
249
- },
250
- {
251
- "slug": "variable-length-quantity",
252
- "difficulty": 1,
253
- "topics": [
254
- "Bitwise operations",
255
- "Algorithms"
256
- ]
257
- },
258
- {
259
- "slug": "acronym",
260
- "difficulty": 1,
261
- "topics": [
262
- "Strings",
263
- "Transforming"
264
- ]
265
- },
266
- {
267
- "slug": "nucleotide-count",
268
- "difficulty": 1,
269
- "topics": [
270
- "Dictionaries",
271
- "Strings"
272
- ]
273
- },
274
- {
275
- "slug": "triangle",
276
- "difficulty": 1,
277
- "topics": [
278
- "Integers",
279
- "Enumerations"
280
- ]
281
- },
282
- {
283
- "slug": "etl",
284
- "difficulty": 1,
285
- "topics": [
286
- "Dictionaries",
287
- "Lists",
288
- "Transforming"
289
- ]
290
- },
291
- {
292
- "slug": "space-age",
293
- "difficulty": 1,
294
- "topics": [
295
- "Floating-point numbers"
296
- ]
297
- },
298
- {
299
- "slug": "allergies",
300
- "difficulty": 3,
301
- "topics": [
302
- "Bitwise operations",
303
- "Filtering"
304
- ]
305
- },
306
- {
307
- "slug": "markdown",
308
- "difficulty": 3,
309
- "topics": ["refactoring"]
310
- },
311
- {
312
- "slug": "grains",
313
- "difficulty": 3,
314
- "topics": [
315
- "Floating-point numbers",
316
- "Algorithms"
317
- ]
318
- },
319
- {
320
- "slug": "robot-simulator",
321
- "difficulty": 3,
322
- "topics": [
323
- "OOP"
324
- ]
325
- },
326
- {
327
- "slug": "ocr-numbers",
328
- "difficulty": 3,
329
- "topics": [
330
- "Strings",
331
- "Algorithms",
332
- "Transforming"
333
- ]
334
- },
335
- {
336
- "slug": "book-store",
337
- "difficulty": 3,
338
- "topics": [
339
- "Algorithms"
340
- ]
341
- },
342
- {
343
- "slug": "queen-attack",
344
- "difficulty": 2,
345
- "topics": [
346
- "Integers",
347
- "Mathematics"
348
- ]
349
- },
350
- {
351
- "slug": "scrabble-score",
352
- "difficulty": 2,
353
- "topics": [
354
- "Strings",
355
- "Control-flow (loops)",
356
- "Integers"
357
- ]
358
- },
359
- {
360
- "slug": "grade-school",
361
- "difficulty": 6,
362
- "topics": [
363
- "Arrays"
364
- ]
365
- },
366
- {
367
- "slug": "luhn",
368
- "difficulty": 4,
369
- "topics": []
370
- },
371
- {
372
- "slug": "perfect-numbers",
373
- "difficulty": 1,
374
- "topics": []
375
- },
376
- {
377
- "slug": "sum-of-multiples",
378
- "difficulty": 2,
379
- "topics" : []
380
- },
381
- {
382
- "slug": "pascals-triangle",
383
- "difficulty": 3,
384
- "topics" : []
385
- },
386
- {
387
- "slug": "nth-prime",
388
- "difficulty": 3,
389
- "topics" : []
390
- },
391
- {
392
- "slug": "binary-search",
393
- "difficulty": 3,
394
- "topics" : []
395
- },
396
- {
397
- "slug": "prime-factors",
398
- "difficulty": 3,
399
- "topics" : []
400
- }
401
- ]
402
- }
1
+ {
2
+ "slug": "php",
3
+ "language": "PHP",
4
+ "repository": "https://github.com/exercism/xphp",
5
+ "active": true,
6
+ "deprecated": [
7
+
8
+ ],
9
+ "ignored": [
10
+ "docs",
11
+ "img"
12
+ ],
13
+ "foregone": [
14
+
15
+ ],
16
+ "exercises": [
17
+ {
18
+ "slug": "hello-world",
19
+ "difficulty": 1,
20
+ "topics": [
21
+ "Text formatting",
22
+ "Optional values"
23
+ ]
24
+ },
25
+ {
26
+ "slug": "hamming",
27
+ "difficulty": 2,
28
+ "topics": [
29
+ "Strings",
30
+ "Filtering"
31
+ ]
32
+ },
33
+ {
34
+ "slug": "gigasecond",
35
+ "difficulty": 2,
36
+ "topics": [
37
+ "Dates"
38
+ ]
39
+ },
40
+ {
41
+ "slug": "bob",
42
+ "difficulty": 4,
43
+ "topics": [
44
+ "Strings",
45
+ "Control-flow (if-else statements)"
46
+ ]
47
+ },
48
+ {
49
+ "slug": "pangram",
50
+ "difficulty": 4,
51
+ "topics": [
52
+ "Strings"
53
+ ]
54
+ },
55
+ {
56
+ "slug": "rna-transcription",
57
+ "difficulty": 3,
58
+ "topics": [
59
+ "Strings",
60
+ "Transforming"
61
+ ]
62
+ },
63
+ {
64
+ "slug": "raindrops",
65
+ "difficulty": 6,
66
+ "topics": [
67
+ "Text formatting",
68
+ "Filtering"
69
+ ]
70
+ },
71
+ {
72
+ "slug": "isogram",
73
+ "difficulty": 4,
74
+ "topics": [
75
+ "Strings",
76
+ "Filtering"
77
+ ]
78
+ },
79
+ {
80
+ "slug": "difference-of-squares",
81
+ "difficulty": 2,
82
+ "topics": [
83
+ "Integers"
84
+ ]
85
+ },
86
+ {
87
+ "slug": "largest-series-product",
88
+ "difficulty": 5,
89
+ "topics": [
90
+ "Strings",
91
+ "Integers",
92
+ "Transforming"
93
+ ]
94
+ },
95
+ {
96
+ "slug": "roman-numerals",
97
+ "difficulty": 4,
98
+ "topics": [
99
+ "Control-flow (loops)",
100
+ "Transforming"
101
+ ]
102
+ },
103
+ {
104
+ "slug": "sieve",
105
+ "difficulty": 1,
106
+ "topics": [
107
+ "Filtering",
108
+ "Mathematics"
109
+ ]
110
+ },
111
+ {
112
+ "slug": "pig-latin",
113
+ "difficulty": 4,
114
+ "topics": [
115
+ "Strings",
116
+ "Transforming"
117
+ ]
118
+ },
119
+ {
120
+ "slug": "robot-name",
121
+ "difficulty": 3,
122
+ "topics": [
123
+ "Randomness",
124
+ "Strings",
125
+ "Classes"
126
+ ]
127
+ },
128
+ {
129
+ "slug": "leap",
130
+ "difficulty": 1,
131
+ "topics": [
132
+ "Integers"
133
+ ]
134
+ },
135
+ {
136
+ "slug": "word-count",
137
+ "difficulty": 1,
138
+ "topics": [
139
+ "Strings",
140
+ "Dictionaries",
141
+ "Transforming"
142
+ ]
143
+ },
144
+ {
145
+ "slug": "anagram",
146
+ "difficulty": 1,
147
+ "topics": [
148
+ "Strings",
149
+ "Filtering"
150
+ ]
151
+ },
152
+ {
153
+ "slug": "trinary",
154
+ "difficulty": 1,
155
+ "topics": [
156
+
157
+ ]
158
+ },
159
+ {
160
+ "slug": "bowling",
161
+ "difficulty": 1,
162
+ "topics": [
163
+ "Algorithms",
164
+ "Control-flow (loops)"
165
+ ]
166
+ },
167
+ {
168
+ "slug": "clock",
169
+ "difficulty": 1,
170
+ "topics": [
171
+ "Time",
172
+ "Structural equality"
173
+ ]
174
+ },
175
+ {
176
+ "slug": "wordy",
177
+ "difficulty": 1,
178
+ "topics": [
179
+ "Parsing",
180
+ "Strings",
181
+ "Transforming"
182
+ ]
183
+ },
184
+ {
185
+ "slug": "connect",
186
+ "difficulty": 1,
187
+ "topics": [
188
+
189
+ ]
190
+ },
191
+ {
192
+ "slug": "minesweeper",
193
+ "difficulty": 1,
194
+ "topics": [
195
+ "Parsing",
196
+ "Transforming"
197
+ ]
198
+ },
199
+ {
200
+ "slug": "change",
201
+ "difficulty": 1,
202
+ "topics": [
203
+ "Integers",
204
+ "Arrays"
205
+ ]
206
+ },
207
+ {
208
+ "slug": "phone-number",
209
+ "difficulty": 1,
210
+ "topics": [
211
+ "Parsing",
212
+ "Transforming"
213
+ ]
214
+ },
215
+ {
216
+ "slug": "beer-song",
217
+ "difficulty": 1,
218
+ "topics": [
219
+ "Text formatting",
220
+ "Algorithms"
221
+ ]
222
+ },
223
+ {
224
+ "slug": "atbash-cipher",
225
+ "difficulty": 1,
226
+ "topics": [
227
+ "Strings",
228
+ "Algorithms",
229
+ "Transforming"
230
+ ]
231
+ },
232
+ {
233
+ "slug": "bracket-push",
234
+ "difficulty": 1,
235
+ "topics": [
236
+ "Parsing",
237
+ "Strings"
238
+ ]
239
+ },
240
+ {
241
+ "slug": "binary",
242
+ "difficulty": 1,
243
+ "topics": [
244
+
245
+ ]
246
+ },
247
+ {
248
+ "slug": "accumulate",
249
+ "difficulty": 1,
250
+ "topics": [
251
+ "Extension methods",
252
+ "Sequences",
253
+ "Transforming"
254
+ ]
255
+ },
256
+ {
257
+ "slug": "variable-length-quantity",
258
+ "difficulty": 1,
259
+ "topics": [
260
+ "Bitwise operations",
261
+ "Algorithms"
262
+ ]
263
+ },
264
+ {
265
+ "slug": "acronym",
266
+ "difficulty": 1,
267
+ "topics": [
268
+ "Strings",
269
+ "Transforming"
270
+ ]
271
+ },
272
+ {
273
+ "slug": "nucleotide-count",
274
+ "difficulty": 1,
275
+ "topics": [
276
+ "Dictionaries",
277
+ "Strings"
278
+ ]
279
+ },
280
+ {
281
+ "slug": "triangle",
282
+ "difficulty": 1,
283
+ "topics": [
284
+ "Integers",
285
+ "Enumerations"
286
+ ]
287
+ },
288
+ {
289
+ "slug": "etl",
290
+ "difficulty": 1,
291
+ "topics": [
292
+ "Dictionaries",
293
+ "Lists",
294
+ "Transforming"
295
+ ]
296
+ },
297
+ {
298
+ "slug": "space-age",
299
+ "difficulty": 1,
300
+ "topics": [
301
+ "Floating-point numbers"
302
+ ]
303
+ },
304
+ {
305
+ "slug": "allergies",
306
+ "difficulty": 3,
307
+ "topics": [
308
+ "Bitwise operations",
309
+ "Filtering"
310
+ ]
311
+ },
312
+ {
313
+ "slug": "markdown",
314
+ "difficulty": 3,
315
+ "topics": [
316
+ "refactoring"
317
+ ]
318
+ },
319
+ {
320
+ "slug": "grains",
321
+ "difficulty": 3,
322
+ "topics": [
323
+ "Floating-point numbers",
324
+ "Algorithms"
325
+ ]
326
+ },
327
+ {
328
+ "slug": "robot-simulator",
329
+ "difficulty": 3,
330
+ "topics": [
331
+ "OOP"
332
+ ]
333
+ },
334
+ {
335
+ "slug": "ocr-numbers",
336
+ "difficulty": 3,
337
+ "topics": [
338
+ "Strings",
339
+ "Algorithms",
340
+ "Transforming"
341
+ ]
342
+ },
343
+ {
344
+ "slug": "book-store",
345
+ "difficulty": 3,
346
+ "topics": [
347
+ "Algorithms"
348
+ ]
349
+ },
350
+ {
351
+ "slug": "queen-attack",
352
+ "difficulty": 2,
353
+ "topics": [
354
+ "Integers",
355
+ "Mathematics"
356
+ ]
357
+ },
358
+ {
359
+ "slug": "scrabble-score",
360
+ "difficulty": 2,
361
+ "topics": [
362
+ "Strings",
363
+ "Control-flow (loops)",
364
+ "Integers"
365
+ ]
366
+ },
367
+ {
368
+ "slug": "grade-school",
369
+ "difficulty": 6,
370
+ "topics": [
371
+ "Arrays"
372
+ ]
373
+ },
374
+ {
375
+ "slug": "luhn",
376
+ "difficulty": 4,
377
+ "topics": [
378
+
379
+ ]
380
+ },
381
+ {
382
+ "slug": "perfect-numbers",
383
+ "difficulty": 1,
384
+ "topics": [
385
+
386
+ ]
387
+ },
388
+ {
389
+ "slug": "sum-of-multiples",
390
+ "difficulty": 2,
391
+ "topics": [
392
+
393
+ ]
394
+ },
395
+ {
396
+ "slug": "pascals-triangle",
397
+ "difficulty": 3,
398
+ "topics": [
399
+
400
+ ]
401
+ },
402
+ {
403
+ "slug": "nth-prime",
404
+ "difficulty": 3,
405
+ "topics": [
406
+
407
+ ]
408
+ },
409
+ {
410
+ "slug": "binary-search",
411
+ "difficulty": 3,
412
+ "topics": [
413
+
414
+ ]
415
+ },
416
+ {
417
+ "slug": "prime-factors",
418
+ "difficulty": 3,
419
+ "topics": [
420
+
421
+ ]
422
+ }
423
+ ]
424
+ }