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.
Files changed (143) hide show
  1. checksums.yaml +7 -0
  2. data/VERSION +1 -1
  3. data/vendor/lib/nodes/unit.js +1 -1
  4. data/vendor/lib/parser.js +0 -1
  5. data/vendor/lib/renderer.js +2 -0
  6. data/vendor/lib/visitor/compiler.js +6 -0
  7. data/vendor/node_modules/cssom/README.mdown +34 -0
  8. data/vendor/node_modules/cssom/package.json +2 -1
  9. data/vendor/node_modules/debug/History.md +15 -0
  10. data/vendor/node_modules/debug/Readme.md +3 -18
  11. data/vendor/node_modules/debug/component.json +9 -0
  12. data/vendor/node_modules/debug/debug.js +10 -2
  13. data/vendor/node_modules/debug/index.js +5 -2
  14. data/vendor/node_modules/debug/lib/debug.js +5 -6
  15. data/vendor/node_modules/debug/package.json +11 -6
  16. data/vendor/node_modules/mkdirp/package.json +6 -9
  17. data/vendor/node_modules/mkdirp/{README.markdown → readme.markdown} +26 -24
  18. data/vendor/node_modules/mocha/History.md +140 -58
  19. data/vendor/node_modules/mocha/LICENSE +2 -2
  20. data/vendor/node_modules/mocha/Makefile +20 -5
  21. data/vendor/node_modules/mocha/Readme.md +110 -22
  22. data/vendor/node_modules/mocha/_mocha.js +574 -182
  23. data/vendor/node_modules/mocha/bin/_mocha +39 -22
  24. data/vendor/node_modules/mocha/bin/mocha +6 -2
  25. data/vendor/node_modules/mocha/component.json +16 -0
  26. data/vendor/node_modules/mocha/lib/browser/debug.js +1 -2
  27. data/vendor/node_modules/mocha/lib/browser/diff.js +287 -0
  28. data/vendor/node_modules/mocha/lib/browser/tty.js +7 -2
  29. data/vendor/node_modules/mocha/lib/hook.js +0 -1
  30. data/vendor/node_modules/mocha/lib/interfaces/bdd.js +3 -3
  31. data/vendor/node_modules/mocha/lib/interfaces/exports.js +5 -5
  32. data/vendor/node_modules/mocha/lib/interfaces/qunit.js +38 -9
  33. data/vendor/node_modules/mocha/lib/interfaces/tdd.js +15 -2
  34. data/vendor/node_modules/mocha/lib/mocha.js +20 -4
  35. data/vendor/node_modules/mocha/lib/reporters/base.js +57 -37
  36. data/vendor/node_modules/mocha/lib/reporters/html.js +2 -4
  37. data/vendor/node_modules/mocha/lib/reporters/json-stream.js +4 -14
  38. data/vendor/node_modules/mocha/lib/reporters/json.js +9 -19
  39. data/vendor/node_modules/mocha/lib/reporters/markdown.js +0 -1
  40. data/vendor/node_modules/mocha/lib/reporters/min.js +2 -2
  41. data/vendor/node_modules/mocha/lib/reporters/nyan.js +33 -39
  42. data/vendor/node_modules/mocha/lib/reporters/tap.js +12 -2
  43. data/vendor/node_modules/mocha/lib/reporters/templates/coverage.jade +3 -3
  44. data/vendor/node_modules/mocha/lib/reporters/templates/menu.jade +1 -1
  45. data/vendor/node_modules/mocha/lib/reporters/xunit.js +4 -4
  46. data/vendor/node_modules/mocha/lib/runnable.js +7 -9
  47. data/vendor/node_modules/mocha/lib/runner.js +24 -9
  48. data/vendor/node_modules/mocha/lib/template.html +2 -1
  49. data/vendor/node_modules/mocha/lib/utils.js +3 -3
  50. data/vendor/node_modules/mocha/mocha.css +37 -13
  51. data/vendor/node_modules/mocha/mocha.js +661 -253
  52. data/vendor/node_modules/mocha/node_modules/commander/package.json +5 -1
  53. data/vendor/node_modules/mocha/node_modules/diff/package.json +5 -1
  54. data/vendor/node_modules/mocha/node_modules/glob/LICENSE +27 -0
  55. data/vendor/node_modules/mocha/node_modules/glob/README.md +250 -0
  56. data/vendor/node_modules/mocha/node_modules/glob/examples/g.js +9 -0
  57. data/vendor/node_modules/mocha/node_modules/glob/examples/usr-local.js +9 -0
  58. data/vendor/node_modules/mocha/node_modules/glob/glob.js +675 -0
  59. data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/LICENSE +27 -0
  60. data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/README.md +33 -0
  61. data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/graceful-fs.js +442 -0
  62. data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/package.json +49 -0
  63. data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/test/open.js +46 -0
  64. data/vendor/node_modules/mocha/node_modules/glob/node_modules/graceful-fs/test/ulimit.js +158 -0
  65. data/vendor/node_modules/mocha/node_modules/glob/node_modules/inherits/README.md +51 -0
  66. data/vendor/node_modules/mocha/node_modules/glob/node_modules/inherits/inherits.js +29 -0
  67. data/vendor/node_modules/mocha/node_modules/glob/node_modules/inherits/package.json +26 -0
  68. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
  69. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/README.md +218 -0
  70. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/minimatch.js +1079 -0
  71. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/AUTHORS +8 -0
  72. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/LICENSE +23 -0
  73. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/README.md +97 -0
  74. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js +257 -0
  75. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/package.json +59 -0
  76. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/s.js +25 -0
  77. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/basic.js +329 -0
  78. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/foreach.js +52 -0
  79. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js +50 -0
  80. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/LICENSE +27 -0
  81. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/README.md +53 -0
  82. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/bench.js +283 -0
  83. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json +38 -0
  84. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/sigmund.js +39 -0
  85. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/node_modules/sigmund/test/basic.js +24 -0
  86. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/package.json +36 -0
  87. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/test/basic.js +399 -0
  88. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/test/brace-expand.js +33 -0
  89. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/test/caching.js +14 -0
  90. data/vendor/node_modules/mocha/node_modules/glob/node_modules/minimatch/test/defaults.js +274 -0
  91. data/vendor/node_modules/mocha/node_modules/glob/package.json +40 -0
  92. data/vendor/node_modules/mocha/node_modules/glob/test/00-setup.js +176 -0
  93. data/vendor/node_modules/mocha/node_modules/glob/test/bash-comparison.js +63 -0
  94. data/vendor/node_modules/mocha/node_modules/glob/test/bash-results.json +350 -0
  95. data/vendor/node_modules/mocha/node_modules/glob/test/cwd-test.js +55 -0
  96. data/vendor/node_modules/mocha/node_modules/glob/test/globstar-match.js +19 -0
  97. data/vendor/node_modules/mocha/node_modules/glob/test/mark.js +74 -0
  98. data/vendor/node_modules/mocha/node_modules/glob/test/nocase-nomagic.js +113 -0
  99. data/vendor/node_modules/mocha/node_modules/glob/test/pause-resume.js +73 -0
  100. data/vendor/node_modules/mocha/node_modules/glob/test/root-nomount.js +39 -0
  101. data/vendor/node_modules/mocha/node_modules/glob/test/root.js +46 -0
  102. data/vendor/node_modules/mocha/node_modules/glob/test/stat.js +32 -0
  103. data/vendor/node_modules/mocha/node_modules/glob/test/zz-cleanup.js +11 -0
  104. data/vendor/node_modules/mocha/node_modules/growl/History.md +5 -0
  105. data/vendor/node_modules/mocha/node_modules/growl/lib/growl.js +2 -0
  106. data/vendor/node_modules/mocha/node_modules/growl/package.json +7 -3
  107. data/vendor/node_modules/mocha/node_modules/jade/node_modules/mkdirp/package.json +5 -1
  108. data/vendor/node_modules/mocha/node_modules/jade/package.json +5 -1
  109. data/vendor/node_modules/mocha/node_modules/ms/package.json +5 -1
  110. data/vendor/node_modules/mocha/package.json +13 -7
  111. data/vendor/node_modules/mocha/test.js +10 -21
  112. data/vendor/node_modules/should/History.md +5 -0
  113. data/vendor/node_modules/should/Readme.md +172 -172
  114. data/vendor/node_modules/should/lib/eql.js +2 -0
  115. data/vendor/node_modules/should/lib/should.js +4 -3
  116. data/vendor/node_modules/should/package.json +8 -4
  117. data/vendor/node_modules/should/test/should.test.js +27 -0
  118. data/vendor/package.json +1 -1
  119. metadata +61 -35
  120. data/vendor/node_modules/debug/Makefile +0 -4
  121. data/vendor/node_modules/debug/debug.component.js +0 -120
  122. data/vendor/node_modules/debug/head.js +0 -1
  123. data/vendor/node_modules/debug/tail.js +0 -4
  124. data/vendor/node_modules/mocha/node_modules/mkdirp/LICENSE +0 -21
  125. data/vendor/node_modules/mocha/node_modules/mkdirp/README.markdown +0 -61
  126. data/vendor/node_modules/mocha/node_modules/mkdirp/examples/pow.js +0 -6
  127. data/vendor/node_modules/mocha/node_modules/mkdirp/examples/pow.js.orig +0 -6
  128. data/vendor/node_modules/mocha/node_modules/mkdirp/examples/pow.js.rej +0 -19
  129. data/vendor/node_modules/mocha/node_modules/mkdirp/index.js +0 -94
  130. data/vendor/node_modules/mocha/node_modules/mkdirp/package.json +0 -33
  131. data/vendor/node_modules/mocha/node_modules/mkdirp/test/chmod.js +0 -38
  132. data/vendor/node_modules/mocha/node_modules/mkdirp/test/clobber.js +0 -37
  133. data/vendor/node_modules/mocha/node_modules/mkdirp/test/mkdirp.js +0 -28
  134. data/vendor/node_modules/mocha/node_modules/mkdirp/test/perm.js +0 -32
  135. data/vendor/node_modules/mocha/node_modules/mkdirp/test/perm_sync.js +0 -39
  136. data/vendor/node_modules/mocha/node_modules/mkdirp/test/race.js +0 -41
  137. data/vendor/node_modules/mocha/node_modules/mkdirp/test/rel.js +0 -32
  138. data/vendor/node_modules/mocha/node_modules/mkdirp/test/return.js +0 -25
  139. data/vendor/node_modules/mocha/node_modules/mkdirp/test/return_sync.js +0 -24
  140. data/vendor/node_modules/mocha/node_modules/mkdirp/test/root.js +0 -18
  141. data/vendor/node_modules/mocha/node_modules/mkdirp/test/sync.js +0 -32
  142. data/vendor/node_modules/mocha/node_modules/mkdirp/test/umask.js +0 -28
  143. data/vendor/node_modules/mocha/node_modules/mkdirp/test/umask_sync.js +0 -32
