trackler 2.2.1.156 → 2.2.1.157
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/trackler/version.rb +1 -1
- data/tracks/reasonml/exercises/hello-world/.gitignore +8 -0
- data/tracks/reasonml/exercises/hello-world/README.md +15 -0
- data/tracks/reasonml/exercises/hello-world/__tests__/HelloWorld_test.re +9 -0
- data/tracks/reasonml/exercises/hello-world/bsconfig.json +30 -0
- data/tracks/reasonml/exercises/hello-world/package-lock.json +5853 -0
- data/tracks/reasonml/exercises/hello-world/package.json +20 -0
- data/tracks/reasonml/exercises/hello-world/src/HelloWorld.re +1 -0
- metadata +9 -2
@@ -0,0 +1,20 @@
|
|
1
|
+
{
|
2
|
+
"name": "hello-world",
|
3
|
+
"version": "0.1.0",
|
4
|
+
"scripts": {
|
5
|
+
"build": "bsb -make-world",
|
6
|
+
"start": "bsb -make-world -w",
|
7
|
+
"clean": "bsb -clean-world",
|
8
|
+
"test": "jest --watchAll",
|
9
|
+
"test:ci": "jest --ci --bail --no-cache"
|
10
|
+
},
|
11
|
+
"keywords": [
|
12
|
+
"BuckleScript"
|
13
|
+
],
|
14
|
+
"author": "",
|
15
|
+
"license": "MIT",
|
16
|
+
"devDependencies": {
|
17
|
+
"@glennsl/bs-jest": "^0.4.2",
|
18
|
+
"bs-platform": "^3.1.5"
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
let hello = () => "Hello, World!";
|
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.157
|
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-06-
|
11
|
+
date: 2018-06-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|
@@ -12500,6 +12500,13 @@ files:
|
|
12500
12500
|
- tracks/reasonml/docs/LEARNING.md
|
12501
12501
|
- tracks/reasonml/docs/RESOURCES.md
|
12502
12502
|
- tracks/reasonml/docs/TESTS.md
|
12503
|
+
- tracks/reasonml/exercises/hello-world/.gitignore
|
12504
|
+
- tracks/reasonml/exercises/hello-world/README.md
|
12505
|
+
- tracks/reasonml/exercises/hello-world/__tests__/HelloWorld_test.re
|
12506
|
+
- tracks/reasonml/exercises/hello-world/bsconfig.json
|
12507
|
+
- tracks/reasonml/exercises/hello-world/package-lock.json
|
12508
|
+
- tracks/reasonml/exercises/hello-world/package.json
|
12509
|
+
- tracks/reasonml/exercises/hello-world/src/HelloWorld.re
|
12503
12510
|
- tracks/reasonml/img/.keep
|
12504
12511
|
- tracks/ruby/.git
|
12505
12512
|
- tracks/ruby/.github/stale.yml
|