jspec 2.11.2

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.
Files changed (58) hide show
  1. data/History.rdoc +522 -0
  2. data/Manifest +57 -0
  3. data/README.rdoc +825 -0
  4. data/Rakefile +75 -0
  5. data/bin/jspec +305 -0
  6. data/jspec.gemspec +44 -0
  7. data/lib/images/bg.png +0 -0
  8. data/lib/images/hr.png +0 -0
  9. data/lib/images/loading.gif +0 -0
  10. data/lib/images/sprites.bg.png +0 -0
  11. data/lib/images/sprites.png +0 -0
  12. data/lib/images/vr.png +0 -0
  13. data/lib/jspec.css +145 -0
  14. data/lib/jspec.jquery.js +71 -0
  15. data/lib/jspec.js +1771 -0
  16. data/lib/jspec.shell.js +36 -0
  17. data/lib/jspec.timers.js +90 -0
  18. data/lib/jspec.xhr.js +183 -0
  19. data/server/browsers.rb +228 -0
  20. data/server/helpers.rb +82 -0
  21. data/server/routes.rb +57 -0
  22. data/server/server.rb +88 -0
  23. data/spec/async +1 -0
  24. data/spec/env.js +695 -0
  25. data/spec/fixtures/test.html +1 -0
  26. data/spec/fixtures/test.json +1 -0
  27. data/spec/fixtures/test.xml +5 -0
  28. data/spec/helpers.js +66 -0
  29. data/spec/server.rb +2 -0
  30. data/spec/spec.dom.html +34 -0
  31. data/spec/spec.fixtures.js +18 -0
  32. data/spec/spec.grammar-less.js +34 -0
  33. data/spec/spec.grammar.js +226 -0
  34. data/spec/spec.jquery.js +176 -0
  35. data/spec/spec.jquery.xhr.js +65 -0
  36. data/spec/spec.js +166 -0
  37. data/spec/spec.matchers.js +493 -0
  38. data/spec/spec.modules.js +67 -0
  39. data/spec/spec.node.js +46 -0
  40. data/spec/spec.rhino.js +17 -0
  41. data/spec/spec.server.html +29 -0
  42. data/spec/spec.shared-behaviors.js +80 -0
  43. data/spec/spec.utils.js +279 -0
  44. data/spec/spec.xhr.js +156 -0
  45. data/templates/default/History.rdoc +4 -0
  46. data/templates/default/README.rdoc +29 -0
  47. data/templates/default/lib/yourlib.core.js +2 -0
  48. data/templates/default/spec/server.rb +4 -0
  49. data/templates/default/spec/spec.core.js +8 -0
  50. data/templates/default/spec/spec.dom.html +20 -0
  51. data/templates/default/spec/spec.rhino.js +8 -0
  52. data/templates/default/spec/spec.server.html +16 -0
  53. data/templates/rails/server.rb +4 -0
  54. data/templates/rails/spec.application.js +8 -0
  55. data/templates/rails/spec.dom.html +20 -0
  56. data/templates/rails/spec.rhino.js +8 -0
  57. data/templates/rails/spec.server.html +16 -0
  58. metadata +168 -0