@@ -1,36 +1,124 @@
1
1
  [![Build Status](https://secure.travis-ci.org/visionmedia/mocha.png)](http://travis-ci.org/visionmedia/mocha)
2
2
 
3
- [![Mocha test framework](http://f.cl.ly/items/3l1k0n2A1U3M1I1L210p/Screen%20Shot%202012-02-24%20at%202.21.43%20PM.png)](http://visionmedia.github.com/mocha)
3
+ [![Mocha test framework](http://f.cl.ly/items/3l1k0n2A1U3M1I1L210p/Screen%20Shot%202012-02-24%20at%202.21.43%20PM.png)](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.com/mocha).
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, 3 months
13
- active : 233 days
14
- commits : 1034
15
- files : 114
16
- authors :
17
- 451 TJ Holowaychuk 43.6%
18
- 389 Tj Holowaychuk 37.6%
19
- 31 Guillermo Rauch 3.0%
20
- 13 Attila Domokos 1.3%
21
- 8 Jo Liss 0.8%
22
- 7 Nathan Rajlich 0.7%
23
- 6 James Carr 0.6%
24
- 6 Brendan Nee 0.6%
25
- 5 John Firebaugh 0.5%
26
- 5 Aaron Heckmann 0.5%
27
- 4 Joshua Krall 0.4%
28
- 4 Xavier Antoviaque 0.4%
29
- 4 hokaccha 0.4%
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)