trackler 2.2.1.132 → 2.2.1.133
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/tracks/dart/config.json +13 -0
- data/tracks/dart/exercises/armstrong-numbers/README.md +29 -0
- data/tracks/dart/exercises/armstrong-numbers/lib/armstrong_numbers.dart +3 -0
- data/tracks/dart/exercises/armstrong-numbers/lib/example.dart +20 -0
- data/tracks/dart/exercises/armstrong-numbers/pubspec.yaml +3 -0
- data/tracks/dart/exercises/armstrong-numbers/test/armstrong_numbers_test.dart +48 -0
- data/tracks/dart/exercises/leap/test/leap_test.dart +15 -0
- data/tracks/haskell/.travis.yml +1 -0
- data/tracks/nim/.travis.yml +7 -4
- data/tracks/nim/exercises/anagram/example.nim +1 -1
- data/tracks/nim/exercises/word-count/example.nim +3 -1
- data/tracks/r/config.json +1 -1
- data/tracks/scala/exercises/bob/README.md +2 -0
- data/tracks/typescript/config.json +18 -4
- data/tracks/typescript/exercises/house/README.md +138 -0
- data/tracks/typescript/exercises/house/house.example.ts +67 -0
- data/tracks/typescript/exercises/house/house.test.ts +292 -0
- data/tracks/typescript/exercises/house/house.ts +0 -0
- data/tracks/typescript/exercises/house/package.json +36 -0
- data/tracks/typescript/exercises/house/tsconfig.json +22 -0
- data/tracks/typescript/exercises/house/tslint.json +127 -0
- data/tracks/typescript/exercises/house/yarn.lock +2624 -0
- metadata +15 -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.133
|
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-04-
|
11
|
+
date: 2018-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|
@@ -3385,6 +3385,11 @@ files:
|
|
3385
3385
|
- tracks/dart/exercises/anagram/lib/example.dart
|
3386
3386
|
- tracks/dart/exercises/anagram/pubspec.yaml
|
3387
3387
|
- tracks/dart/exercises/anagram/test/anagram_test.dart
|
3388
|
+
- tracks/dart/exercises/armstrong-numbers/README.md
|
3389
|
+
- tracks/dart/exercises/armstrong-numbers/lib/armstrong_numbers.dart
|
3390
|
+
- tracks/dart/exercises/armstrong-numbers/lib/example.dart
|
3391
|
+
- tracks/dart/exercises/armstrong-numbers/pubspec.yaml
|
3392
|
+
- tracks/dart/exercises/armstrong-numbers/test/armstrong_numbers_test.dart
|
3388
3393
|
- tracks/dart/exercises/bob/.meta/description.md
|
3389
3394
|
- tracks/dart/exercises/bob/README.md
|
3390
3395
|
- tracks/dart/exercises/bob/lib/bob.dart
|
@@ -14992,6 +14997,14 @@ files:
|
|
14992
14997
|
- tracks/typescript/exercises/hello-world/tsconfig.json
|
14993
14998
|
- tracks/typescript/exercises/hello-world/tslint.json
|
14994
14999
|
- tracks/typescript/exercises/hello-world/yarn.lock
|
15000
|
+
- tracks/typescript/exercises/house/README.md
|
15001
|
+
- tracks/typescript/exercises/house/house.example.ts
|
15002
|
+
- tracks/typescript/exercises/house/house.test.ts
|
15003
|
+
- tracks/typescript/exercises/house/house.ts
|
15004
|
+
- tracks/typescript/exercises/house/package.json
|
15005
|
+
- tracks/typescript/exercises/house/tsconfig.json
|
15006
|
+
- tracks/typescript/exercises/house/tslint.json
|
15007
|
+
- tracks/typescript/exercises/house/yarn.lock
|
14995
15008
|
- tracks/typescript/exercises/isbn-verifier/README.md
|
14996
15009
|
- tracks/typescript/exercises/isbn-verifier/isbn-verifier.example.ts
|
14997
15010
|
- tracks/typescript/exercises/isbn-verifier/isbn-verifier.test.ts
|