codersdojo 1.1.04 → 1.1.05

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.
@@ -0,0 +1,7 @@
1
+ One shell scripts were created:
2
+ run-endless.%sh% runs your tests endlessly.
3
+
4
+ Run run-endless.%sh% and start your kata.
5
+
6
+ Assumptions:
7
+ - The whole kata source code is in the one %kata_file%.js.
@@ -0,0 +1 @@
1
+ codersdojo start vows %kata_file%.js
@@ -0,0 +1,16 @@
1
+ // Adapt the code to your code kata %kata_file%.
2
+ // Important: Test and production code has to be
3
+ // completely in this file.
4
+
5
+ describe '%kata_file%'
6
+ describe '.foo()'
7
+
8
+ function foo() {
9
+ return "fixme"
10
+ }
11
+
12
+ it 'should do something'
13
+ foo().should.be "foo"
14
+ end
15
+ end
16
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codersdojo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 4
10
- version: 1.1.04
9
+ - 5
10
+ version: 1.1.05
11
11
  platform: ruby
12
12
  authors:
13
13
  - CodersDojo-Team
@@ -83,6 +83,9 @@ files:
83
83
  - templates/javascript.jspec/run-endless.%sh%
84
84
  - templates/javascript.jspec/run-once.%sh%
85
85
  - templates/javascript.jspec/spec.js
86
+ - templates/javascript.vows/README
87
+ - templates/javascript.vows/run-endless.%sh%
88
+ - templates/javascript.vows/spec.js
86
89
  - templates/python.pyunit/%kata_file%.py
87
90
  - templates/python.pyunit/README
88
91
  - templates/python.pyunit/run-endless.%sh%