guff-compass 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (186) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +21 -0
  3. data/.gitignore +6 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +21 -0
  6. data/demo/bower_components/jquery/.bower.json +21 -0
  7. data/demo/bower_components/jquery/.editorconfig +43 -0
  8. data/demo/bower_components/jquery/.gitattributes +2 -0
  9. data/demo/bower_components/jquery/.gitignore +14 -0
  10. data/demo/bower_components/jquery/.gitmodules +6 -0
  11. data/demo/bower_components/jquery/.jshintrc +17 -0
  12. data/demo/bower_components/jquery/.mailmap +94 -0
  13. data/demo/bower_components/jquery/AUTHORS.txt +170 -0
  14. data/demo/bower_components/jquery/CONTRIBUTING.md +216 -0
  15. data/demo/bower_components/jquery/Gruntfile.js +594 -0
  16. data/demo/bower_components/jquery/MIT-LICENSE.txt +21 -0
  17. data/demo/bower_components/jquery/README.md +398 -0
  18. data/demo/bower_components/jquery/bower.json +11 -0
  19. data/demo/bower_components/jquery/build/release-notes.js +59 -0
  20. data/demo/bower_components/jquery/build/release.js +316 -0
  21. data/demo/bower_components/jquery/component.json +15 -0
  22. data/demo/bower_components/jquery/composer.json +35 -0
  23. data/demo/bower_components/jquery/jquery-migrate.js +511 -0
  24. data/demo/bower_components/jquery/jquery-migrate.min.js +3 -0
  25. data/demo/bower_components/jquery/jquery.js +9789 -0
  26. data/demo/bower_components/jquery/jquery.min.js +6 -0
  27. data/demo/bower_components/jquery/jquery.min.map +1 -0
  28. data/demo/bower_components/jquery/package.json +38 -0
  29. data/demo/bower_components/jquery/speed/benchmark.js +15 -0
  30. data/demo/bower_components/jquery/speed/benchmarker.css +65 -0
  31. data/demo/bower_components/jquery/speed/benchmarker.js +181 -0
  32. data/demo/bower_components/jquery/speed/closest.html +39 -0
  33. data/demo/bower_components/jquery/speed/css.html +82 -0
  34. data/demo/bower_components/jquery/speed/event.html +58 -0
  35. data/demo/bower_components/jquery/speed/filter.html +183 -0
  36. data/demo/bower_components/jquery/speed/find.html +179 -0
  37. data/demo/bower_components/jquery/speed/index.html +72 -0
  38. data/demo/bower_components/jquery/speed/jquery-basis.js +6238 -0
  39. data/demo/bower_components/jquery/speed/slice.vs.concat.html +47 -0
  40. data/demo/bower_components/jquery/src/.jshintrc +27 -0
  41. data/demo/bower_components/jquery/src/ajax.js +855 -0
  42. data/demo/bower_components/jquery/src/ajax/jsonp.js +80 -0
  43. data/demo/bower_components/jquery/src/ajax/script.js +86 -0
  44. data/demo/bower_components/jquery/src/ajax/xhr.js +207 -0
  45. data/demo/bower_components/jquery/src/attributes.js +659 -0
  46. data/demo/bower_components/jquery/src/callbacks.js +197 -0
  47. data/demo/bower_components/jquery/src/core.js +981 -0
  48. data/demo/bower_components/jquery/src/css.js +661 -0
  49. data/demo/bower_components/jquery/src/data.js +336 -0
  50. data/demo/bower_components/jquery/src/deferred.js +141 -0
  51. data/demo/bower_components/jquery/src/deprecated.js +11 -0
  52. data/demo/bower_components/jquery/src/dimensions.js +41 -0
  53. data/demo/bower_components/jquery/src/effects.js +732 -0
  54. data/demo/bower_components/jquery/src/event-alias.js +32 -0
  55. data/demo/bower_components/jquery/src/event.js +995 -0
  56. data/demo/bower_components/jquery/src/exports.js +21 -0
  57. data/demo/bower_components/jquery/src/intro.js +20 -0
  58. data/demo/bower_components/jquery/src/manipulation.js +744 -0
  59. data/demo/bower_components/jquery/src/offset.js +169 -0
  60. data/demo/bower_components/jquery/src/outro.js +2 -0
  61. data/demo/bower_components/jquery/src/queue.js +146 -0
  62. data/demo/bower_components/jquery/src/serialize.js +99 -0
  63. data/demo/bower_components/jquery/src/sizzle-jquery.js +7 -0
  64. data/demo/bower_components/jquery/src/support.js +246 -0
  65. data/demo/bower_components/jquery/src/traversing.js +283 -0
  66. data/demo/bower_components/jquery/src/wrap.js +66 -0
  67. data/demo/bower_components/jquery/test/.jshintignore +3 -0
  68. data/demo/bower_components/jquery/test/.jshintrc +60 -0
  69. data/demo/bower_components/jquery/test/data/1x1.jpg +0 -0
  70. data/demo/bower_components/jquery/test/data/ajax/unreleasedXHR.html +25 -0
  71. data/demo/bower_components/jquery/test/data/atom+xml.php +4 -0
  72. data/demo/bower_components/jquery/test/data/badcall.js +1 -0
  73. data/demo/bower_components/jquery/test/data/badjson.js +1 -0
  74. data/demo/bower_components/jquery/test/data/cleanScript.html +10 -0
  75. data/demo/bower_components/jquery/test/data/core/cc_on.html +22 -0
  76. data/demo/bower_components/jquery/test/data/dashboard.xml +11 -0
  77. data/demo/bower_components/jquery/test/data/dimensions/documentLarge.html +17 -0
  78. data/demo/bower_components/jquery/test/data/dimensions/documentSmall.html +21 -0
  79. data/demo/bower_components/jquery/test/data/echoData.php +1 -0
  80. data/demo/bower_components/jquery/test/data/echoQuery.php +1 -0
  81. data/demo/bower_components/jquery/test/data/errorWithJSON.php +6 -0
  82. data/demo/bower_components/jquery/test/data/errorWithText.php +5 -0
  83. data/demo/bower_components/jquery/test/data/etag.php +21 -0
  84. data/demo/bower_components/jquery/test/data/evalScript.php +1 -0
  85. data/demo/bower_components/jquery/test/data/event/focusElem.html +16 -0
  86. data/demo/bower_components/jquery/test/data/event/longLoadScript.php +4 -0
  87. data/demo/bower_components/jquery/test/data/event/promiseReady.html +17 -0
  88. data/demo/bower_components/jquery/test/data/event/syncReady.html +23 -0
  89. data/demo/bower_components/jquery/test/data/headers.php +18 -0
  90. data/demo/bower_components/jquery/test/data/if_modified_since.php +20 -0
  91. data/demo/bower_components/jquery/test/data/iframe.html +8 -0
  92. data/demo/bower_components/jquery/test/data/jquery-1.9.1.ajax_xhr.min.js +5 -0
  93. data/demo/bower_components/jquery/test/data/json.php +13 -0
  94. data/demo/bower_components/jquery/test/data/json_obj.js +1 -0
  95. data/demo/bower_components/jquery/test/data/jsonp.php +14 -0
  96. data/demo/bower_components/jquery/test/data/manipulation/iframe-denied.html +36 -0
  97. data/demo/bower_components/jquery/test/data/name.html +1 -0
  98. data/demo/bower_components/jquery/test/data/name.php +24 -0
  99. data/demo/bower_components/jquery/test/data/nocontent.php +5 -0
  100. data/demo/bower_components/jquery/test/data/offset/absolute.html +41 -0
  101. data/demo/bower_components/jquery/test/data/offset/body.html +26 -0
  102. data/demo/bower_components/jquery/test/data/offset/fixed.html +34 -0
  103. data/demo/bower_components/jquery/test/data/offset/relative.html +31 -0
  104. data/demo/bower_components/jquery/test/data/offset/scroll.html +39 -0
  105. data/demo/bower_components/jquery/test/data/offset/static.html +31 -0
  106. data/demo/bower_components/jquery/test/data/offset/table.html +43 -0
  107. data/demo/bower_components/jquery/test/data/params_html.php +12 -0
  108. data/demo/bower_components/jquery/test/data/readywaitasset.js +1 -0
  109. data/demo/bower_components/jquery/test/data/readywaitloader.js +25 -0
  110. data/demo/bower_components/jquery/test/data/script.php +11 -0
  111. data/demo/bower_components/jquery/test/data/selector/html5_selector.html +114 -0
  112. data/demo/bower_components/jquery/test/data/selector/sizzle_cache.html +21 -0
  113. data/demo/bower_components/jquery/test/data/statusText.php +5 -0
  114. data/demo/bower_components/jquery/test/data/support/bodyBackground.html +28 -0
  115. data/demo/bower_components/jquery/test/data/support/boxSizing.html +19 -0
  116. data/demo/bower_components/jquery/test/data/support/csp.js +3 -0
  117. data/demo/bower_components/jquery/test/data/support/csp.php +22 -0
  118. data/demo/bower_components/jquery/test/data/support/shrinkWrapBlocks.html +23 -0
  119. data/demo/bower_components/jquery/test/data/support/testElementCrash.html +17 -0
  120. data/demo/bower_components/jquery/test/data/test.html +7 -0
  121. data/demo/bower_components/jquery/test/data/test.js +3 -0
  122. data/demo/bower_components/jquery/test/data/test.php +7 -0
  123. data/demo/bower_components/jquery/test/data/test2.html +5 -0
  124. data/demo/bower_components/jquery/test/data/test3.html +3 -0
  125. data/demo/bower_components/jquery/test/data/testinit.js +264 -0
  126. data/demo/bower_components/jquery/test/data/testrunner.js +371 -0
  127. data/demo/bower_components/jquery/test/data/testsuite.css +155 -0
  128. data/demo/bower_components/jquery/test/data/text.php +12 -0
  129. data/demo/bower_components/jquery/test/data/ua.txt +272 -0
  130. data/demo/bower_components/jquery/test/data/with_fries.xml +25 -0
  131. data/demo/bower_components/jquery/test/data/with_fries_over_jsonp.php +7 -0
  132. data/demo/bower_components/jquery/test/delegatetest.html +228 -0
  133. data/demo/bower_components/jquery/test/hovertest.html +158 -0
  134. data/demo/bower_components/jquery/test/index.html +337 -0
  135. data/demo/bower_components/jquery/test/jquery.js +5 -0
  136. data/demo/bower_components/jquery/test/localfile.html +75 -0
  137. data/demo/bower_components/jquery/test/networkerror.html +84 -0
  138. data/demo/bower_components/jquery/test/readywait.html +70 -0
  139. data/demo/bower_components/jquery/test/unit/ajax.js +2016 -0
  140. data/demo/bower_components/jquery/test/unit/attributes.js +1388 -0
  141. data/demo/bower_components/jquery/test/unit/callbacks.js +342 -0
  142. data/demo/bower_components/jquery/test/unit/core.js +1360 -0
  143. data/demo/bower_components/jquery/test/unit/css.js +1056 -0
  144. data/demo/bower_components/jquery/test/unit/data.js +645 -0
  145. data/demo/bower_components/jquery/test/unit/deferred.js +436 -0
  146. data/demo/bower_components/jquery/test/unit/deprecated.js +8 -0
  147. data/demo/bower_components/jquery/test/unit/dimensions.js +472 -0
  148. data/demo/bower_components/jquery/test/unit/effects.js +2242 -0
  149. data/demo/bower_components/jquery/test/unit/event.js +2755 -0
  150. data/demo/bower_components/jquery/test/unit/exports.js +7 -0
  151. data/demo/bower_components/jquery/test/unit/manipulation.js +2120 -0
  152. data/demo/bower_components/jquery/test/unit/offset.js +559 -0
  153. data/demo/bower_components/jquery/test/unit/queue.js +314 -0
  154. data/demo/bower_components/jquery/test/unit/selector.js +172 -0
  155. data/demo/bower_components/jquery/test/unit/serialize.js +148 -0
  156. data/demo/bower_components/jquery/test/unit/support.js +370 -0
  157. data/demo/bower_components/jquery/test/unit/traversing.js +797 -0
  158. data/demo/bower_components/jquery/test/unit/wrap.js +265 -0
  159. data/demo/bower_components/jquery/test/xhtml.php +5 -0
  160. data/demo/index.html +347 -0
  161. data/demo/styles/main.css +208 -0
  162. data/demo/styles/main.scss +138 -0
  163. data/docs/docco.css +506 -0
  164. data/docs/guff.html +1127 -0
  165. data/docs/public/fonts/aller-bold.eot +0 -0
  166. data/docs/public/fonts/aller-bold.ttf +0 -0
  167. data/docs/public/fonts/aller-bold.woff +0 -0
  168. data/docs/public/fonts/aller-light.eot +0 -0
  169. data/docs/public/fonts/aller-light.ttf +0 -0
  170. data/docs/public/fonts/aller-light.woff +0 -0
  171. data/docs/public/fonts/novecento-bold.eot +0 -0
  172. data/docs/public/fonts/novecento-bold.ttf +0 -0
  173. data/docs/public/fonts/novecento-bold.woff +0 -0
  174. data/docs/public/stylesheets/normalize.css +375 -0
  175. data/guff.gemspec +16 -0
  176. data/guff.scss +514 -0
  177. data/gulpfile.js +67 -0
  178. data/lib/guff.rb +4 -0
  179. data/lib/stylesheets/_guff.scss +514 -0
  180. data/package.json +19 -0
  181. data/src/_functions.scss +57 -0
  182. data/src/_mixins.scss +301 -0
  183. data/src/_reset.scss +67 -0
  184. data/src/_settings.scss +22 -0
  185. data/src/_typography.scss +67 -0
  186. metadata +259 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b7d670638079b8a5b033112374c92ce6e35b43b9
