trackler 2.2.1.111 → 2.2.1.113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/trackler/version.rb +1 -1
- data/problem-specifications/README.md +6 -2
- data/problem-specifications/exercises/go-counting/canonical-data.json +200 -0
- data/problem-specifications/exercises/go-counting/description.md +2 -0
- data/tracks/c/config.json +24 -0
- data/tracks/c/exercises/minesweeper/README.md +26 -0
- data/tracks/c/exercises/minesweeper/makefile +25 -0
- data/tracks/c/exercises/minesweeper/src/example.c +64 -0
- data/tracks/c/exercises/minesweeper/src/example.h +7 -0
- data/tracks/c/exercises/minesweeper/test/test_minesweeper.c +261 -0
- data/tracks/c/exercises/minesweeper/test/vendor/unity.c +1300 -0
- data/tracks/c/exercises/minesweeper/test/vendor/unity.h +274 -0
- data/tracks/c/exercises/minesweeper/test/vendor/unity_internals.h +701 -0
- data/tracks/c/exercises/run-length-encoding/README.md +23 -0
- data/tracks/c/exercises/run-length-encoding/makefile +27 -0
- data/tracks/c/exercises/run-length-encoding/src/example.c +126 -0
- data/tracks/c/exercises/run-length-encoding/src/example.h +7 -0
- data/tracks/c/exercises/run-length-encoding/test/test_run_length_encoding.c +139 -0
- data/tracks/c/exercises/run-length-encoding/test/vendor/unity.c +1300 -0
- data/tracks/c/exercises/run-length-encoding/test/vendor/unity.h +274 -0
- data/tracks/c/exercises/run-length-encoding/test/vendor/unity_internals.h +701 -0
- data/tracks/delphi/exercises/clock/uClockTest.pas +6 -6
- data/tracks/ecmascript/config.json +11 -0
- data/tracks/ecmascript/exercises/armstrong-numbers/README.md +48 -0
- data/tracks/ecmascript/exercises/armstrong-numbers/armstrong-numbers.spec.js +43 -0
- data/tracks/ecmascript/exercises/armstrong-numbers/example.js +11 -0
- data/tracks/ecmascript/exercises/armstrong-numbers/package.json +70 -0
- data/tracks/javascript/config.json +11 -0
- data/tracks/javascript/exercises/armstrong-numbers/README.md +46 -0
- data/tracks/javascript/exercises/armstrong-numbers/armstrong-numbers.spec.js +43 -0
- data/tracks/javascript/exercises/armstrong-numbers/example.js +11 -0
- data/tracks/objective-c/config.json +12 -0
- data/tracks/objective-c/exercises/series/README.md +50 -0
- data/tracks/objective-c/exercises/series/SeriesExample.h +12 -0
- data/tracks/objective-c/exercises/series/SeriesExample.m +50 -0
- data/tracks/objective-c/exercises/series/SeriesTest.m +97 -0
- data/tracks/objective-c/xcodeProject/ObjectiveC.xcodeproj/project.pbxproj +18 -0
- data/tracks/rust/exercises/gigasecond/.meta/hints.md +1 -0
- data/tracks/rust/exercises/gigasecond/README.md +3 -0
- data/tracks/rust/exercises/gigasecond/example.rs +1 -1
- data/tracks/rust/exercises/gigasecond/src/lib.rs +7 -7
- data/tracks/rust/exercises/gigasecond/tests/gigasecond.rs +1 -1
- data/tracks/rust/exercises/prime-factors/src/lib.rs +3 -0
- data/tracks/scala/exercises/saddle-points/src/test/scala/SaddlePointsTest.scala +1 -1
- data/tracks/scala/exercises/say/src/test/scala/SayTest.scala +18 -19
- data/tracks/scala/exercises/scrabble-score/src/test/scala/ScrabbleScoreTest.scala +13 -13
- data/tracks/scala/testgen/src/main/scala/SaddlePointsTestGenerator.scala +3 -3
- data/tracks/scala/testgen/src/main/scala/SayTestGenerator.scala +6 -6
- data/tracks/scala/testgen/src/main/scala/ScrabbleScoreTestGenerator.scala +2 -2
- data/tracks/typescript/config.json +16 -0
- data/tracks/typescript/exercises/simple-cipher/README.md +114 -0
- data/tracks/typescript/exercises/simple-cipher/package.json +36 -0
- data/tracks/typescript/exercises/simple-cipher/simple-cipher.example.ts +42 -0
- data/tracks/typescript/exercises/simple-cipher/simple-cipher.test.ts +84 -0
- data/tracks/typescript/exercises/simple-cipher/simple-cipher.ts +11 -0
- data/tracks/typescript/exercises/simple-cipher/tsconfig.json +22 -0
- data/tracks/typescript/exercises/simple-cipher/tslint.json +127 -0
- data/tracks/typescript/exercises/simple-cipher/yarn.lock +2624 -0
- metadata +39 -2
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.
|
4
|
+
version: 2.2.1.113
|
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-03-
|
11
|
+
date: 2018-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|
@@ -346,6 +346,7 @@ files:
|
|
346
346
|
- problem-specifications/exercises/gigasecond/canonical-data.json
|
347
347
|
- problem-specifications/exercises/gigasecond/description.md
|
348
348
|
- problem-specifications/exercises/gigasecond/metadata.yml
|
349
|
+
- problem-specifications/exercises/go-counting/canonical-data.json
|
349
350
|
- problem-specifications/exercises/go-counting/description.md
|
350
351
|
- problem-specifications/exercises/go-counting/metadata.yml
|
351
352
|
- problem-specifications/exercises/grade-school/description.md
|
@@ -925,6 +926,14 @@ files:
|
|
925
926
|
- tracks/c/exercises/meetup/test/vendor/unity.c
|
926
927
|
- tracks/c/exercises/meetup/test/vendor/unity.h
|
927
928
|
- tracks/c/exercises/meetup/test/vendor/unity_internals.h
|
929
|
+
- tracks/c/exercises/minesweeper/README.md
|
930
|
+
- tracks/c/exercises/minesweeper/makefile
|
931
|
+
- tracks/c/exercises/minesweeper/src/example.c
|
932
|
+
- tracks/c/exercises/minesweeper/src/example.h
|
933
|
+
- tracks/c/exercises/minesweeper/test/test_minesweeper.c
|
934
|
+
- tracks/c/exercises/minesweeper/test/vendor/unity.c
|
935
|
+
- tracks/c/exercises/minesweeper/test/vendor/unity.h
|
936
|
+
- tracks/c/exercises/minesweeper/test/vendor/unity_internals.h
|
928
937
|
- tracks/c/exercises/nth-prime/README.md
|
929
938
|
- tracks/c/exercises/nth-prime/makefile
|
930
939
|
- tracks/c/exercises/nth-prime/src/example.c
|
@@ -1046,6 +1055,14 @@ files:
|
|
1046
1055
|
- tracks/c/exercises/roman-numerals/test/vendor/unity.c
|
1047
1056
|
- tracks/c/exercises/roman-numerals/test/vendor/unity.h
|
1048
1057
|
- tracks/c/exercises/roman-numerals/test/vendor/unity_internals.h
|
1058
|
+
- tracks/c/exercises/run-length-encoding/README.md
|
1059
|
+
- tracks/c/exercises/run-length-encoding/makefile
|
1060
|
+
- tracks/c/exercises/run-length-encoding/src/example.c
|
1061
|
+
- tracks/c/exercises/run-length-encoding/src/example.h
|
1062
|
+
- tracks/c/exercises/run-length-encoding/test/test_run_length_encoding.c
|
1063
|
+
- tracks/c/exercises/run-length-encoding/test/vendor/unity.c
|
1064
|
+
- tracks/c/exercises/run-length-encoding/test/vendor/unity.h
|
1065
|
+
- tracks/c/exercises/run-length-encoding/test/vendor/unity_internals.h
|
1049
1066
|
- tracks/c/exercises/say/README.md
|
1050
1067
|
- tracks/c/exercises/say/makefile
|
1051
1068
|
- tracks/c/exercises/say/src/example.c
|
@@ -3602,6 +3619,10 @@ files:
|
|
3602
3619
|
- tracks/ecmascript/exercises/anagram/anagram.spec.js
|
3603
3620
|
- tracks/ecmascript/exercises/anagram/example.js
|
3604
3621
|
- tracks/ecmascript/exercises/anagram/package.json
|
3622
|
+
- tracks/ecmascript/exercises/armstrong-numbers/README.md
|
3623
|
+
- tracks/ecmascript/exercises/armstrong-numbers/armstrong-numbers.spec.js
|
3624
|
+
- tracks/ecmascript/exercises/armstrong-numbers/example.js
|
3625
|
+
- tracks/ecmascript/exercises/armstrong-numbers/package.json
|
3605
3626
|
- tracks/ecmascript/exercises/atbash-cipher/README.md
|
3606
3627
|
- tracks/ecmascript/exercises/atbash-cipher/atbash-cipher.spec.js
|
3607
3628
|
- tracks/ecmascript/exercises/atbash-cipher/example.js
|
@@ -8105,6 +8126,9 @@ files:
|
|
8105
8126
|
- tracks/javascript/exercises/anagram/README.md
|
8106
8127
|
- tracks/javascript/exercises/anagram/anagram.spec.js
|
8107
8128
|
- tracks/javascript/exercises/anagram/example.js
|
8129
|
+
- tracks/javascript/exercises/armstrong-numbers/README.md
|
8130
|
+
- tracks/javascript/exercises/armstrong-numbers/armstrong-numbers.spec.js
|
8131
|
+
- tracks/javascript/exercises/armstrong-numbers/example.js
|
8108
8132
|
- tracks/javascript/exercises/atbash-cipher/README.md
|
8109
8133
|
- tracks/javascript/exercises/atbash-cipher/atbash-cipher.spec.js
|
8110
8134
|
- tracks/javascript/exercises/atbash-cipher/example.js
|
@@ -9790,6 +9814,10 @@ files:
|
|
9790
9814
|
- tracks/objective-c/exercises/secret-handshake/SecretHandshakeExample.h
|
9791
9815
|
- tracks/objective-c/exercises/secret-handshake/SecretHandshakeExample.m
|
9792
9816
|
- tracks/objective-c/exercises/secret-handshake/SecretHandshakeTest.m
|
9817
|
+
- tracks/objective-c/exercises/series/README.md
|
9818
|
+
- tracks/objective-c/exercises/series/SeriesExample.h
|
9819
|
+
- tracks/objective-c/exercises/series/SeriesExample.m
|
9820
|
+
- tracks/objective-c/exercises/series/SeriesTest.m
|
9793
9821
|
- tracks/objective-c/exercises/sieve/README.md
|
9794
9822
|
- tracks/objective-c/exercises/sieve/SieveExample.h
|
9795
9823
|
- tracks/objective-c/exercises/sieve/SieveExample.m
|
@@ -12713,6 +12741,7 @@ files:
|
|
12713
12741
|
- tracks/rust/exercises/forth/src/lib.rs
|
12714
12742
|
- tracks/rust/exercises/forth/tests/forth.rs
|
12715
12743
|
- tracks/rust/exercises/gigasecond/.gitignore
|
12744
|
+
- tracks/rust/exercises/gigasecond/.meta/hints.md
|
12716
12745
|
- tracks/rust/exercises/gigasecond/Cargo.toml
|
12717
12746
|
- tracks/rust/exercises/gigasecond/README.md
|
12718
12747
|
- tracks/rust/exercises/gigasecond/example.rs
|
@@ -14849,6 +14878,14 @@ files:
|
|
14849
14878
|
- tracks/typescript/exercises/series/tsconfig.json
|
14850
14879
|
- tracks/typescript/exercises/series/tslint.json
|
14851
14880
|
- tracks/typescript/exercises/series/yarn.lock
|
14881
|
+
- tracks/typescript/exercises/simple-cipher/README.md
|
14882
|
+
- tracks/typescript/exercises/simple-cipher/package.json
|
14883
|
+
- tracks/typescript/exercises/simple-cipher/simple-cipher.example.ts
|
14884
|
+
- tracks/typescript/exercises/simple-cipher/simple-cipher.test.ts
|
14885
|
+
- tracks/typescript/exercises/simple-cipher/simple-cipher.ts
|
14886
|
+
- tracks/typescript/exercises/simple-cipher/tsconfig.json
|
14887
|
+
- tracks/typescript/exercises/simple-cipher/tslint.json
|
14888
|
+
- tracks/typescript/exercises/simple-cipher/yarn.lock
|
14852
14889
|
- tracks/typescript/exercises/space-age/README.md
|
14853
14890
|
- tracks/typescript/exercises/space-age/package.json
|
14854
14891
|
- tracks/typescript/exercises/space-age/space-age.example.ts
|