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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b14ecd3a2ec9c1e8e23e8c7388b680666d46a2c
4
- data.tar.gz: 9529b8cfff22f5305d62edfe36ac991781492715
3
+ metadata.gz: bdb07d2a9df0f61745e491f5a84111ea2af9c46b
4
+ data.tar.gz: dacef349f87ace3e2b82ef8d2f8e0ee6a3db4af1
5
5
  SHA512:
6
- metadata.gz: 9fcb8b7b14ce2bdf9eb5313f27ba798944841ce731f3ad534c298f3aa839056aed656abe140bac617660701dbdbcdc8ee6a72bda2a3950443717e6feae29a8a7
7
- data.tar.gz: 4a11526fc3a68fdd5d1632da3291d63b37a436b228e5679060849ff0129ce0a5de7f02750167e72894eb66a0eb4c6f2657c7ce3d250d3c1381f0011704aec1c3
6
+ metadata.gz: ff96fdb5ae542913bcc4743ea92487848d2c4139544f40157a69eafaa2bae2899413e2af24249fc71d6341979f15421cf2b74605d3c882214bca5150ba2d9f2c
7
+ data.tar.gz: b14d5054275c295f7408f5e0bb924f0c22354a36190750bc24454626d1878d732cd327e70ac7dae175118a354b6c0e43ffec20ed53b5a01c10eca2c15df53cf9
@@ -1,3 +1,3 @@
1
1
  module Trackler
2
- VERSION = "2.0.8.52"
2
+ VERSION = "2.0.8.53"
3
3
  end
@@ -1,9 +1,6 @@
1
1
 
2
- class HelloWorld {
3
- hello(name = 'World') {
4
- return `Hello, ${name}!`;
5
- }
2
+ const helloWorld = () => {
3
+ return 'Hello, World!';
6
4
  }
7
5
 
8
- export default HelloWorld;
9
-
6
+ export default helloWorld;
@@ -3,13 +3,10 @@
3
3
  // convenience to get you started writing code faster.
4
4
  //
5
5
 
6
- class HelloWorld {
7
- hello() {
8
- //
9
- // YOUR CODE GOES HERE
10
- //
11
- }
6
+ const helloWorld = () => {
7
+ //
8
+ // YOUR CODE GOES HERE
9
+ //
12
10
  }
13
11
 
14
- export default HelloWorld;
15
-
12
+ export default helloWorld;
@@ -1,18 +1,7 @@
1
- import HelloWorld from './hello-world';
1
+ import helloWorld from './hello-world';
2
2
 
3
3
  describe('Hello World', () => {
4
- const helloWorld = new HelloWorld();
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.52
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?**