4
+ data.tar.gz: ce461aba20f37ad720d81bbc3098938407cd44b2
5
+ SHA512:
6
+ metadata.gz: 4b6187ddffc991d19ae2242e7c666a968e6e8408c31a144d2b12c12561476a56b8322d3978614412fc7c86a61304c24f8e1a050d719870e46846ff1532efe653
7
+ data.tar.gz: 89558aac9aa345d5a72b2bbe005d06b55365fcf8c15ef7ef44ac2e9d4338805e5627881cfd6d1b08ba2cc3fb7cc53fa8258c364e1d9606993606cd02d548da22
data/.editorconfig ADDED
@@ -0,0 +1,21 @@
1
+ # EditorConfig helps developers define and maintain consistent
2
+ # coding styles between different editors and IDEs
3
+ # editorconfig.org
4
+
5
+ root = true
6
+
7
+
8
+ [*]
9
+
10
+ # Change these settings to your own preference
11
+ indent_style = space
12
+ indent_size = 4
13
+
14
+ # We recommend you to keep these unchanged
15
+ end_of_line = lf
16
+ charset = utf-8
17
+ trim_trailing_whitespace = true
18
+ insert_final_newline = true
19
+
20
+ [*.md]
21
+ trim_trailing_whitespace = false
data/.gitignore ADDED
@@ -0,0 +1,6 @@
1
+ node_modules
2
+ .tmp
3
+ .sass-cache
4
+ pkg
5
+ Rakefile
6
+ Gemfile
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Ken Wheeler
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,21 @@
1
+ ##GUFF
2
+
3
+ Guff is a SASS helper framework comprised of all of my favorite features from the top SASS frameworks.
4
+
5
+ It is the most helpful, most used functions,mixins and helpers, for use in actual client work. Along with some fun extras, and a build system designed for you to build and tweak on top of.
6
+
7
+ [Documentation](http://kenwheeler.github.io/guff/)
8
+
9
+ [Annotated Source](http://kenwheeler.github.io/guff/docs/guff.html)
10
+
11
+ ### Installation
12
+
13
+ You can either manually use the guff.scss file or use bower:
14
+
15
+ bower install guff
16
+
17
+ In your SASS file, import guff:
18
+
19
+ @import "guff"
20
+
21
+
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "jquery",
3
+ "version": "1.10.2",
4
+ "description": "jQuery component",
5
+ "keywords": [
6
+ "jquery",
7
+ "component"
8
+ ],
9
+ "main": "jquery.js",
10
+ "license": "MIT",
11
+ "homepage": "https://github.com/jquery/jquery",
12
+ "_release": "1.10.2",
13
+ "_resolution": {
14
+ "type": "version",
15
+ "tag": "1.10.2",
16
+ "commit": "16b079b164d62bd807c612806842a13bf9b04d17"
17
+ },
18
+ "_source": "git://github.com/jquery/jquery.git",
19
+ "_target": "~1.10.2",
20
+ "_originalSource": "jquery"
21
+ }
@@ -0,0 +1,43 @@
1
+ # This file is for unifying the coding style for different editors and IDEs
2
+ # editorconfig.org
3
+
4
+ root = true
5
+
6
+
7
+ [*]
8
+ end_of_line = lf
9
+ charset = utf-8
10
+ trim_trailing_whitespace = true
11
+ insert_final_newline = true
12
+
13
+ # Tabs in JS unless otherwise specified
14
+ [**.js]
15
+ indent_style = tab
16
+
17
+ [Makefile]
18
+ indent_style = tab
19
+
20
+
21
+ [speed/**.html]
22
+ indent_style = tab
23
+
24
+ [speed/**.css]
25
+ indent_style = tab
26
+
27
+ [speed/benchmarker.js]
28
+ indent_style = space
29
+ indent_size = 2
30
+
31
+
32
+ [test/**.xml]
33
+ indent_style = tab
34
+
35
+ [test/**.php]
36
+ indent_style = tab
37
+
38
+ [test/**.html]
39
+ indent_style = tab
40
+
41
+ [test/**.css]
42
+ indent_style = space
43
+ indent_size = 8
@@ -0,0 +1,2 @@
1
+ * eol=lf
2
+ *.jar binary
@@ -0,0 +1,14 @@
1
+ src/selector-sizzle.js
2
+ src/selector.js
3
+ dist
4
+ .project
5
+ .settings
6
+ *~
7
+ *.diff
8
+ *.patch
9
+ /*.html
10
+ .DS_Store
11
+ dist/.destination.json
12
+ dist/.sizecache.json
13
+ build/.sizecache.json
14
+ node_modules
@@ -0,0 +1,6 @@
1
+ [submodule "src/sizzle"]
2
+ path = src/sizzle
3
+ url = git://github.com/jquery/sizzle.git
4
+ [submodule "test/qunit"]
5
+ path = test/qunit
6
+ url = git://github.com/jquery/qunit.git
@@ -0,0 +1,17 @@
1
+ {
2
+ "boss": true,
3
+ "curly": true,
4
+ "eqeqeq": true,
5
+ "eqnull": true,
6
+ "expr": true,
7
+ "immed": true,
8
+ "noarg": true,
9
+ "onevar": true,
10
+ "quotmark": "double",
11
+ "smarttabs": true,
12
+ "trailing": true,
13
+ "undef": true,
14
+ "unused": true,
15
+
16
+ "node": true
17
+ }
@@ -0,0 +1,94 @@
1
+ Adam Coulombe <me@adam.co> <adamcoulombe187@hotmail.com>
2
+ Adam J. Sontag <ajpiano@ajpiano.com>
3
+ Alexander Farkas <info@corrupt-system.de>
4
+ Alexander Farkas <info@corrupt-system.de> <a.farkas.pm@googlemail.com>
5
+ Alexis Abril <me@alexisabril.com> <alexis.abril@gmail.com>
6
+ Andrew E Monat <amonat@gmail.com>
7
+ Anton Matzneller <obhvsbypqghgc@gmail.com>
8
+ Anton Matzneller <obhvsbypqghgc@gmail.com> <haskell_noob-github@yahoo.de>
9
+ Batiste Bieler <batiste@gmail.com> <batiste.bieler@gmail.com>
10
+ Benjamin Truyman <bentruyman@gmail.com>
11
+ Brandon Aaron <brandon.aaron@gmail.com>
12
+ Carl Danley <carldanley@gmail.com>
13
+ Carl Fürstenberg <azatoth@gmail.com>
14
+ Carl Fürstenberg <azatoth@gmail.com> <carl@excito.com>
15
+ Charles McNulty <cmcnulty@kznf.com>
16
+ Colin Snover <colin@alpha.zetafleet.com> <github.com@zetafleet.com>
17
+ Corey Frang <gnarf@gnarf.net>
18
+ Dan Heberden <danheberden@gmail.com>
19
+ Daniel Chatfield <chatfielddaniel@gmail.com> <chatfielddaniel@googlemail.com>
20
+ Daniel Gálvez <dgalvez@editablething.com>
21
+ Danil Somsikov <danilasomsikov@gmail.com>
22
+ Dave Methvin <dave.methvin@gmail.com>
23
+ Dave Reed <dareed@microsoft.com>
24
+ David Fox <dfoxinator@gmail.com> <dfox@snap-interactive.com>
25
+ Devin Cooper <cooper.semantics@gmail.com> <dcooper@snap-interactive.com>
26
+ Dmitry Gusev <dmitry.gusev@gmail.com>
27
+ Earle Castledine <mrspeaker@gmail.com>
28
+ Erick Ruiz de Chávez <erickrdch@gmail.com>
29
+ Gianni Alessandro Chiappetta <gianni@runlevel6.org>
30
+ Heungsub Lee <h@subl.ee> <lee@heungsub.net>
31
+ Iraê Carvalho <irae@irae.pro.br>
32
+ Isaac Z. Schlueter <i@izs.me>
33
+ Ismail Khair <ismail.khair@gmail.com>
34
+ James Burke <jrburke@gmail.com>
35
+ James Padolsey <cla@padolsey.net> <jamespadolsey@gmail.com>
36
+ Jason Bedard <jason+jquery@jbedard.ca> <github@jbedard.ca>
37
+ Jay Merrifield <fracmak@gmail.com>
38
+ Jay Merrifield <fracmak@gmail.com> <jmerrifiel@gannett.com>
39
+ Jean Boussier <jean.boussier@gmail.com>
40
+ Jephte Clain <Jephte.Clain@univ-reunion.fr>
41
+ Jess Thrysoee <jess@thrysoee.dk>
42
+ Joao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>
43
+ Joe Presbrey <presbrey@gmail.com> <presbrey+jwp@gmail.com>
44
+ John Resig <jeresig@gmail.com>
45
+ John Resig <jeresig@gmail.com> <jeresig@Archimedes.local>
46
+ Jordan Boesch <jboesch26@gmail.com> <jordan@boedesign.com>
47
+ Josh Varner <josh.varner@gmail.com> <josh.varner@gmail.com>
48
+ Julian Aubourg <aubourg.julian@gmail.com>
49
+ Julian Aubourg <aubourg.julian@gmail.com> <j@ubourg.net>
50
+ Julian Aubourg <aubourg.julian@gmail.com> <Julian@.(none)>
51
+ Jörn Zaefferer <joern.zaefferer@gmail.com>
52
+ Jörn Zaefferer <joern.zaefferer@gmail.com> <joern.zaefferer@googlemail.com>
53
+ Jörn Zaefferer <joern.zaefferer@gmail.com> <JZA@.(none)>
54
+ Karl Swedberg <kswedberg@gmail.com> <karl@englishrules.com>
55
+ Kris Borchers <kris.borchers@gmail.com>
56
+ Lee Carpenter <elcarpie@gmail.com>
57
+ Li Xudong <istonelee@gmail.com>
58
+ Louis-Rémi Babé <lrbabe@gmail.com>
59
+ Louis-Rémi Babé <lrbabe@gmail.com> <louisremi@louisremi-laptop.(none)>
60
+ Louis-Rémi Babé <lrbabe@gmail.com> <lrbabe@lrbabe-laptop.(none)>
61
+ Louis-Rémi Babé <lrbabe@gmail.com> <lrbabe@lrbabe-laptop>
62
+ Marcel Greter <marcel.greter@ocbnet.ch> <mgr@rtp.ch>
63
+ Matthias Jäggli <matthias.jaeggli@gmail.com> <matthias.jaeggli@scout24.ch>
64
+ Michael Murray <m@murz.net> <mmurray.wa@gmail.com>
65
+ Michał Gołębiowski <m.goleb@gmail.com>
66
+ Michał Gołębiowski <m.goleb@gmail.com> <michal.golebiowski@laboratorium.ee>
67
+ Mike Alsup <malsup@gmail.com>
68
+ Nguyen Phuc Lam <ruado1987@gmail.com>
69
+ Oleg Gaidarenko <markelog@gmail.com>
70
+ Rafaël Blais Masson <rafbmasson@gmail.com>
71
+ Richard D. Worth <rdworth@gmail.com>
72
+ Rick Waldron <waldron.rick@gmail.com>
73
+ Rick Waldron <waldron.rick@gmail.com> <rick@bocoup.com>
74
+ Robert Katić <robert.katic@gmail.com>
75
+ Ron Otten <r.j.g.otten@gmail.com>
76
+ Sai Lung Wong <sai.wong@huffingtonpost.com>
77
+ Scott González <scott.gonzalez@gmail.com> <sgonzale@sgonzale-laptop.local>
78
+ Scott Jehl <scott@scottjehl.com>
79
+ Sebastian Burkhard <sebi.burkhard@gmail.com>
80
+ Timmy Willison <timmywillisn@gmail.com>
81
+ Timmy Willison <timmywillisn@gmail.com> <tim.willison@thisismedium.com>
82
+ Timo Tijhof <krinklemail@gmail.com>
83
+ TJ Holowaychuk <tj@vision-media.ca>
84
+ Tom H Fuertes <tomfuertes@gmail.com>
85
+ Tom H Fuertes <tomfuertes@gmail.com> Tom H Fuertes <TomFuertes@gmail.com>
86
+ Tom Viner <github@viner.tv>
87
+ Xavi Ramirez <xavi.rmz@gmail.com>
88
+ Xavier Montillet <xavierm02.net@gmail.com>
89
+ Yehuda Katz <wycats@gmail.com>
90
+ Yehuda Katz <wycats@gmail.com> <wycats@12-189-125-93.att-inc.com>
91
+ Yehuda Katz <wycats@gmail.com> <wycats@mobile005.mycingular.net>
92
+ Yehuda Katz <wycats@gmail.com> <wycats@Yehuda-Katz.local>
93
+ Yiming He <yiminghe@gmail.com>
94
+ Terry Jones <terry@jon.es> <terry@fluidinfo.com>
@@ -0,0 +1,170 @@
1
+ Authors ordered by first contribution.
2
+
3
+ John Resig <jeresig@gmail.com>
4
+ Gilles van den Hoven <gilles0181@gmail.com>
5
+ Michael Geary <mike@geary.com>
6
+ Stefan Petre <stefan.petre@gmail.com>
7
+ Yehuda Katz <wycats@gmail.com>
8
+ Corey Jewett <cj@syntheticplayground.com>
9
+ Klaus Hartl <klaus.hartl@googlemail.com>
10
+ Franck Marcia <franck.marcia@gmail.com>
11
+ Jörn Zaefferer <joern.zaefferer@gmail.com>
12
+ Paul Bakaus <paul.bakaus@googlemail.com>
13
+ Brandon Aaron <brandon.aaron@gmail.com>
14
+ Mike Alsup <malsup@gmail.com>
15
+ Dave Methvin <dave.methvin@gmail.com>
16
+ Ed Engelhardt <edengelhardt@gmail.com>
17
+ Sean Catchpole <sean@sunsean.com>
18
+ Paul Mclanahan <pmclanahan@gmail.com>
19
+ David Serduke <davidserduke@gmail.com>
20
+ Richard D. Worth <rdworth@gmail.com>
21
+ Scott González <scott.gonzalez@gmail.com>
22
+ Ariel Flesler <aflesler@gmail.com>
23
+ Jon Evans <jon@springyweb.com>
24
+ TJ Holowaychuk <tj@vision-media.ca>
25
+ Michael Bensoussan <mickey@seesmic.com>
26
+ Robert Katić <robert.katic@gmail.com>
27
+ Louis-Rémi Babé <lrbabe@gmail.com>
28
+ Earle Castledine <mrspeaker@gmail.com>
29
+ Damian Janowski <damian.janowski@gmail.com>
30
+ Rich Dougherty <rich@rd.gen.nz>
31
+ Kim Dalsgaard <kim@kimdalsgaard.com>
32
+ Andrea Giammarchi <andrea.giammarchi@gmail.com>
33
+ Mark Gibson <jollytoad@gmail.com>
34
+ Karl Swedberg <karl@englishrules.com>
35
+ Justin Meyer <justinbmeyer@gmail.com>
36
+ Ben Alman <cowboy@rj3.net>
37
+ James Padolsey <cla@padolsey.net>
38
+ David Petersen <public@petersendidit.com>
39
+ Batiste Bieler <batiste@gmail.com>
40
+ Alexander Farkas <info@corrupt-system.de>
41
+ Rick Waldron <waldron.rick@gmail.com>
42
+ Filipe Fortes <filipe@fortes.com>
43
+ Neeraj Singh <neerajdotname@gmail.com>
44
+ Paul Irish <paul.irish@gmail.com>
45
+ Iraê Carvalho <irae@irae.pro.br>
46
+ Matt Curry <matt@pseudocoder.com>
47
+ Michael Monteleone <michael@michaelmonteleone.net>
48
+ Noah Sloan <noah.sloan@gmail.com>
49
+ Tom Viner <github@viner.tv>
50
+ Douglas Neiner <doug@pixelgraphics.us>
51
+ Adam J. Sontag <ajpiano@ajpiano.com>
52
+ Dave Reed <dareed@microsoft.com>
53
+ Ralph Whitbeck <ralph.whitbeck@gmail.com>
54
+ Carl Fürstenberg <azatoth@gmail.com>
55
+ Jacob Wright <jacwright@gmail.com>
56
+ J. Ryan Stinnett <jryans@gmail.com>
57
+ Heungsub Lee <h@subl.ee>
58
+ Colin Snover <colin@alpha.zetafleet.com>
59
+ Ryan W Tenney <ryan@10e.us>
60
+ Ron Otten <r.j.g.otten@gmail.com>
61
+ Jephte Clain <Jephte.Clain@univ-reunion.fr>
62
+ Anton Matzneller <obhvsbypqghgc@gmail.com>
63
+ Alex Sexton <AlexSexton@gmail.com>
64
+ Dan Heberden <danheberden@gmail.com>
65
+ Henri Wiechers <hwiechers@gmail.com>
66
+ Russell Holbrook <russellholbrook@gmail.com>
67
+ Julian Aubourg <aubourg.julian@gmail.com>
68
+ Gianni Alessandro Chiappetta <gianni@runlevel6.org>
69
+ Scott Jehl <scott@scottjehl.com>
70
+ James Burke <jrburke@gmail.com>
71
+ Jonas Pfenniger <jonas@pfenniger.name>
72
+ Xavi Ramirez <xavi.rmz@gmail.com>
73
+ Jared Grippe <jared@deadlyicon.com>
74
+ Sylvester Keil <sylvester@keil.or.at>
75
+ Brandon Sterne <bsterne@mozilla.com>
76
+ Mathias Bynens <mathias@qiwi.be>
77
+ Timmy Willison <timmywillisn@gmail.com>
78
+ Corey Frang <gnarf@gnarf.net>
79
+ Anton Kovalyov <anton@kovalyov.net>
80
+ David Murdoch <musicisair@yahoo.com>
81
+ Josh Varner <josh.varner@gmail.com>
82
+ Charles McNulty <cmcnulty@kznf.com>
83
+ Jordan Boesch <jboesch26@gmail.com>
84
+ Jess Thrysoee <jess@thrysoee.dk>
85
+ Michael Murray <m@murz.net>
86
+ Lee Carpenter <elcarpie@gmail.com>
87
+ Alexis Abril <me@alexisabril.com>
88
+ Rob Morgan <robbym@gmail.com>
89
+ John Firebaugh <john_firebaugh@bigfix.com>
90
+ Sam Bisbee <sam@sbisbee.com>
91
+ Gilmore Davidson <gilmoreorless@gmail.com>
92
+ Brian Brennan <me@brianlovesthings.com>
93
+ Xavier Montillet <xavierm02.net@gmail.com>
94
+ Daniel Pihlstrom <sciolist.se@gmail.com>
95
+ Sahab Yazdani <sahab.yazdani+github@gmail.com>
96
+ Scott Hughes <shughes@atlassian.com>
97
+ Mike Sherov <mike.sherov@gmail.com>
98
+ Greg Hazel <ghazel@gmail.com>
99
+ Schalk Neethling <schalk@ossreleasefeed.com>
100
+ Denis Knauf <Denis.Knauf@gmail.com>
101
+ Timo Tijhof <krinklemail@gmail.com>
102
+ Steen Nielsen <swinedk@gmail.com>
103
+ Anton Ryzhov <anton@ryzhov.me>
104
+ Shi Chuan <shichuanr@gmail.com>
105
+ Berker Peksag <berker.peksag@gmail.com>
106
+ Toby Brain <tobyb@freshview.com>
107
+ Matt Mueller <mattmuelle@gmail.com>
108
+ Daniel Herman <daniel.c.herman@gmail.com>
109
+ Oleg Gaidarenko <markelog@gmail.com>
110
+ Richard Gibson <richard.gibson@gmail.com>
111
+ Rafaël Blais Masson <rafbmasson@gmail.com>
112
+ Joe Presbrey <presbrey@gmail.com>
113
+ Sindre Sorhus <sindresorhus@gmail.com>
114
+ Arne de Bree <arne@bukkie.nl>
115
+ Vladislav Zarakovsky <vlad.zar@gmail.com>
116
+ Andrew E Monat <amonat@gmail.com>
117
+ Joao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>
118
+ Dominik D. Geyer <dominik.geyer@gmail.com>
119
+ Matt Farmer <matt@frmr.me>
120
+ Trey Hunner <treyhunner@gmail.com>
121
+ Jason Moon <jmoon@socialcast.com>
122
+ Jeffery To <jeffery.to@gmail.com>
123
+ Kris Borchers <kris.borchers@gmail.com>
124
+ Vladimir Zhuravlev <private.face@gmail.com>
125
+ Jacob Thornton <jacobthornton@gmail.com>
126
+ Chad Killingsworth <chadkillingsworth@missouristate.edu>
127
+ Nowres Rafid <nowres.rafed@gmail.com>
128
+ David Benjamin <davidben@mit.edu>
129
+ Uri Gilad <antishok@gmail.com>
130
+ Chris Faulkner <thefaulkner@gmail.com>
131
+ Elijah Manor <elijah.manor@gmail.com>
132
+ Daniel Chatfield <chatfielddaniel@gmail.com>
133
+ Nikita Govorov <nikita.govorov@gmail.com>
134
+ Wesley Walser <wwalser@atlassian.com>
135
+ Michael Pennisi <mike@mikepennisi.com>
136
+ Markus Staab <markus.staab@redaxo.de>
137
+ Benjamin Truyman <bentruyman@gmail.com>
138
+ James Huston <james@jameshuston.net>
139
+ Ismail Khair <ismail.khair@gmail.com>
140
+ Carl Danley <carldanley@gmail.com>
141
+ Michael Petrovich <michael.c.petrovich@gmail.com>
142
+ Callum Macrae <callum@lynxphp.com>
143
+ David Bonner <dbonner@cogolabs.com>
144
+ Erick Ruiz de Chávez <erickrdch@gmail.com>
145
+ Akintayo Akinwunmi <aakinwunmi@judge.com>
146
+ Dave Riddle <david@joyvuu.com>
147
+ Greg Lavallee <greglavallee@wapolabs.com>
148
+ Daniel Gálvez <dgalvez@editablething.com>
149
+ Sai Lung Wong <sai.wong@huffingtonpost.com>
150
+ Tom H Fuertes <TomFuertes@gmail.com>
151
+ Roland Eckl <eckl.roland@googlemail.com>
152
+ Jay Merrifield <fracmak@gmail.com>
153
+ Allen J Schmidt Jr <cobrasoft@gmail.com>
154
+ Marcel Greter <marcel.greter@ocbnet.ch>
155
+ Matthias Jäggli <matthias.jaeggli@gmail.com>
156
+ Yiming He <yiminghe@gmail.com>
157
+ Devin Cooper <cooper.semantics@gmail.com>
158
+ Bennett Sorbo <bsorbo@gmail.com>
159
+ Sebastian Burkhard <sebi.burkhard@gmail.com>
160
+ Danil Somsikov <danilasomsikov@gmail.com>
161
+ Jean Boussier <jean.boussier@gmail.com>
162
+ Adam Coulombe <me@adam.co>
163
+ Andrew Plummer <plummer.andrew@gmail.com>
164
+ Dmitry Gusev <dmitry.gusev@gmail.com>
165
+ Michał Gołębiowski <m.goleb@gmail.com>
166
+ Jason Bedard <jason+jquery@jbedard.ca>
167
+ Kyle Robinson Young <kyle@dontkry.com>
168
+ Renato Oliveira dos Santos <ros3@cin.ufpe.br>
169
+ Chris Talkington <chris@talkingtontech.com>
170
+ Jason Merino <jasonmerino@gmail.com>