trackler 2.0.8.52 → 2.0.8.53
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/ecmascript/exercises/hello-world/example.js +3 -6
- data/tracks/ecmascript/exercises/hello-world/hello-world.js +5 -8
- data/tracks/ecmascript/exercises/hello-world/hello-world.spec.js +3 -14
- metadata +1 -2
- data/tracks/vimscript/.github/ISSUE_TEMPLATE.md +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bdb07d2a9df0f61745e491f5a84111ea2af9c46b
|
|
4
|
+
data.tar.gz: dacef349f87ace3e2b82ef8d2f8e0ee6a3db4af1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff96fdb5ae542913bcc4743ea92487848d2c4139544f40157a69eafaa2bae2899413e2af24249fc71d6341979f15421cf2b74605d3c882214bca5150ba2d9f2c
|
|
7
|
+
data.tar.gz: b14d5054275c295f7408f5e0bb924f0c22354a36190750bc24454626d1878d732cd327e70ac7dae175118a354b6c0e43ffec20ed53b5a01c10eca2c15df53cf9
|
data/lib/trackler/version.rb
CHANGED
|
@@ -3,13 +3,10 @@
|
|
|
3
3
|
// convenience to get you started writing code faster.
|
|
4
4
|
//
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
//
|
|
11
|
-
}
|
|
6
|
+
const helloWorld = () => {
|
|
7
|
+
//
|
|
8
|
+
// YOUR CODE GOES HERE
|
|
9
|
+
//
|
|
12
10
|
}
|
|
13
11
|
|
|
14
|
-
export default
|
|
15
|
-
|
|
12
|
+
export default helloWorld;
|
|
@@ -1,18 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import helloWorld from './hello-world';
|
|
2
2
|
|
|
3
3
|
describe('Hello World', () => {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
it('says hello world with no name', () => {
|
|
7
|
-
expect(helloWorld.hello()).toEqual('Hello, World!');
|
|
8
|
-
});
|
|
9
|
-
|
|
10
|
-
xit('says hello to bob', () => {
|
|
11
|
-
expect(helloWorld.hello('Bob')).toEqual('Hello, Bob!');
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
xit('says hello to sally', () => {
|
|
15
|
-
expect(helloWorld.hello('Sally')).toEqual('Hello, Sally!');
|
|
4
|
+
it('says hello', () => {
|
|
5
|
+
expect(helloWorld()).toEqual('Hello, World!');
|
|
16
6
|
});
|
|
17
7
|
});
|
|
18
|
-
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trackler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.8.
|
|
4
|
+
version: 2.0.8.53
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katrina Owen
|
|
@@ -8917,7 +8917,6 @@ files:
|
|
|
8917
8917
|
- tracks/vbnet/exercises/crypto-square/Example.vb
|
|
8918
8918
|
- tracks/vbnet/img/icon.png
|
|
8919
8919
|
- tracks/vimscript/.git
|
|
8920
|
-
- tracks/vimscript/.github/ISSUE_TEMPLATE.md
|
|
8921
8920
|
- tracks/vimscript/.gitignore
|
|
8922
8921
|
- tracks/vimscript/.travis.yml
|
|
8923
8922
|
- tracks/vimscript/LICENSE
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
**What programming language should we add?**
|
|
2
|
-
|
|
3
|
-
**What is the official website for the language?**
|
|
4
|
-
|
|
5
|
-
**Is this a language that comes in many variants? If so, which variant should we support?**
|
|
6
|
-
|
|
7
|
-
**Is there a testing framework available for the language?**
|
|
8
|
-
|
|
9
|
-
**Who will be leading the effort to launch the track?**
|