bootcamp 0.1.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.
- data/.document +5 -0
- data/.rspec +1 -0
- data/.rvmrc +1 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +36 -0
- data/LICENSE.txt +20 -0
- data/NOTES +3 -0
- data/README.rdoc +49 -0
- data/Rakefile +42 -0
- data/VERSION +1 -0
- data/bin/bootcamp +8 -0
- data/bootcamp.gemspec +190 -0
- data/lib/bootcamp.rb +22 -0
- data/lib/bootcamp/armory.rb +20 -0
- data/lib/bootcamp/drill_instructor.rb +95 -0
- data/lib/bootcamp/formations/core.rb +13 -0
- data/lib/bootcamp/formations/html.rb +17 -0
- data/lib/bootcamp/formations/jquery.rb +13 -0
- data/lib/bootcamp/recruit.rb +28 -0
- data/spec/bootcamp_spec.rb +12 -0
- data/spec/spec_helper.rb +12 -0
- data/vendor/core.js +1 -0
- data/vendor/dojo.js +14 -0
- data/vendor/jquery.js +18 -0
- data/vendor/midori.js +1502 -0
- data/vendor/mootools.js +486 -0
- data/vendor/prototype.js +6082 -0
- data/vendor/test_suites/jasmine/SpecRunner.html +27 -0
- data/vendor/test_suites/jasmine/lib/jasmine-1.0.2/MIT.LICENSE +20 -0
- data/vendor/test_suites/jasmine/lib/jasmine-1.0.2/jasmine-html.js +188 -0
- data/vendor/test_suites/jasmine/lib/jasmine-1.0.2/jasmine.css +166 -0
- data/vendor/test_suites/jasmine/lib/jasmine-1.0.2/jasmine.js +2421 -0
- data/vendor/test_suites/jasmine/spec/PlayerSpec.js +58 -0
- data/vendor/test_suites/jasmine/spec/SpecHelper.js +9 -0
- data/vendor/test_suites/jasmine/src/Player.js +22 -0
- data/vendor/test_suites/jasmine/src/Song.js +7 -0
- data/vendor/test_suites/jspec/History.md +790 -0
- data/vendor/test_suites/jspec/Manifest +79 -0
- data/vendor/test_suites/jspec/README.md +1030 -0
- data/vendor/test_suites/jspec/Rakefile +28 -0
- data/vendor/test_suites/jspec/bin/jspec +182 -0
- data/vendor/test_suites/jspec/jspec.gemspec +44 -0
- data/vendor/test_suites/jspec/lib/images/bg.png +0 -0
- data/vendor/test_suites/jspec/lib/images/hr.png +0 -0
- data/vendor/test_suites/jspec/lib/images/loading.gif +0 -0
- data/vendor/test_suites/jspec/lib/images/sprites.bg.png +0 -0
- data/vendor/test_suites/jspec/lib/images/sprites.png +0 -0
- data/vendor/test_suites/jspec/lib/images/vr.png +0 -0
- data/vendor/test_suites/jspec/lib/jspec.css +149 -0
- data/vendor/test_suites/jspec/lib/jspec.growl.js +115 -0
- data/vendor/test_suites/jspec/lib/jspec.jquery.js +72 -0
- data/vendor/test_suites/jspec/lib/jspec.js +1876 -0
- data/vendor/test_suites/jspec/lib/jspec.shell.js +39 -0
- data/vendor/test_suites/jspec/lib/jspec.timers.js +90 -0
- data/vendor/test_suites/jspec/lib/jspec.xhr.js +195 -0
- data/vendor/test_suites/jspec/spec/commands/example_command.rb +19 -0
- data/vendor/test_suites/jspec/spec/dom.html +33 -0
- data/vendor/test_suites/jspec/spec/fixtures/test.html +1 -0
- data/vendor/test_suites/jspec/spec/fixtures/test.json +1 -0
- data/vendor/test_suites/jspec/spec/fixtures/test.xml +5 -0
- data/vendor/test_suites/jspec/spec/node.js +17 -0
- data/vendor/test_suites/jspec/spec/rhino.js +23 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/init_spec.rb +101 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/install_spec.rb +141 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/run_spec.rb +0 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/shell_spec.rb +13 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/spec_helper.rb +8 -0
- data/vendor/test_suites/jspec/spec/ruby/bin/update_spec.rb +72 -0
- data/vendor/test_suites/jspec/spec/server.html +29 -0
- data/vendor/test_suites/jspec/spec/server.rb +2 -0
- data/vendor/test_suites/jspec/spec/support/env.js +10118 -0
- data/vendor/test_suites/jspec/spec/support/jquery.js +4376 -0
- data/vendor/test_suites/jspec/spec/unit/helpers.js +64 -0
- data/vendor/test_suites/jspec/spec/unit/spec.fixtures.js +24 -0
- data/vendor/test_suites/jspec/spec/unit/spec.grammar-less.js +34 -0
- data/vendor/test_suites/jspec/spec/unit/spec.grammar.js +275 -0
- data/vendor/test_suites/jspec/spec/unit/spec.jquery.js +178 -0
- data/vendor/test_suites/jspec/spec/unit/spec.jquery.xhr.js +84 -0
- data/vendor/test_suites/jspec/spec/unit/spec.js +187 -0
- data/vendor/test_suites/jspec/spec/unit/spec.matchers.js +577 -0
- data/vendor/test_suites/jspec/spec/unit/spec.modules.js +51 -0
- data/vendor/test_suites/jspec/spec/unit/spec.shared-behaviors.js +279 -0
- data/vendor/test_suites/jspec/spec/unit/spec.utils.js +346 -0
- data/vendor/test_suites/jspec/spec/unit/spec.xhr.js +157 -0
- data/vendor/test_suites/jspec/src/browsers.rb +279 -0
- data/vendor/test_suites/jspec/src/helpers.rb +67 -0
- data/vendor/test_suites/jspec/src/installables.rb +229 -0
- data/vendor/test_suites/jspec/src/project.rb +341 -0
- data/vendor/test_suites/jspec/src/routes.rb +57 -0
- data/vendor/test_suites/jspec/src/server.rb +88 -0
- data/vendor/test_suites/jspec/support/js.jar +0 -0
- data/vendor/test_suites/jspec/templates/default/History.md +5 -0
- data/vendor/test_suites/jspec/templates/default/Readme.md +29 -0
- data/vendor/test_suites/jspec/templates/default/lib/yourlib.js +2 -0
- data/vendor/test_suites/jspec/templates/default/spec/commands/example_command.rb +19 -0
- data/vendor/test_suites/jspec/templates/default/spec/dom.html +22 -0
- data/vendor/test_suites/jspec/templates/default/spec/node.js +10 -0
- data/vendor/test_suites/jspec/templates/default/spec/rhino.js +10 -0
- data/vendor/test_suites/jspec/templates/default/spec/server.html +18 -0
- data/vendor/test_suites/jspec/templates/default/spec/server.rb +4 -0
- data/vendor/test_suites/jspec/templates/default/spec/unit/spec.helper.js +0 -0
- data/vendor/test_suites/jspec/templates/default/spec/unit/spec.js +8 -0
- data/vendor/test_suites/jspec/templates/node/History.md +5 -0
- data/vendor/test_suites/jspec/templates/node/Readme.md +29 -0
- data/vendor/test_suites/jspec/templates/node/lib/yourlib.js +2 -0
- data/vendor/test_suites/jspec/templates/node/spec/node.js +10 -0
- data/vendor/test_suites/jspec/templates/node/spec/unit/spec.helper.js +0 -0
- data/vendor/test_suites/jspec/templates/node/spec/unit/spec.js +8 -0
- data/vendor/test_suites/jspec/templates/rails/commands/example_commands.rb +19 -0
- data/vendor/test_suites/jspec/templates/rails/dom.html +22 -0
- data/vendor/test_suites/jspec/templates/rails/rhino.js +10 -0
- data/vendor/test_suites/jspec/templates/rails/server.html +18 -0
- data/vendor/test_suites/jspec/templates/rails/server.rb +4 -0
- data/vendor/test_suites/jspec/templates/rails/unit/spec.helper.js +0 -0
- data/vendor/test_suites/jspec/templates/rails/unit/spec.js +8 -0
- data/vendor/test_suites/qunit/README.md +24 -0
- data/vendor/test_suites/qunit/package.json +21 -0
- data/vendor/test_suites/qunit/qunit/qunit.css +225 -0
- data/vendor/test_suites/qunit/qunit/qunit.js +1448 -0
- data/vendor/test_suites/qunit/test/headless.html +24 -0
- data/vendor/test_suites/qunit/test/index.html +19 -0
- data/vendor/test_suites/qunit/test/logs.html +17 -0
- data/vendor/test_suites/qunit/test/logs.js +150 -0
- data/vendor/test_suites/qunit/test/same.js +1421 -0
- data/vendor/test_suites/qunit/test/test.js +324 -0
- metadata +282 -0
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
test("module without setup/teardown (default)", function() {
|
|
2
|
+
expect(1);
|
|
3
|
+
ok(true);
|
|
4
|
+
});
|
|
5
|
+
|
|
6
|
+
test("expect in test", 3, function() {
|
|
7
|
+
ok(true);
|
|
8
|
+
ok(true);
|
|
9
|
+
ok(true);
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
test("expect in test", 1, function() {
|
|
13
|
+
ok(true);
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
module("setup test", {
|
|
17
|
+
setup: function() {
|
|
18
|
+
ok(true);
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
test("module with setup", function() {
|
|
23
|
+
expect(2);
|
|
24
|
+
ok(true);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
test("module with setup, expect in test call", 2, function() {
|
|
28
|
+
ok(true);
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
var state;
|
|
32
|
+
|
|
33
|
+
module("setup/teardown test", {
|
|
34
|
+
setup: function() {
|
|
35
|
+
state = true;
|
|
36
|
+
ok(true);
|
|
37
|
+
},
|
|
38
|
+
teardown: function() {
|
|
39
|
+
ok(true);
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
test("module with setup/teardown", function() {
|
|
44
|
+
expect(3);
|
|
45
|
+
ok(true);
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
module("setup/teardown test 2");
|
|
49
|
+
|
|
50
|
+
test("module without setup/teardown", function() {
|
|
51
|
+
expect(1);
|
|
52
|
+
ok(true);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
if (typeof setTimeout !== 'undefined') {
|
|
56
|
+
state = 'fail';
|
|
57
|
+
|
|
58
|
+
module("teardown and stop", {
|
|
59
|
+
teardown: function() {
|
|
60
|
+
equal(state, "done", "Test teardown.");
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
test("teardown must be called after test ended", function() {
|
|
65
|
+
expect(1);
|
|
66
|
+
stop();
|
|
67
|
+
setTimeout(function() {
|
|
68
|
+
state = "done";
|
|
69
|
+
start();
|
|
70
|
+
}, 13);
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
module("async setup test", {
|
|
74
|
+
setup: function() {
|
|
75
|
+
stop();
|
|
76
|
+
setTimeout(function(){
|
|
77
|
+
ok(true);
|
|
78
|
+
start();
|
|
79
|
+
}, 500);
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
asyncTest("module with async setup", function() {
|
|
84
|
+
expect(2);
|
|
85
|
+
ok(true);
|
|
86
|
+
start();
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
module("async teardown test", {
|
|
90
|
+
teardown: function() {
|
|
91
|
+
stop();
|
|
92
|
+
setTimeout(function(){
|
|
93
|
+
ok(true);
|
|
94
|
+
start();
|
|
95
|
+
}, 500);
|
|
96
|
+
}
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
asyncTest("module with async teardown", function() {
|
|
100
|
+
expect(2);
|
|
101
|
+
ok(true);
|
|
102
|
+
start();
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
module("asyncTest");
|
|
106
|
+
|
|
107
|
+
asyncTest("asyncTest", function() {
|
|
108
|
+
expect(2);
|
|
109
|
+
ok(true);
|
|
110
|
+
setTimeout(function() {
|
|
111
|
+
state = "done";
|
|
112
|
+
ok(true);
|
|
113
|
+
start();
|
|
114
|
+
}, 13);
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
asyncTest("asyncTest", 2, function() {
|
|
118
|
+
ok(true);
|
|
119
|
+
setTimeout(function() {
|
|
120
|
+
state = "done";
|
|
121
|
+
ok(true);
|
|
122
|
+
start();
|
|
123
|
+
}, 13);
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
test("sync", 2, function() {
|
|
127
|
+
stop();
|
|
128
|
+
setTimeout(function() {
|
|
129
|
+
ok(true);
|
|
130
|
+
start();
|
|
131
|
+
}, 13);
|
|
132
|
+
stop();
|
|
133
|
+
setTimeout(function() {
|
|
134
|
+
ok(true);
|
|
135
|
+
start();
|
|
136
|
+
}, 125);
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
module("save scope", {
|
|
141
|
+
setup: function() {
|
|
142
|
+
this.foo = "bar";
|
|
143
|
+
},
|
|
144
|
+
teardown: function() {
|
|
145
|
+
deepEqual(this.foo, "bar");
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
test("scope check", function() {
|
|
149
|
+
expect(2);
|
|
150
|
+
deepEqual(this.foo, "bar");
|
|
151
|
+
});
|
|
152
|
+
|
|
153
|
+
module("simple testEnvironment setup", {
|
|
154
|
+
foo: "bar",
|
|
155
|
+
bugid: "#5311" // example of meta-data
|
|
156
|
+
});
|
|
157
|
+
test("scope check", function() {
|
|
158
|
+
deepEqual(this.foo, "bar");
|
|
159
|
+
});
|
|
160
|
+
test("modify testEnvironment",function() {
|
|
161
|
+
this.foo="hamster";
|
|
162
|
+
});
|
|
163
|
+
test("testEnvironment reset for next test",function() {
|
|
164
|
+
deepEqual(this.foo, "bar");
|
|
165
|
+
});
|
|
166
|
+
|
|
167
|
+
module("testEnvironment with object", {
|
|
168
|
+
options:{
|
|
169
|
+
recipe:"soup",
|
|
170
|
+
ingredients:["hamster","onions"]
|
|
171
|
+
}
|
|
172
|
+
});
|
|
173
|
+
test("scope check", function() {
|
|
174
|
+
deepEqual(this.options, {recipe:"soup",ingredients:["hamster","onions"]}) ;
|
|
175
|
+
});
|
|
176
|
+
test("modify testEnvironment",function() {
|
|
177
|
+
// since we do a shallow copy, the testEnvironment can be modified
|
|
178
|
+
this.options.ingredients.push("carrots");
|
|
179
|
+
});
|
|
180
|
+
test("testEnvironment reset for next test",function() {
|
|
181
|
+
deepEqual(this.options, {recipe:"soup",ingredients:["hamster","onions","carrots"]}, "Is this a bug or a feature? Could do a deep copy") ;
|
|
182
|
+
});
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
module("testEnvironment tests");
|
|
186
|
+
|
|
187
|
+
function makeurl() {
|
|
188
|
+
var testEnv = QUnit.current_testEnvironment;
|
|
189
|
+
var url = testEnv.url || 'http://example.com/search';
|
|
190
|
+
var q = testEnv.q || 'a search test';
|
|
191
|
+
return url + '?q='+encodeURIComponent(q);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
test("makeurl working",function() {
|
|
195
|
+
equal( QUnit.current_testEnvironment, this, 'The current testEnvironment is global');
|
|
196
|
+
equal( makeurl(), 'http://example.com/search?q=a%20search%20test', 'makeurl returns a default url if nothing specified in the testEnvironment');
|
|
197
|
+
});
|
|
198
|
+
|
|
199
|
+
module("testEnvironment with makeurl settings", {
|
|
200
|
+
url: 'http://google.com/',
|
|
201
|
+
q: 'another_search_test'
|
|
202
|
+
});
|
|
203
|
+
test("makeurl working with settings from testEnvironment", function() {
|
|
204
|
+
equal( makeurl(), 'http://google.com/?q=another_search_test', 'rather than passing arguments, we use test metadata to form the url');
|
|
205
|
+
});
|
|
206
|
+
test("each test can extend the module testEnvironment", {
|
|
207
|
+
q:'hamstersoup'
|
|
208
|
+
}, function() {
|
|
209
|
+
equal( makeurl(), 'http://google.com/?q=hamstersoup', 'url from module, q from test');
|
|
210
|
+
});
|
|
211
|
+
|
|
212
|
+
module("jsDump");
|
|
213
|
+
test("jsDump output", function() {
|
|
214
|
+
equals( QUnit.jsDump.parse([1, 2]), "[\n 1,\n 2\n]" );
|
|
215
|
+
equals( QUnit.jsDump.parse({top: 5, left: 0}), "{\n \"top\": 5,\n \"left\": 0\n}" );
|
|
216
|
+
if (typeof document !== 'undefined' && document.getElementById("qunit-header")) {
|
|
217
|
+
equals( QUnit.jsDump.parse(document.getElementById("qunit-header")), "<h1 id=\"qunit-header\"></h1>" );
|
|
218
|
+
equals( QUnit.jsDump.parse(document.getElementsByTagName("h1")), "[\n <h1 id=\"qunit-header\"></h1>\n]" );
|
|
219
|
+
}
|
|
220
|
+
});
|
|
221
|
+
|
|
222
|
+
module("assertions");
|
|
223
|
+
test("raises",function() {
|
|
224
|
+
function CustomError( message ) {
|
|
225
|
+
this.message = message;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
CustomError.prototype.toString = function() {
|
|
229
|
+
return this.message;
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
raises(
|
|
233
|
+
function() {
|
|
234
|
+
throw "error"
|
|
235
|
+
}
|
|
236
|
+
);
|
|
237
|
+
|
|
238
|
+
raises(
|
|
239
|
+
function() {
|
|
240
|
+
throw "error"
|
|
241
|
+
},
|
|
242
|
+
'raises with just a message, no expected'
|
|
243
|
+
);
|
|
244
|
+
|
|
245
|
+
raises(
|
|
246
|
+
function() {
|
|
247
|
+
throw new CustomError();
|
|
248
|
+
},
|
|
249
|
+
CustomError,
|
|
250
|
+
'raised error is an instance of CustomError'
|
|
251
|
+
);
|
|
252
|
+
|
|
253
|
+
raises(
|
|
254
|
+
function() {
|
|
255
|
+
throw new CustomError("some error description");
|
|
256
|
+
},
|
|
257
|
+
/description/,
|
|
258
|
+
"raised error message contains 'description'"
|
|
259
|
+
);
|
|
260
|
+
|
|
261
|
+
raises(
|
|
262
|
+
function() {
|
|
263
|
+
throw new CustomError("some error description");
|
|
264
|
+
},
|
|
265
|
+
function( err ) {
|
|
266
|
+
if ( (err instanceof CustomError) && /description/.test(err) ) {
|
|
267
|
+
return true;
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"custom validation function"
|
|
271
|
+
);
|
|
272
|
+
|
|
273
|
+
});
|
|
274
|
+
|
|
275
|
+
if (typeof document !== "undefined") {
|
|
276
|
+
|
|
277
|
+
module("fixture");
|
|
278
|
+
test("setup", function() {
|
|
279
|
+
document.getElementById("qunit-fixture").innerHTML = "foobar";
|
|
280
|
+
});
|
|
281
|
+
test("basics", function() {
|
|
282
|
+
equal( document.getElementById("qunit-fixture").innerHTML, "test markup", "automatically reset" );
|
|
283
|
+
});
|
|
284
|
+
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
module("custom assertions");
|
|
288
|
+
(function() {
|
|
289
|
+
function mod2(value, expected, message) {
|
|
290
|
+
var actual = value % 2;
|
|
291
|
+
QUnit.push(actual == expected, actual, expected, message);
|
|
292
|
+
}
|
|
293
|
+
test("mod2", function() {
|
|
294
|
+
mod2(2, 0, "2 % 2 == 0");
|
|
295
|
+
mod2(3, 1, "3 % 2 == 1");
|
|
296
|
+
})
|
|
297
|
+
})();
|
|
298
|
+
|
|
299
|
+
(function() {
|
|
300
|
+
var reset = QUnit.reset;
|
|
301
|
+
function afterTest() {
|
|
302
|
+
ok( false, "reset should not modify test status" );
|
|
303
|
+
}
|
|
304
|
+
module("reset");
|
|
305
|
+
test("reset runs assertions", function() {
|
|
306
|
+
QUnit.reset = function() {
|
|
307
|
+
afterTest();
|
|
308
|
+
reset.apply( this, arguments );
|
|
309
|
+
};
|
|
310
|
+
});
|
|
311
|
+
test("reset runs assertions2", function() {
|
|
312
|
+
QUnit.reset = reset;
|
|
313
|
+
});
|
|
314
|
+
})();
|
|
315
|
+
|
|
316
|
+
module("noglobals", {
|
|
317
|
+
teardown: function() {
|
|
318
|
+
delete window.badGlobalVariableIntroducedInTest;
|
|
319
|
+
}
|
|
320
|
+
});
|
|
321
|
+
test("let teardown clean up globals", function() {
|
|
322
|
+
// this test will always pass if run without ?noglobals=true
|
|
323
|
+
window.badGlobalVariableIntroducedInTest = true;
|
|
324
|
+
});
|
metadata
ADDED
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: bootcamp
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.1.0
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Jeremy Woertink
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2011-06-01 00:00:00 -07:00
|
|
14
|
+
default_executable: bootcamp
|
|
15
|
+
dependencies:
|
|
16
|
+
- !ruby/object:Gem::Dependency
|
|
17
|
+
name: rake
|
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
19
|
+
none: false
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
type: :runtime
|
|
25
|
+
prerelease: false
|
|
26
|
+
version_requirements: *id001
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: git
|
|
29
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
30
|
+
none: false
|
|
31
|
+
requirements:
|
|
32
|
+
- - ">="
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: "0"
|
|
35
|
+
type: :runtime
|
|
36
|
+
prerelease: false
|
|
37
|
+
version_requirements: *id002
|
|
38
|
+
- !ruby/object:Gem::Dependency
|
|
39
|
+
name: thor
|
|
40
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: "0"
|
|
46
|
+
type: :runtime
|
|
47
|
+
prerelease: false
|
|
48
|
+
version_requirements: *id003
|
|
49
|
+
- !ruby/object:Gem::Dependency
|
|
50
|
+
name: highline
|
|
51
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
52
|
+
none: false
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: "0"
|
|
57
|
+
type: :runtime
|
|
58
|
+
prerelease: false
|
|
59
|
+
version_requirements: *id004
|
|
60
|
+
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: rspec
|
|
62
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
|
63
|
+
none: false
|
|
64
|
+
requirements:
|
|
65
|
+
- - ~>
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: 2.3.0
|
|
68
|
+
type: :development
|
|
69
|
+
prerelease: false
|
|
70
|
+
version_requirements: *id005
|
|
71
|
+
- !ruby/object:Gem::Dependency
|
|
72
|
+
name: shoulda
|
|
73
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
|
74
|
+
none: false
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: "0"
|
|
79
|
+
type: :development
|
|
80
|
+
prerelease: false
|
|
81
|
+
version_requirements: *id006
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: yard
|
|
84
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
|
85
|
+
none: false
|
|
86
|
+
requirements:
|
|
87
|
+
- - ~>
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 0.6.0
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: *id007
|
|
93
|
+
- !ruby/object:Gem::Dependency
|
|
94
|
+
name: bundler
|
|
95
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
|
96
|
+
none: false
|
|
97
|
+
requirements:
|
|
98
|
+
- - ~>
|
|
99
|
+
- !ruby/object:Gem::Version
|
|
100
|
+
version: 1.0.0
|
|
101
|
+
type: :development
|
|
102
|
+
prerelease: false
|
|
103
|
+
version_requirements: *id008
|
|
104
|
+
- !ruby/object:Gem::Dependency
|
|
105
|
+
name: jeweler
|
|
106
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
|
107
|
+
none: false
|
|
108
|
+
requirements:
|
|
109
|
+
- - ~>
|
|
110
|
+
- !ruby/object:Gem::Version
|
|
111
|
+
version: 1.6.0
|
|
112
|
+
type: :development
|
|
113
|
+
prerelease: false
|
|
114
|
+
version_requirements: *id009
|
|
115
|
+
description: Check out the README file for more info
|
|
116
|
+
email: jeremywoertink@gmail.com
|
|
117
|
+
executables:
|
|
118
|
+
- bootcamp
|
|
119
|
+
extensions: []
|
|
120
|
+
|
|
121
|
+
extra_rdoc_files:
|
|
122
|
+
- LICENSE.txt
|
|
123
|
+
- README.rdoc
|
|
124
|
+
files:
|
|
125
|
+
- .document
|
|
126
|
+
- .rspec
|
|
127
|
+
- .rvmrc
|
|
128
|
+
- Gemfile
|
|
129
|
+
- Gemfile.lock
|
|
130
|
+
- LICENSE.txt
|
|
131
|
+
- NOTES
|
|
132
|
+
- README.rdoc
|
|
133
|
+
- Rakefile
|
|
134
|
+
- VERSION
|
|
135
|
+
- bin/bootcamp
|
|
136
|
+
- bootcamp.gemspec
|
|
137
|
+
- lib/bootcamp.rb
|
|
138
|
+
- lib/bootcamp/armory.rb
|
|
139
|
+
- lib/bootcamp/drill_instructor.rb
|
|
140
|
+
- lib/bootcamp/formations/core.rb
|
|
141
|
+
- lib/bootcamp/formations/html.rb
|
|
142
|
+
- lib/bootcamp/formations/jquery.rb
|
|
143
|
+
- lib/bootcamp/recruit.rb
|
|
144
|
+
- spec/bootcamp_spec.rb
|
|
145
|
+
- spec/spec_helper.rb
|
|
146
|
+
- vendor/core.js
|
|
147
|
+
- vendor/dojo.js
|
|
148
|
+
- vendor/jquery.js
|
|
149
|
+
- vendor/midori.js
|
|
150
|
+
- vendor/mootools.js
|
|
151
|
+
- vendor/prototype.js
|
|
152
|
+
- vendor/test_suites/jasmine/SpecRunner.html
|
|
153
|
+
- vendor/test_suites/jasmine/lib/jasmine-1.0.2/MIT.LICENSE
|
|
154
|
+
- vendor/test_suites/jasmine/lib/jasmine-1.0.2/jasmine-html.js
|
|
155
|
+
- vendor/test_suites/jasmine/lib/jasmine-1.0.2/jasmine.css
|
|
156
|
+
- vendor/test_suites/jasmine/lib/jasmine-1.0.2/jasmine.js
|
|
157
|
+
- vendor/test_suites/jasmine/spec/PlayerSpec.js
|
|
158
|
+
- vendor/test_suites/jasmine/spec/SpecHelper.js
|
|
159
|
+
- vendor/test_suites/jasmine/src/Player.js
|
|
160
|
+
- vendor/test_suites/jasmine/src/Song.js
|
|
161
|
+
- vendor/test_suites/jspec/History.md
|
|
162
|
+
- vendor/test_suites/jspec/Manifest
|
|
163
|
+
- vendor/test_suites/jspec/README.md
|
|
164
|
+
- vendor/test_suites/jspec/Rakefile
|
|
165
|
+
- vendor/test_suites/jspec/bin/jspec
|
|
166
|
+
- vendor/test_suites/jspec/jspec.gemspec
|
|
167
|
+
- vendor/test_suites/jspec/lib/images/bg.png
|
|
168
|
+
- vendor/test_suites/jspec/lib/images/hr.png
|
|
169
|
+
- vendor/test_suites/jspec/lib/images/loading.gif
|
|
170
|
+
- vendor/test_suites/jspec/lib/images/sprites.bg.png
|
|
171
|
+
- vendor/test_suites/jspec/lib/images/sprites.png
|
|
172
|
+
- vendor/test_suites/jspec/lib/images/vr.png
|
|
173
|
+
- vendor/test_suites/jspec/lib/jspec.css
|
|
174
|
+
- vendor/test_suites/jspec/lib/jspec.growl.js
|
|
175
|
+
- vendor/test_suites/jspec/lib/jspec.jquery.js
|
|
176
|
+
- vendor/test_suites/jspec/lib/jspec.js
|
|
177
|
+
- vendor/test_suites/jspec/lib/jspec.shell.js
|
|
178
|
+
- vendor/test_suites/jspec/lib/jspec.timers.js
|
|
179
|
+
- vendor/test_suites/jspec/lib/jspec.xhr.js
|
|
180
|
+
- vendor/test_suites/jspec/spec/commands/example_command.rb
|
|
181
|
+
- vendor/test_suites/jspec/spec/dom.html
|
|
182
|
+
- vendor/test_suites/jspec/spec/fixtures/test.html
|
|
183
|
+
- vendor/test_suites/jspec/spec/fixtures/test.json
|
|
184
|
+
- vendor/test_suites/jspec/spec/fixtures/test.xml
|
|
185
|
+
- vendor/test_suites/jspec/spec/node.js
|
|
186
|
+
- vendor/test_suites/jspec/spec/rhino.js
|
|
187
|
+
- vendor/test_suites/jspec/spec/ruby/bin/init_spec.rb
|
|
188
|
+
- vendor/test_suites/jspec/spec/ruby/bin/install_spec.rb
|
|
189
|
+
- vendor/test_suites/jspec/spec/ruby/bin/run_spec.rb
|
|
190
|
+
- vendor/test_suites/jspec/spec/ruby/bin/shell_spec.rb
|
|
191
|
+
- vendor/test_suites/jspec/spec/ruby/bin/spec_helper.rb
|
|
192
|
+
- vendor/test_suites/jspec/spec/ruby/bin/update_spec.rb
|
|
193
|
+
- vendor/test_suites/jspec/spec/server.html
|
|
194
|
+
- vendor/test_suites/jspec/spec/server.rb
|
|
195
|
+
- vendor/test_suites/jspec/spec/support/env.js
|
|
196
|
+
- vendor/test_suites/jspec/spec/support/jquery.js
|
|
197
|
+
- vendor/test_suites/jspec/spec/unit/helpers.js
|
|
198
|
+
- vendor/test_suites/jspec/spec/unit/spec.fixtures.js
|
|
199
|
+
- vendor/test_suites/jspec/spec/unit/spec.grammar-less.js
|
|
200
|
+
- vendor/test_suites/jspec/spec/unit/spec.grammar.js
|
|
201
|
+
- vendor/test_suites/jspec/spec/unit/spec.jquery.js
|
|
202
|
+
- vendor/test_suites/jspec/spec/unit/spec.jquery.xhr.js
|
|
203
|
+
- vendor/test_suites/jspec/spec/unit/spec.js
|
|
204
|
+
- vendor/test_suites/jspec/spec/unit/spec.matchers.js
|
|
205
|
+
- vendor/test_suites/jspec/spec/unit/spec.modules.js
|
|
206
|
+
- vendor/test_suites/jspec/spec/unit/spec.shared-behaviors.js
|
|
207
|
+
- vendor/test_suites/jspec/spec/unit/spec.utils.js
|
|
208
|
+
- vendor/test_suites/jspec/spec/unit/spec.xhr.js
|
|
209
|
+
- vendor/test_suites/jspec/src/browsers.rb
|
|
210
|
+
- vendor/test_suites/jspec/src/helpers.rb
|
|
211
|
+
- vendor/test_suites/jspec/src/installables.rb
|
|
212
|
+
- vendor/test_suites/jspec/src/project.rb
|
|
213
|
+
- vendor/test_suites/jspec/src/routes.rb
|
|
214
|
+
- vendor/test_suites/jspec/src/server.rb
|
|
215
|
+
- vendor/test_suites/jspec/support/js.jar
|
|
216
|
+
- vendor/test_suites/jspec/templates/default/History.md
|
|
217
|
+
- vendor/test_suites/jspec/templates/default/Readme.md
|
|
218
|
+
- vendor/test_suites/jspec/templates/default/lib/yourlib.js
|
|
219
|
+
- vendor/test_suites/jspec/templates/default/spec/commands/example_command.rb
|
|
220
|
+
- vendor/test_suites/jspec/templates/default/spec/dom.html
|
|
221
|
+
- vendor/test_suites/jspec/templates/default/spec/node.js
|
|
222
|
+
- vendor/test_suites/jspec/templates/default/spec/rhino.js
|
|
223
|
+
- vendor/test_suites/jspec/templates/default/spec/server.html
|
|
224
|
+
- vendor/test_suites/jspec/templates/default/spec/server.rb
|
|
225
|
+
- vendor/test_suites/jspec/templates/default/spec/unit/spec.helper.js
|
|
226
|
+
- vendor/test_suites/jspec/templates/default/spec/unit/spec.js
|
|
227
|
+
- vendor/test_suites/jspec/templates/node/History.md
|
|
228
|
+
- vendor/test_suites/jspec/templates/node/Readme.md
|
|
229
|
+
- vendor/test_suites/jspec/templates/node/lib/yourlib.js
|
|
230
|
+
- vendor/test_suites/jspec/templates/node/spec/node.js
|
|
231
|
+
- vendor/test_suites/jspec/templates/node/spec/unit/spec.helper.js
|
|
232
|
+
- vendor/test_suites/jspec/templates/node/spec/unit/spec.js
|
|
233
|
+
- vendor/test_suites/jspec/templates/rails/commands/example_commands.rb
|
|
234
|
+
- vendor/test_suites/jspec/templates/rails/dom.html
|
|
235
|
+
- vendor/test_suites/jspec/templates/rails/rhino.js
|
|
236
|
+
- vendor/test_suites/jspec/templates/rails/server.html
|
|
237
|
+
- vendor/test_suites/jspec/templates/rails/server.rb
|
|
238
|
+
- vendor/test_suites/jspec/templates/rails/unit/spec.helper.js
|
|
239
|
+
- vendor/test_suites/jspec/templates/rails/unit/spec.js
|
|
240
|
+
- vendor/test_suites/qunit/README.md
|
|
241
|
+
- vendor/test_suites/qunit/package.json
|
|
242
|
+
- vendor/test_suites/qunit/qunit/qunit.css
|
|
243
|
+
- vendor/test_suites/qunit/qunit/qunit.js
|
|
244
|
+
- vendor/test_suites/qunit/test/headless.html
|
|
245
|
+
- vendor/test_suites/qunit/test/index.html
|
|
246
|
+
- vendor/test_suites/qunit/test/logs.html
|
|
247
|
+
- vendor/test_suites/qunit/test/logs.js
|
|
248
|
+
- vendor/test_suites/qunit/test/same.js
|
|
249
|
+
- vendor/test_suites/qunit/test/test.js
|
|
250
|
+
has_rdoc: true
|
|
251
|
+
homepage: http://github.com/jwoertink/bootcamp
|
|
252
|
+
licenses:
|
|
253
|
+
- MIT
|
|
254
|
+
post_install_message:
|
|
255
|
+
rdoc_options: []
|
|
256
|
+
|
|
257
|
+
require_paths:
|
|
258
|
+
- lib
|
|
259
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
260
|
+
none: false
|
|
261
|
+
requirements:
|
|
262
|
+
- - ">="
|
|
263
|
+
- !ruby/object:Gem::Version
|
|
264
|
+
hash: 810978145486777412
|
|
265
|
+
segments:
|
|
266
|
+
- 0
|
|
267
|
+
version: "0"
|
|
268
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
269
|
+
none: false
|
|
270
|
+
requirements:
|
|
271
|
+
- - ">="
|
|
272
|
+
- !ruby/object:Gem::Version
|
|
273
|
+
version: "0"
|
|
274
|
+
requirements: []
|
|
275
|
+
|
|
276
|
+
rubyforge_project:
|
|
277
|
+
rubygems_version: 1.5.2
|
|
278
|
+
signing_key:
|
|
279
|
+
specification_version: 3
|
|
280
|
+
summary: A gem to manage JavaScript Plugins
|
|
281
|
+
test_files: []
|
|
282
|
+
|