data/History.rdoc ADDED
@@ -0,0 +1,522 @@
1
+
2
+ === 2.11.2 / 2009-09-21
3
+
4
+ * Fixed example path in rails template
5
+
6
+ === 2.11.1 / 2009-09-10
7
+
8
+ * Fixed JSpec root when using --symlink, --freeze [#36]
9
+ * Added __END__ to the grammar (works like Ruby's __END__)
10
+
11
+ === 2.11.0 / 2009-09-04
12
+
13
+ * Added --symlink switch (links the current version of JSpec to ./spec/lib) [#4]
14
+ * Added --freeze switch (copies the current version of JSpec to ./spec/lib) [#4]
15
+
16
+ === 2.10.1 / 2009-09-02
17
+
18
+ * Added `jspec shell` sub command (interactive Rhino shell through JSpec)
19
+ * Added jspec.shell.js
20
+
21
+ === 2.10.0 / 2009-08-27
22
+
23
+ * Added Async support via mock timers (lib/jspec.timers.js) [#19]
24
+ * IRC channel up and running! irc://irc.freenode.net#jspec
25
+
26
+ === 2.9.1 / 2009-08-21
27
+
28
+ * Added module support for formatters
29
+
30
+ === 2.9.0 / 2009-08-21
31
+
32
+ * Server output matching Rhino when using verbose or failuresOnly options
33
+ * Added mock_request() and unmock_request() as aliases for mockRequest() and unmockRequest()
34
+ * Added JSpec.JSON.encode()
35
+ * Added default Sinatra routes /slow/NUMBER and /status/NUMBER for simulating
36
+ slow reponses and HTTP status codes.
37
+ * Added server support for loading spec/jspec.rb (or jspec/jspec.rb for rails)
38
+ Allowing additional browser support to be plugged in, as well as Sinatra routes.
39
+ * Added dependency for Sinatra (new server)
40
+ * Added a new Ruby server
41
+ * Added support for --bind and --server on various platforms
42
+ * Added Google Chrome support
43
+ * Added Internet Explorer support
44
+ * Change; --server without --browsers defaults to all supported browsers
45
+ * Removed JSpec.reportToServer()
46
+ Now utilizes JSpec.formatters.Server to handle this
47
+ functionality.
48
+ * Fixed Server output escaping (removed html escaping from puts()) [#13]
49
+ * Fixed JSpec.load(); returns responseText when 2xx or 0 (for file://)
50
+
51
+ === 2.8.4 / 2009-08-02
52
+
53
+ * Fixed error thrown when a module has no utilities
54
+
55
+ === 2.8.3 / 2009-07-30
56
+
57
+ * Added JSpec.evalHook()
58
+ * Added JSpec.paramsFor()
59
+ * Refactored jspec.xhr.js
60
+ * Fixed mock xhr HEAD method
61
+ * Fixed node.js print() newline issue
62
+ * Fixed specs preventing spec/spec.node.js from running
63
+
64
+ === 2.8.2 / 2009-07-29
65
+
66
+ * Added JSpec.tryLoading()
67
+ * Added JSpec.request used to reference the original XMLHttpRequest; used to fix [#149]
68
+ * Fixed Mock XHR issue messing up JSpec request related utilities such as fixture() [#149]
69
+
70
+ === 2.8.1 / 2009-07-27
71
+
72
+ * Added Lawrence Pit as a contributor
73
+ * Fixed object hash equality [#146]
74
+ { a : '1', b : '2' } is now the same as:
75
+ { b : '2', a : '1' }
76
+
77
+ === 2.8.0 / 2009-07-27
78
+
79
+ * Give readFile precendence over xhr so that fixtures work with mockRequest when using Rhino
80
+ * Give XMLHttpRequest precedence over microsoft crap
81
+ * Added Mock Ajax Support
82
+ * Added mockRequest(), unmockRequest() utilities
83
+ * Added jspec.xhr.js
84
+ * Fixed be_visible, and be_hidden. Now implement the jQuery <= 1.3.1 method
85
+
86
+ === 2.7.2 / 2009-07-24
87
+
88
+ * Fixed "end" in spec bodies when using the grammar
89
+ * Fixed "it" in spec bodies when using the grammar [#142]
90
+ * Changed; HTML entities in descriptions are now escaped for DOM formatter [#141]
91
+ * Added enno84@gmx.net as a contributor (thanks for the bug reports)
92
+
93
+ === 2.7.1 / 2009-07-17
94
+
95
+ * Changed; hash() now accepts null
96
+ * Fixed should_receive issue with validating boolean args or return values
97
+ * Fixed --server-only switch
98
+ * Fixed jQuery dependency error message when jQuery is not available
99
+ when using jspec.jquery.js
100
+
101
+ === 2.7.0 / 2009-07-14
102
+
103
+ * Added fixture() utility function
104
+ * Templates initialize with example paths to lib
105
+
106
+ === 2.6.0 / 2009-07-09
107
+
108
+ * Added Ruby on Rails support
109
+ * Added exporting of JSpec (node.js etc)
110
+ * Added be_undefined matcher [#134]
111
+
112
+ === 2.5.1 / 2009-07-07
113
+
114
+ * Added intermediate node.js support
115
+ * Fixed; grammar now allows foo.bar.baz.stub() etc to convert to stub(foo.bar.baz)
116
+
117
+ === 2.5.0 / 2009-07-03
118
+
119
+ * Added contrib in README (thanks to anyone who has helped)
120
+ * Added more shared behavior specs
121
+ * Added Module.DSLs support for extending / adding new DSLs (DSL exchange not yet fully implemented)
122
+ * Added spec to make sure methods like end() will not fail due to the grammar
123
+ * Changed; giving hook precedence to suite hooks (before_each, etc) over module hooks (beforeSuite, etc) ; (thanks mpd)
124
+ * Changed; calls to stub() without and_return() now simply stub an arbitrary method with no return value
125
+ * Changed JSpec.include(); now returns JSpec allowing chaining
126
+ * Fixed having "end" in descriptions which would be replaced with '});'
127
+ * Fixed negation of should.receive('foo') matcher
128
+ * Fixed shared behavior assertion count issue
129
+
130
+ === 2.4.3 / 2009-07-02
131
+
132
+ * Fixed matcher semicolon matcher issue when using the JSpec grammar
133
+ * Added pass() util; Spec#pass() and Spec#fail() (thanks gisikw)
134
+ * Removing Object.prototype.stubby() after specs are finished to prevent pollution
135
+
136
+ === 2.4.2 / 2009-06-30
137
+
138
+ * Fixed trailing comma (thanks Kevin)
139
+
140
+ === 2.4.1 / 2009-06-30
141
+
142
+ * Moved beforeSpec and afterSpec hook into proper positions
143
+ allowing for additional assertions within afterSpec.
144
+
145
+ === 2.4.0 / 2009-06-30
146
+
147
+ * Added hook() and hookImmutable()
148
+ * Added support for matcher lists ('be enabled disabled selected') == be_enabled, be_disabled etc
149
+ * Added JSpec.include()
150
+ * Added several hooks
151
+ * Added Module support
152
+ * Added grammar conversion of Foo.stub('method') to stub(Foo, 'method')
153
+ * Added grammar conversion of Foo.destub() to destub(Foo)
154
+ * Require bind gem
155
+ * Fixed `jspec` bin docs
156
+
157
+ === 2.3.1 / 2009-06-25
158
+
159
+ * Fixed; all stubs generated with stub() are restored
160
+ to their original methods after each 'it' block. See
161
+ README for details.
162
+
163
+ === 2.3.0 / 2009-06-25
164
+
165
+ * Added stub()
166
+ * Added destub()
167
+ * Changed; Server responses utilize Rack::Mime now for arbitrary requests
168
+
169
+ === 2.2.1 / 2009-06-22
170
+
171
+ * Changed; reportToServer() now accepts url arg
172
+
173
+ * Fixed be_empty matcher; now considers {} empty, however { foo : bar } is not
174
+ * Fixed throw_error error messages for Opera
175
+ * Fixed throw_error in Rhino (Opera is broken now)
176
+ * Fixed stray console.log() call
177
+
178
+ * Fixed some tab issues.
179
+ When using the JSpec grammar option you should
180
+ use the 'soft tabs' feature of your IDE or text editor.
181
+ A patch for tabs is pending and should be available soon,
182
+ however be aware that a 'parse error' may occur otherwise.
183
+
184
+ === 2.2.0 / 2009-06-18
185
+
186
+ * Added link to JSpec in JSMag June 2009
187
+ * Added Github gem source location to docs
188
+ * Changed throw_error matcher; now accepts two arguments
189
+ * Changed --server; serves from current working directory.
190
+ This allows files in ../lib/* to be served rather than ./spec/* only.
191
+ * Refactored argumentsToArray()
192
+
193
+ === 2.1.0 / 2009-06-12
194
+
195
+ * Changed `jspec init` to utilize a single template
196
+ which allows for all three suite running capabilities
197
+ within a single template. Now after initializing a
198
+ project you may `jspec run --server`, `jspec run --rhino`
199
+ etc at any time without modifications.
200
+
201
+ === 2.0.3 / 2009-05-15
202
+
203
+ * Table should span full width
204
+ (Very week release I know, but improperly styled things bug me :) )
205
+
206
+ === 2.0.2 / 2009-05-11
207
+
208
+ * Added rails integration link http://github.com/bhauman/jspec-rails
209
+ * Changed; puts() now displays constructor name when available
210
+ * Fixed Terminal output which was not displaying due to a recent commit
211
+ * fixed IE bug : DOM elements don't have valueOf() method
212
+
213
+ === 2.0.1 / 2009-05-01
214
+
215
+ * Added better failure messages for throw_error matcher
216
+ * Renamed print() to puts() [#108]
217
+
218
+ === 2.0.0 / 2009-04-27
219
+
220
+ * Added DOM loading indicator [#105]
221
+ * Added wait() helper for additional async support
222
+ * Added shared behavior support using should_behave_like('Another Suite')
223
+ * Added CSS body toggling [#1]
224
+ * Added receive matcher for Proxy Assertins
225
+ * Added grammar-less support
226
+ * Added an_instance_of() helper
227
+ * Removed .this literal
228
+ * Removed deprecated be_a_TYPE_input matchers
229
+
230
+ * Added ProxyAssertion
231
+ * Added select() util
232
+ * Added does() util for report-less assertions
233
+ * Added find() util
234
+ * Added JSpec.contentsOf()
235
+ * Added matchers to body evaluation [#90]
236
+
237
+ === 1.1.7 / 2009-04-22
238
+
239
+ * Removed trailing commas causing issues with IE (what a suprise ;) )
240
+
241
+ === 1.1.6 / 2009-04-22
242
+
243
+ * Fixed typo in requires()
244
+ * Added expect()
245
+
246
+ === 1.1.5 / 2009-04-17
247
+
248
+ * Strengthened specs for cascading hooks
249
+ * Fixed cascading hooks
250
+
251
+ === 1.1.4 / 2009-04-17
252
+
253
+ * Added rhino and server template files
254
+ * Added JSpec.hasXhr()
255
+ * Added JSpec.xhr()
256
+ * Added Ruby javascript testing server
257
+ * Added support for options passed to run()
258
+ * Added failuresOnly for Terminal formatter
259
+ * Added terminal assertion graphs
260
+ * Addec color() utility
261
+ * Added main.puts() since we use print() as a utility
262
+ * Added rhino support
263
+ * Added fail() utility function
264
+ * Added JSpec.Assertion
265
+ * Added normalizeMatcherMessage()
266
+ * Added normalizeMatcherBody()
267
+ * Added have_classes [#19]
268
+ * Added extend() utility
269
+ * Added be_an_instance_of matcher
270
+ * Added constructor checking support for throw_error matcher [#72]
271
+ * Added file support for exception messages, making them much easier to debug
272
+ * Added catching of exceptions throw within specs [#46]
273
+ * Changed; executable aborts when template does not exist
274
+ * Changed; matchers now normalized upon creation, accepts function, hash, or string.
275
+ * Changed be() matcher to be strict [#57]
276
+ * Changed error() to conditionally show line number when available
277
+ * Renamed Jspec.addSuite to JSpec.describe and Suite#addSpec to Suite#it
278
+ * Refactored be_a_TYPE_input matchers so that the deprication warning is logged only when calling the method
279
+ * Fixed JSpec.requires() now works with latest version of JSpec.error()
280
+ * Fixed error() now displays exceptions throw that do not respond to .message
281
+ * Fixed commenting bug [#37]
282
+ * Removed JSpec.main, now just using local main
283
+
284
+ === 1.1.3 / 2009-04-14
285
+
286
+ * Removed /test used for the executable, causing gem to fail building
287
+
288
+ === 1.1.2 / 2009-04-14
289
+
290
+ * Added `jspec update` sub-command [#63]
291
+
292
+ === 1.1.1 / 2009-04-12
293
+
294
+ * Added gemspec
295
+
296
+ === 1.1.0 / 2009-04-12
297
+
298
+ * jspec executable fully functional
299
+
300
+ === 1.0.4 / 2009-04-09
301
+
302
+ * Added `jspec bind`
303
+ * Added `jspec run`
304
+ * Added `jspec init`
305
+ * Added `jspec` executable
306
+ * Added gemspec and manifest
307
+ * Added command-line usage docs
308
+ * Added custom matchers documentation
309
+ * Removed double negation
310
+
311
+ === 1.0.3 / 2009-04-08
312
+
313
+ * Added have_prop matcher, have_property is now strict [#56]
314
+
315
+ === 1.0.2 / 2009-04-08
316
+
317
+ * Added be_selected, be_checked matchers
318
+ * Added string support to each() each('some foo bar', ...)
319
+ * Added have_ATTR matchers [#51]
320
+ * Deprected be_a_TYPE_input matchers [#50]
321
+
322
+ === 1.0.1 / 2009-04-07
323
+
324
+ * Added have_property matcher [#53]
325
+
326
+ === 1.0.0 / 2009-04-06
327
+
328
+ * Added option() which gives the query string option precedence [#39]
329
+ * Changed; Using JSpec.options.formatter not JSpec.formatter [#44]
330
+ * Fixed Console formatter, now displays nested suites
331
+ * Check out http://visionmedia.github.com/jspec for additional documentation!
332
+
333
+ === 0.9.6 / 2009-04-03
334
+
335
+ * Added nesting support
336
+ * Added printing of nested specs
337
+ * Added assertion graphs to DOM formatter
338
+ * Refactored preprocess()
339
+ * Refactored most of the specs
340
+ * Renamed preProcess() to preprocess()
341
+ * Removed running of a single suite via ?suite= for now
342
+
343
+ === 0.9.5 / 2009-04-02
344
+
345
+ * Added support for printing of function bodies and regexps [#27]
346
+ * Added support for strings / regexp with should_throw_error [#26]
347
+ * Added have_within matcher
348
+ * Added have_at_most matcher
349
+ * Added have_at_least matcher
350
+ * Added have matcher [#24]
351
+
352
+ === 0.9.4 / 2009-04-02
353
+
354
+ * Added be_a_TYPE_input matchers (be_a_checkbox_input, be_a_text_input, etc)
355
+ * Added be_disabled matcher [#21]
356
+ * Added be_enabled matcher [#20]
357
+ * Refactored be_visible and be_hidden with $(elem).is()
358
+
359
+ === 0.9.2 / 2009-04-02
360
+
361
+ * Added support for multi-arg failure messages [#2]
362
+ * Better printing of jQuery objects [#15]
363
+
364
+ === 0.9.1 / 2009-04-02
365
+
366
+ * Added support for dotted negation of assertions (foo.should.not.equal bar)
367
+ * Added support for dot-style assertions [#17] (foo.should_not.equal bar)
368
+
369
+ === 0.9.0 / 2009-04-01
370
+
371
+ * Added spec for strip()
372
+ * Added strip()
373
+ * Added any() util
374
+ * Added new improved include matcher
375
+ * Added have_many and have_one matchers
376
+ * Added have_attr matcher [#14]
377
+ * Added map() util
378
+ * Added inject() util
379
+ * Added escape() util
380
+ * Added recursive array and object printing
381
+ * Added DOM formatter option failuresOnly
382
+ * Added support for running of a single squite via ?suite=...
383
+ * Added query() util
384
+ * Added last() util
385
+ * Added be_within matcher, accepts a range literal
386
+ * Added inclusive range literal n..n
387
+ * Added row hover
388
+ * Refactored range()
389
+ * Refactored setMessage()
390
+ * Refactored hash()
391
+ * Changed; preprocessor passing array of args (multi-arg matcher support)
392
+ * Changed jQuery to $ for internal usage
393
+
394
+ === 0.8.0 / 2009-02-27
395
+
396
+ * Added a new style for the DOM formatter (not finished yet)
397
+
398
+ === 0.7.0 / 2009-02-27
399
+
400
+ * Added Console formatter (anything implementing the console object. Firebug, Safari 4, etc)
401
+ * Added JSpec.options.profile for optional profiling of specs
402
+ * Added this. literal alternative (view readme)
403
+ * Moved formatters into JSpec.formatters
404
+ * Added error() util
405
+ * Added savings raketask
406
+ * Fixed parse error bug in Safari 4
407
+
408
+ === 0.6.3 / 2009-02-26
409
+
410
+ * Added minification for jspec.jquery.js when packaging before release
411
+ * Added compression of css when packaging before release
412
+
413
+ === 0.6.2 / 2009-02-26
414
+
415
+ * Changed; using $ in jspec.jquery.js for JSpec, take that jQuery ;)
416
+ * Added addMatchers, print, hash, and each as 'utility functions' this allows
417
+ JSpec to do each(...) internally instead of JSpec.each(...), while still preventing
418
+ pollution of the global scope.
419
+
420
+ === 0.6.1 / 2009-02-26
421
+
422
+ * Added closrue literal -{ (view README)
423
+ * Added option to DOM formatter, now allows you to specify which element id to output to
424
+
425
+ === 0.6.0 / 2009-02-24
426
+
427
+ * Added JSpec.hash
428
+ * Added be_null matcher
429
+ * Allow recursive composite matching using should_eql and should_not_eql
430
+ For example [1, 2, [3]].should_eql([1, 2, [3]]) is true, works with object
431
+ 'hashes' as well.
432
+
433
+ === 0.5.1 / 2009-02-24
434
+
435
+ * Damn auto-release messed up
436
+
437
+ === 0.5.0 / 2009-02-24
438
+
439
+ * Added async support for jQuery
440
+ * Added JSpec.requires for dependencies
441
+ * Added JSpec.throw
442
+ * Added JSpec.runSpec
443
+ * Refactored jspec.jquery.js
444
+ * Fixed evalBody exceptions, previously was not showing exception message
445
+ * Fixed bug of JSpec interpreting // in a string such as http:// to be a comment.
446
+
447
+ === 0.4.1 / 2009-02-22
448
+
449
+ * Added elements() alias of element()
450
+ * Added support for string passed to runSuite; runSuite('Matchers') is the same as
451
+ runSuite(JSpec.suites['Matchers']).
452
+ * Fixed some documentation
453
+
454
+ === 0.4.0 / 2009-02-20
455
+
456
+ * Added comment literal (//)
457
+ * Added pre-processor for convering matchers.
458
+ For example 'test'.should_be_true becomes JSpec.match('test', 'should_be', 'true'),
459
+ preventing pollution of core prototypes.
460
+
461
+ === 0.3.2 / 2009-02-19
462
+
463
+ * Added TM bundle (go checkout my jspec.tmbundle repo on github)
464
+ * Renamed have_length_of to have_length
465
+
466
+ === 0.3.1 / 2009-02-19
467
+
468
+ * Added jquery js to package
469
+
470
+ === 0.3.0 / 2009-02-19
471
+
472
+ * Added JSpec.match
473
+ * Added options to report() which are passed to formatter
474
+ * Added sandbox helpers (reg / jquery)
475
+ * Added have_child and have_children
476
+ * Added have_tag and have_tags
477
+ * Changed exec to only load / eval file
478
+ * Fixed parser token issue, was previously matching things like end() as literal end
479
+
480
+ === 0.2.3 / 2009-02-18
481
+
482
+ * Changed test dir to spec
483
+ * Changed test.js to core.spec.js
484
+
485
+ === 0.2.2 / 2009-02-18
486
+
487
+ * Added contexts
488
+
489
+ === 0.2.0 / 2009-02-18
490
+
491
+ * Added release rake task
492
+ * Added package with minified alternative
493
+
494
+ === 0.1.0 / 2009-02-18
495
+
496
+ * Added new sexy syntax (warning: you will have to re-write your specs)
497
+ * Added pre-processor for optional matcher parens
498
+ * Added several new matchers
499
+ * Added matcher aliasing
500
+ * Added simple matcher declarations
501
+ * Added __END__
502
+ * Added yet-to-be-implemented specs
503
+ * Added loading of suites via JSpec.load
504
+
505
+ === 0.0.4 / 2008-11-03
506
+
507
+ * Added ability to pass only a description to it(), meaning not yet implemented
508
+
509
+ === 0.0.3 / 2008-10-28
510
+
511
+ * Added should_fail
512
+ * Added should_match
513
+ * Added should_not_match
514
+ * Added should_be and should_not_be
515
+
516
+ === 0.0.2 / 2008-10-28
517
+
518
+ * Fixed typo in documentation for pointing to the master repo
519
+
520
+ === 0.0.1 / 2008-10-28
521
+
522
+ * Initial release
data/Manifest ADDED
@@ -0,0 +1,57 @@
1
+ History.rdoc
2
+ Manifest
3
+ README.rdoc
4
+ Rakefile
5
+ bin/jspec
6
+ jspec.gemspec
7
+ lib/images/bg.png
8
+ lib/images/hr.png
9
+ lib/images/loading.gif
10
+ lib/images/sprites.bg.png
11
+ lib/images/sprites.png
12
+ lib/images/vr.png
13
+ lib/jspec.css
14
+ lib/jspec.jquery.js
15
+ lib/jspec.js
16
+ lib/jspec.shell.js
17
+ lib/jspec.timers.js
18
+ lib/jspec.xhr.js
19
+ server/browsers.rb
20
+ server/helpers.rb
21
+ server/routes.rb
22
+ server/server.rb
23
+ spec/async
24
+ spec/env.js
25
+ spec/fixtures/test.html
26
+ spec/fixtures/test.json
27
+ spec/fixtures/test.xml
28
+ spec/helpers.js
29
+ spec/server.rb
30
+ spec/spec.dom.html
31
+ spec/spec.fixtures.js
32
+ spec/spec.grammar-less.js
33
+ spec/spec.grammar.js
34
+ spec/spec.jquery.js
35
+ spec/spec.jquery.xhr.js
36
+ spec/spec.js
37
+ spec/spec.matchers.js
38
+ spec/spec.modules.js
39
+ spec/spec.node.js
40
+ spec/spec.rhino.js
41
+ spec/spec.server.html
42
+ spec/spec.shared-behaviors.js
43
+ spec/spec.utils.js
44
+ spec/spec.xhr.js
45
+ templates/default/History.rdoc
46
+ templates/default/README.rdoc
47
+ templates/default/lib/yourlib.core.js
48
+ templates/default/spec/server.rb
49
+ templates/default/spec/spec.core.js
50
+ templates/default/spec/spec.dom.html
51
+ templates/default/spec/spec.rhino.js
52
+ templates/default/spec/spec.server.html
53
+ templates/rails/server.rb
54
+ templates/rails/spec.application.js
55
+ templates/rails/spec.dom.html
56
+ templates/rails/spec.rhino.js
57
+ templates/rails/spec.server.html