stylus-source 0.31.0 → 0.32.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.
- checksums.yaml +7 -0
- data/VERSION +1 -1
- data/vendor/lib/nodes/unit.js +1 -1
- data/vendor/lib/parser.js +0 -1
- data/vendor/lib/renderer.js +2 -0
- data/vendor/lib/visitor/compiler.js +6 -0
- data/vendor/node_modules/cssom/README.mdown +34 -0
- data/vendor/node_modules/cssom/package.json +2 -1
- data/vendor/node_modules/debug/History.md +15 -0
- data/vendor/node_modules/debug/Readme.md +3 -18
- data/vendor/node_modules/debug/component.json +9 -0
- data/vendor/node_modules/debug/debug.js +10 -2
- data/vendor/node_modules/debug/index.js +5 -2
- data/vendor/node_modules/debug/lib/debug.js +5 -6
- data/vendor/node_modules/debug/package.json +11 -6
- data/vendor/node_modules/mkdirp/package.json +6 -9
- data/vendor/node_modules/mkdirp/{README.markdown → readme.markdown} +26 -24
- data/vendor/node_modules/mocha/History.md +140 -58
- data/vendor/node_modules/mocha/LICENSE +2 -2
- data/vendor/node_modules/mocha/Makefile +20 -5
- data/vendor/node_modules/mocha/Readme.md +110 -22
- data/vendor/node_modules/mocha/_mocha.js +574 -182
- data/vendor/node_modules/mocha/bin/_mocha +39 -22
- data/vendor/node_modules/mocha/bin/mocha +6 -2
- data/vendor/node_modules/mocha/component.json +16 -0
- data/vendor/node_modules/mocha/lib/browser/debug.js +1 -2
- data/vendor/node_modules/mocha/lib/browser/diff.js +287 -0
- data/vendor/node_modules/mocha/lib/browser/tty.js +7 -2
- data/vendor/node_modules/mocha/lib/hook.js +0 -1
- data/vendor/node_modules/mocha/lib/interfaces/bdd.js +3 -3
- data/vendor/node_modules/mocha/lib/interfaces/exports.js +5 -5
- data/vendor/node_modules/mocha/lib/interfaces/qunit.js +38 -9
- data/vendor/node_modules/mocha/lib/interfaces/tdd.js +15 -2
- data/vendor/node_modules/mocha/lib/mocha.js +20 -4
- data/vendor/node_modules/mocha/lib/reporters/base.js +57 -37
- data/vendor/node_modules/mocha/lib/reporters/html.js +2 -4
- data/vendor/node_modules/mocha/lib/reporters/json-stream.js +4 -14
- data/vendor/node_modules/mocha/lib/reporters/json.js +9 -19
- data/vendor/node_modules/mocha/lib/reporters/markdown.js +0 -1
- data/vendor/node_modules/mocha/lib/reporters/min.js +2 -2
- data/vendor/node_modules/mocha/lib/reporters/nyan.js +33 -39
- data/vendor/node_modules/mocha/lib/reporters/tap.js +12 -2
- data/vendor/node_modules/mocha/lib/reporters/templates/coverage.jade +3 -3
- data/vendor/node_modules/mocha/lib/reporters/templates/menu.jade +1 -1
- data/vendor/node_modules/mocha/lib/reporters/xunit.js +4 -4
- data/vendor/node_modules/mocha/lib/runnable.js +7 -9
- data/vendor/node_modules/mocha/lib/runner.js +24 -9
- data/vendor/node_modules/mocha/lib/template.html +2 -1
- data/vendor/node_modules/mocha/lib/utils.js +3 -3
- data/vendor/node_modules/mocha/mocha.css +37 -13
- data/vendor/node_modules/mocha/mocha.js +661 -253
- data/vendor/node_modules/mocha/node_modules/commander/package.json +5 -1
- data/vendor/node_modules/mocha/node_modules/diff/package.json +5 -1
- data/vendor/node_modules/mocha/node_modules/glob/LICENSE +27 -0
- data/vendor/node_modules/mocha/node_modules/glob/README.md +250 -0
- data/vendor/node_modules/mocha/node_modules/glob/examples/g.js +9 -0
- data/vendor/node_modules/mocha/node_modules/glob/examples/usr-local.js +9 -0
- data/vendor/node_modules/mocha/node_modules/glob/glob.js +675 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/LICENSE +27 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/README.md +33 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/graceful-fs.js +442 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/package.json +49 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/test/open.js +46 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/test/ulimit.js +158 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/inherits/README.md +51 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/inherits/inherits.js +29 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/inherits/package.json +26 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/README.md +218 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/minimatch.js +1079 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/AUTHORS +8 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/LICENSE +23 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/README.md +97 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js +257 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/package.json +59 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/s.js +25 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/basic.js +329 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/foreach.js +52 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js +50 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/LICENSE +27 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/README.md +53 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/bench.js +283 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json +38 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/sigmund.js +39 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/test/basic.js +24 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/package.json +36 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/test/basic.js +399 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/test/brace-expand.js +33 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/test/caching.js +14 -0
- data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/test/defaults.js +274 -0
- data/vendor/node_modules/mocha/node_modules/glob/package.json +40 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/00-setup.js +176 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/bash-comparison.js +63 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/bash-results.json +350 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/cwd-test.js +55 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/globstar-match.js +19 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/mark.js +74 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/nocase-nomagic.js +113 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/pause-resume.js +73 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/root-nomount.js +39 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/root.js +46 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/stat.js +32 -0
- data/vendor/node_modules/mocha/node_modules/glob/test/zz-cleanup.js +11 -0
- data/vendor/node_modules/mocha/node_modules/growl/History.md +5 -0
- data/vendor/node_modules/mocha/node_modules/growl/lib/growl.js +2 -0
- data/vendor/node_modules/mocha/node_modules/growl/package.json +7 -3
- data/vendor/node_modules/mocha/node_modules/jade/node_modules/mkdirp/package.json +5 -1
- data/vendor/node_modules/mocha/node_modules/jade/package.json +5 -1
- data/vendor/node_modules/mocha/node_modules/ms/package.json +5 -1
- data/vendor/node_modules/mocha/package.json +13 -7
- data/vendor/node_modules/mocha/test.js +10 -21
- data/vendor/node_modules/should/History.md +5 -0
- data/vendor/node_modules/should/Readme.md +172 -172
- data/vendor/node_modules/should/lib/eql.js +2 -0
- data/vendor/node_modules/should/lib/should.js +4 -3
- data/vendor/node_modules/should/package.json +8 -4
- data/vendor/node_modules/should/test/should.test.js +27 -0
- data/vendor/package.json +1 -1
- metadata +61 -35
- data/vendor/node_modules/debug/Makefile +0 -4
- data/vendor/node_modules/debug/debug.component.js +0 -120
- data/vendor/node_modules/debug/head.js +0 -1
- data/vendor/node_modules/debug/tail.js +0 -4
- data/vendor/node_modules/mocha/node_modules/mkdirp/LICENSE +0 -21
- data/vendor/node_modules/mocha/node_modules/mkdirp/README.markdown +0 -61
- data/vendor/node_modules/mocha/node_modules/mkdirp/examples/pow.js +0 -6
- data/vendor/node_modules/mocha/node_modules/mkdirp/examples/pow.js.orig +0 -6
- data/vendor/node_modules/mocha/node_modules/mkdirp/examples/pow.js.rej +0 -19
- data/vendor/node_modules/mocha/node_modules/mkdirp/index.js +0 -94
- data/vendor/node_modules/mocha/node_modules/mkdirp/package.json +0 -33
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/chmod.js +0 -38
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/clobber.js +0 -37
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/mkdirp.js +0 -28
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/perm.js +0 -32
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/perm_sync.js +0 -39
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/race.js +0 -41
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/rel.js +0 -32
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/return.js +0 -25
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/return_sync.js +0 -24
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/root.js +0 -18
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/sync.js +0 -32
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/umask.js +0 -28
- data/vendor/node_modules/mocha/node_modules/mkdirp/test/umask_sync.js +0 -32
|
@@ -1,36 +1,124 @@
|
|
|
1
1
|
[](http://travis-ci.org/visionmedia/mocha)
|
|
2
2
|
|
|
3
|
-
[](http://visionmedia.github.
|
|
3
|
+
[](http://visionmedia.github.io/mocha)
|
|
4
4
|
|
|
5
|
-
Mocha is a simple, flexible, fun JavaScript test framework for node.js and the browser. For more information view the [documentation](http://visionmedia.github.
|
|
5
|
+
Mocha is a simple, flexible, fun JavaScript test framework for node.js and the browser. For more information view the [documentation](http://visionmedia.github.io/mocha).
|
|
6
6
|
|
|
7
7
|
## Contributors
|
|
8
8
|
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
project : mocha
|
|
12
|
-
repo age : 1 year,
|
|
13
|
-
active :
|
|
14
|
-
commits :
|
|
15
|
-
files :
|
|
16
|
-
authors :
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
11
|
+
project : mocha
|
|
12
|
+
repo age : 1 year, 7 months
|
|
13
|
+
active : 272 days
|
|
14
|
+
commits : 1116
|
|
15
|
+
files : 123
|
|
16
|
+
authors :
|
|
17
|
+
504 TJ Holowaychuk 45.2%
|
|
18
|
+
389 Tj Holowaychuk 34.9%
|
|
19
|
+
31 Guillermo Rauch 2.8%
|
|
20
|
+
13 Attila Domokos 1.2%
|
|
21
|
+
9 John Firebaugh 0.8%
|
|
22
|
+
8 Jo Liss 0.7%
|
|
23
|
+
7 Nathan Rajlich 0.6%
|
|
24
|
+
6 James Carr 0.5%
|
|
25
|
+
6 Brendan Nee 0.5%
|
|
26
|
+
5 Aaron Heckmann 0.4%
|
|
27
|
+
4 hokaccha 0.4%
|
|
28
|
+
4 Xavier Antoviaque 0.4%
|
|
29
|
+
4 Joshua Krall 0.4%
|
|
30
|
+
3 Wil Moore III 0.3%
|
|
31
|
+
3 Jesse Dailey 0.3%
|
|
32
|
+
3 Nathan Bowser 0.3%
|
|
33
|
+
3 Tyson Tate 0.3%
|
|
34
|
+
3 Cory Thomas 0.3%
|
|
35
|
+
3 Ryunosuke SATO 0.3%
|
|
36
|
+
3 Paul Miller 0.3%
|
|
37
|
+
3 Ben Lindsey 0.3%
|
|
38
|
+
2 Forbes Lindesay 0.2%
|
|
39
|
+
2 Konstantin Käfer 0.2%
|
|
40
|
+
2 Brian Beck 0.2%
|
|
41
|
+
2 Merrick Christensen 0.2%
|
|
42
|
+
2 Michael Riley 0.2%
|
|
43
|
+
2 David Henderson 0.2%
|
|
44
|
+
2 Nathan Alderson 0.2%
|
|
45
|
+
2 Paul Armstrong 0.2%
|
|
46
|
+
2 Pete Hawkins 0.2%
|
|
47
|
+
2 Quang Van 0.2%
|
|
48
|
+
2 Raynos 0.2%
|
|
49
|
+
2 Jonas Westerlund 0.2%
|
|
50
|
+
2 Domenic Denicola 0.2%
|
|
51
|
+
2 Shawn Krisman 0.2%
|
|
52
|
+
2 Simon Gaeremynck 0.2%
|
|
53
|
+
2 FARKAS Máté 0.2%
|
|
54
|
+
2 Timo Tijhof 0.2%
|
|
55
|
+
2 Justin DuJardin 0.2%
|
|
56
|
+
2 Juzer Ali 0.2%
|
|
57
|
+
2 Ian Storm Taylor 0.2%
|
|
58
|
+
2 Arian Stolwijk 0.2%
|
|
59
|
+
2 domenic 0.2%
|
|
60
|
+
1 Richard Dingwall 0.1%
|
|
61
|
+
1 Russ Bradberry 0.1%
|
|
62
|
+
1 Sasha Koss 0.1%
|
|
63
|
+
1 Seiya Konno 0.1%
|
|
64
|
+
1 Standa Opichal 0.1%
|
|
65
|
+
1 Steve Mason 0.1%
|
|
66
|
+
1 Will Langstroth 0.1%
|
|
67
|
+
1 Yanis Wang 0.1%
|
|
68
|
+
1 Yuest Wang 0.1%
|
|
69
|
+
1 abrkn 0.1%
|
|
70
|
+
1 airportyh 0.1%
|
|
71
|
+
1 fengmk2 0.1%
|
|
72
|
+
1 tgautier@yahoo.com 0.1%
|
|
73
|
+
1 traleig1 0.1%
|
|
74
|
+
1 vlad 0.1%
|
|
75
|
+
1 yuitest 0.1%
|
|
76
|
+
1 Adam Crabtree 0.1%
|
|
77
|
+
1 Andreas Brekken 0.1%
|
|
78
|
+
1 Atsuya Takagi 0.1%
|
|
79
|
+
1 Austin Birch 0.1%
|
|
80
|
+
1 Bjørge Næss 0.1%
|
|
81
|
+
1 Brian Moore 0.1%
|
|
82
|
+
1 Bryan Donovan 0.1%
|
|
83
|
+
1 Casey Foster 0.1%
|
|
84
|
+
1 Corey Butler 0.1%
|
|
85
|
+
1 Dave McKenna 0.1%
|
|
86
|
+
1 Fedor Indutny 0.1%
|
|
87
|
+
1 Florian Margaine 0.1%
|
|
88
|
+
1 Frederico Silva 0.1%
|
|
89
|
+
1 Fredrik Lindin 0.1%
|
|
90
|
+
1 Gareth Murphy 0.1%
|
|
91
|
+
1 Gavin Mogan 0.1%
|
|
92
|
+
1 Greg Perkins 0.1%
|
|
93
|
+
1 Harry Brundage 0.1%
|
|
94
|
+
1 Herman Junge 0.1%
|
|
95
|
+
1 Ian Young 0.1%
|
|
96
|
+
1 Ivan 0.1%
|
|
97
|
+
1 Jaakko Salonen 0.1%
|
|
98
|
+
1 Jakub Nešetřil 0.1%
|
|
99
|
+
1 James Bowes 0.1%
|
|
100
|
+
1 James Lal 0.1%
|
|
101
|
+
1 Jason Barry 0.1%
|
|
102
|
+
1 Javier Aranda 0.1%
|
|
103
|
+
1 Jeff Kunkle 0.1%
|
|
104
|
+
1 Jonathan Creamer 0.1%
|
|
105
|
+
1 Jussi Virtanen 0.1%
|
|
106
|
+
1 Katie Gengler 0.1%
|
|
107
|
+
1 Kazuhito Hokamura 0.1%
|
|
108
|
+
1 Koen Punt 0.1%
|
|
109
|
+
1 Laszlo Bacsi 0.1%
|
|
110
|
+
1 László Bácsi 0.1%
|
|
111
|
+
1 Maciej Małecki 0.1%
|
|
112
|
+
1 Matt Robenolt 0.1%
|
|
113
|
+
1 Matt Smith 0.1%
|
|
114
|
+
1 Matthew Shanley 0.1%
|
|
115
|
+
1 Michael Schoonmaker 0.1%
|
|
116
|
+
1 Phil Sung 0.1%
|
|
117
|
+
1 R56 0.1%
|
|
30
118
|
```
|
|
31
119
|
|
|
32
120
|
## Links
|
|
33
121
|
|
|
34
122
|
- [Google Group](http://groups.google.com/group/mochajs)
|
|
35
123
|
- [Wiki](https://github.com/visionmedia/mocha/wiki)
|
|
36
|
-
- Mocha [Extensions and reporters](https://github.com/visionmedia/mocha/wiki)
|
|
124
|
+
- Mocha [Extensions and reporters](https://github.com/visionmedia/mocha/wiki)
|