trackler 2.0.5.18 → 2.0.6.0
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/CHANGELOG.md +4 -0
- data/fixtures/tracks/animal/.meta/include-in-fish.txt +1 -0
- data/fixtures/tracks/animal/SETUP.md +1 -0
- data/fixtures/tracks/animal/exercises/TRACK_HINTS.md +1 -0
- data/fixtures/tracks/animal/{dog → exercises/dog}/a_dog.animal +0 -0
- data/fixtures/tracks/animal/{dog → exercises/dog}/a_dog_2.animal +0 -0
- data/fixtures/tracks/animal/{dog → exercises/dog}/example.ext +0 -0
- data/fixtures/tracks/animal/exercises/fish/included-via-symlink.txt +1 -0
- data/fixtures/tracks/jewels/exercises/TRACK_HINTS.md +1 -0
- data/fixtures/tracks/jewels/{hello-world → exercises/hello-world}/example.ext +0 -0
- data/fixtures/tracks/jewels/{hello-world → exercises/hello-world}/hello_world_test.ext +0 -0
- data/lib/trackler/implementation.rb +5 -1
- data/lib/trackler/version.rb +1 -1
- metadata +12 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9790736cb76031c439b02a7ca4d77d543506267
|
|
4
|
+
data.tar.gz: 84dabbea80eaef2ac6744e45c6adfac75a5d84e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c18b8ab1aa1f1a04e99b9fec8cfe15e4e2ba7bbfa0350bcb8d06fbde2d369388dccca26cd48ed61e3d6306e897883456b04aacd865b36e8246a64eae77f13ad
|
|
7
|
+
data.tar.gz: e9359d9665d6e91f3156fe4f32a3dc146c4ad32d97031d68dc46e8828f63a9e9afc642fa3b5aa33cd155e87ac088130963091bc1d0ecaa9a63a2e49e50d46a46
|
data/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,10 @@ The changelog will not be updated for content updates.
|
|
|
15
15
|
## Next Release
|
|
16
16
|
* **Your contribution here**
|
|
17
17
|
|
|
18
|
+
## v2.0.6.0 (2017-01-03)
|
|
19
|
+
|
|
20
|
+
* Deprecate SETUP.md in favor of a new, better-named TRACK_HINTS.md file.
|
|
21
|
+
|
|
18
22
|
## v2.0.5.0 (2016-12-16)
|
|
19
23
|
|
|
20
24
|
* Handle full URLs as documentation images
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
This should get included in fish.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
This is the content of the setup.md file, which will be overwritten when track_hints.md exists.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
This is the content of the track hints file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fixtures/tracks/animal/exercises/fish/../../.meta/include-in-fish.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
This is the content of the track hints file
|
|
File without changes
|
|
File without changes
|
|
@@ -102,7 +102,11 @@ It's possible to submit an incomplete solution so you can see how others have co
|
|
|
102
102
|
end
|
|
103
103
|
|
|
104
104
|
def track_hint
|
|
105
|
-
|
|
105
|
+
track_hints_filename = track_dir.join('exercises','TRACK_HINTS.md')
|
|
106
|
+
unless File.exist?(track_hints_filename)
|
|
107
|
+
track_hints_filename = track_dir.join('SETUP.md')
|
|
108
|
+
end
|
|
109
|
+
read track_hints_filename
|
|
106
110
|
end
|
|
107
111
|
|
|
108
112
|
def implementation_hint
|
data/lib/trackler/version.rb
CHANGED
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.0.
|
|
4
|
+
version: 2.0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katrina Owen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|
|
@@ -430,10 +430,14 @@ files:
|
|
|
430
430
|
- fixtures/common/exercises/three/metadata.yml
|
|
431
431
|
- fixtures/common/exercises/two/description.md
|
|
432
432
|
- fixtures/common/exercises/two/metadata.yml
|
|
433
|
+
- fixtures/tracks/animal/.meta/include-in-fish.txt
|
|
434
|
+
- fixtures/tracks/animal/SETUP.md
|
|
433
435
|
- fixtures/tracks/animal/config.json
|
|
434
|
-
- fixtures/tracks/animal/
|
|
435
|
-
- fixtures/tracks/animal/dog/
|
|
436
|
-
- fixtures/tracks/animal/dog/
|
|
436
|
+
- fixtures/tracks/animal/exercises/TRACK_HINTS.md
|
|
437
|
+
- fixtures/tracks/animal/exercises/dog/a_dog.animal
|
|
438
|
+
- fixtures/tracks/animal/exercises/dog/a_dog_2.animal
|
|
439
|
+
- fixtures/tracks/animal/exercises/dog/example.ext
|
|
440
|
+
- fixtures/tracks/animal/exercises/fish/included-via-symlink.txt
|
|
437
441
|
- fixtures/tracks/animal/global/some-vendored-library
|
|
438
442
|
- fixtures/tracks/animal/global/sub-global/other-some-vendor
|
|
439
443
|
- fixtures/tracks/fake/config.json
|
|
@@ -478,8 +482,9 @@ files:
|
|
|
478
482
|
- fixtures/tracks/fruit/exercises/imbe/imbe.txt
|
|
479
483
|
- fixtures/tracks/fruit/img/icon.svg
|
|
480
484
|
- fixtures/tracks/jewels/config.json
|
|
481
|
-
- fixtures/tracks/jewels/
|
|
482
|
-
- fixtures/tracks/jewels/hello-world/
|
|
485
|
+
- fixtures/tracks/jewels/exercises/TRACK_HINTS.md
|
|
486
|
+
- fixtures/tracks/jewels/exercises/hello-world/example.ext
|
|
487
|
+
- fixtures/tracks/jewels/exercises/hello-world/hello_world_test.ext
|
|
483
488
|
- fixtures/tracks/shoes/config.json
|
|
484
489
|
- fixtures/tracks/shoes/hello-world/example.ext
|
|
485
490
|
- fixtures/tracks/shoes/hello-world/hello_world_test.ext
|