spade-packager 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (316) hide show
  1. data/.gitignore +2 -0
  2. data/.gitmodules +6 -0
  3. data/bin/spadepkg +8 -0
  4. data/lib/libgems_ext.rb +8 -0
  5. data/lib/libgems_ext/config_file.rb +33 -0
  6. data/lib/libgems_ext/dependency_installer.rb +150 -0
  7. data/lib/libgems_ext/installer.rb +39 -0
  8. data/lib/libgems_ext/libgems.rb +39 -0
  9. data/lib/libgems_ext/spec_fetcher.rb +11 -0
  10. data/lib/spade-packager.rb +1 -0
  11. data/lib/spade/packager.rb +18 -0
  12. data/lib/spade/packager/cli.rb +9 -0
  13. data/lib/spade/packager/cli/base.rb +196 -0
  14. data/lib/spade/packager/cli/owner.rb +46 -0
  15. data/lib/spade/packager/cli/project_generator.rb +117 -0
  16. data/lib/spade/packager/credentials.rb +38 -0
  17. data/lib/spade/packager/local.rb +50 -0
  18. data/lib/spade/packager/package.rb +160 -0
  19. data/lib/spade/packager/remote.rb +98 -0
  20. data/lib/spade/packager/repository.rb +18 -0
  21. data/lib/spade/packager/version.rb +5 -0
  22. data/packages/coffee-script/.gitignore +8 -0
  23. data/packages/coffee-script/.npmignore +11 -0
  24. data/packages/coffee-script/Cakefile +229 -0
  25. data/packages/coffee-script/LICENSE +22 -0
  26. data/packages/coffee-script/README +47 -0
  27. data/packages/coffee-script/Rakefile +78 -0
  28. data/packages/coffee-script/bin/cake +7 -0
  29. data/packages/coffee-script/bin/coffee +7 -0
  30. data/packages/coffee-script/documentation/coffee/aliases.coffee +11 -0
  31. data/packages/coffee-script/documentation/coffee/array_comprehensions.coffee +2 -0
  32. data/packages/coffee-script/documentation/coffee/block_comment.coffee +6 -0
  33. data/packages/coffee-script/documentation/coffee/cake_tasks.coffee +9 -0
  34. data/packages/coffee-script/documentation/coffee/classes.coffee +25 -0
  35. data/packages/coffee-script/documentation/coffee/comparisons.coffee +5 -0
  36. data/packages/coffee-script/documentation/coffee/conditionals.coffee +13 -0
  37. data/packages/coffee-script/documentation/coffee/default_args.coffee +8 -0
  38. data/packages/coffee-script/documentation/coffee/do.coffee +4 -0
  39. data/packages/coffee-script/documentation/coffee/embedded.coffee +5 -0
  40. data/packages/coffee-script/documentation/coffee/existence.coffee +10 -0
  41. data/packages/coffee-script/documentation/coffee/expressions.coffee +9 -0
  42. data/packages/coffee-script/documentation/coffee/expressions_assignment.coffee +3 -0
  43. data/packages/coffee-script/documentation/coffee/expressions_comprehension.coffee +3 -0
  44. data/packages/coffee-script/documentation/coffee/expressions_try.coffee +7 -0
  45. data/packages/coffee-script/documentation/coffee/fat_arrow.coffee +6 -0
  46. data/packages/coffee-script/documentation/coffee/functions.coffee +2 -0
  47. data/packages/coffee-script/documentation/coffee/heredocs.coffee +7 -0
  48. data/packages/coffee-script/documentation/coffee/heregexes.coffee +11 -0
  49. data/packages/coffee-script/documentation/coffee/interpolation.coffee +6 -0
  50. data/packages/coffee-script/documentation/coffee/multiple_return_values.coffee +7 -0
  51. data/packages/coffee-script/documentation/coffee/object_comprehensions.coffee +4 -0
  52. data/packages/coffee-script/documentation/coffee/object_extraction.coffee +13 -0
  53. data/packages/coffee-script/documentation/coffee/objects_and_arrays.coffee +19 -0
  54. data/packages/coffee-script/documentation/coffee/objects_reserved.coffee +5 -0
  55. data/packages/coffee-script/documentation/coffee/overview.coffee +28 -0
  56. data/packages/coffee-script/documentation/coffee/parallel_assignment.coffee +6 -0
  57. data/packages/coffee-script/documentation/coffee/patterns_and_splats.coffee +7 -0
  58. data/packages/coffee-script/documentation/coffee/prototypes.coffee +3 -0
  59. data/packages/coffee-script/documentation/coffee/range_comprehensions.coffee +2 -0
  60. data/packages/coffee-script/documentation/coffee/scope.coffee +5 -0
  61. data/packages/coffee-script/documentation/coffee/slices.coffee +7 -0
  62. data/packages/coffee-script/documentation/coffee/soaks.coffee +1 -0
  63. data/packages/coffee-script/documentation/coffee/splats.coffee +27 -0
  64. data/packages/coffee-script/documentation/coffee/splices.coffee +5 -0
  65. data/packages/coffee-script/documentation/coffee/strings.coffee +8 -0
  66. data/packages/coffee-script/documentation/coffee/switch.coffee +10 -0
  67. data/packages/coffee-script/documentation/coffee/try.coffee +8 -0
  68. data/packages/coffee-script/documentation/coffee/while.coffee +10 -0
  69. data/packages/coffee-script/documentation/css/docs.css +374 -0
  70. data/packages/coffee-script/documentation/css/idle.css +64 -0
  71. data/packages/coffee-script/documentation/docs/browser.html +25 -0
  72. data/packages/coffee-script/documentation/docs/cake.html +43 -0
  73. data/packages/coffee-script/documentation/docs/coffee-script.html +51 -0
  74. data/packages/coffee-script/documentation/docs/command.html +161 -0
  75. data/packages/coffee-script/documentation/docs/docco.css +186 -0
  76. data/packages/coffee-script/documentation/docs/grammar.html +399 -0
  77. data/packages/coffee-script/documentation/docs/helpers.html +31 -0
  78. data/packages/coffee-script/documentation/docs/index.html +3 -0
  79. data/packages/coffee-script/documentation/docs/lexer.html +490 -0
  80. data/packages/coffee-script/documentation/docs/nodes.html +1338 -0
  81. data/packages/coffee-script/documentation/docs/optparse.html +78 -0
  82. data/packages/coffee-script/documentation/docs/repl.html +24 -0
  83. data/packages/coffee-script/documentation/docs/rewriter.html +251 -0
  84. data/packages/coffee-script/documentation/docs/scope.html +54 -0
  85. data/packages/coffee-script/documentation/docs/underscore.html +295 -0
  86. data/packages/coffee-script/documentation/images/background.png +0 -0
  87. data/packages/coffee-script/documentation/images/banding.png +0 -0
  88. data/packages/coffee-script/documentation/images/button_bg.png +0 -0
  89. data/packages/coffee-script/documentation/images/button_bg_dark.gif +0 -0
  90. data/packages/coffee-script/documentation/images/button_bg_green.gif +0 -0
  91. data/packages/coffee-script/documentation/images/favicon.ico +0 -0
  92. data/packages/coffee-script/documentation/images/logo.png +0 -0
  93. data/packages/coffee-script/documentation/images/screenshadow.png +0 -0
  94. data/packages/coffee-script/documentation/index.html.erb +1607 -0
  95. data/packages/coffee-script/documentation/js/aliases.js +17 -0
  96. data/packages/coffee-script/documentation/js/array_comprehensions.js +6 -0
  97. data/packages/coffee-script/documentation/js/block_comment.js +4 -0
  98. data/packages/coffee-script/documentation/js/cake_tasks.js +10 -0
  99. data/packages/coffee-script/documentation/js/classes.js +44 -0
  100. data/packages/coffee-script/documentation/js/comparisons.js +3 -0
  101. data/packages/coffee-script/documentation/js/conditionals.js +12 -0
  102. data/packages/coffee-script/documentation/js/default_args.js +7 -0
  103. data/packages/coffee-script/documentation/js/do.js +10 -0
  104. data/packages/coffee-script/documentation/js/embedded.js +4 -0
  105. data/packages/coffee-script/documentation/js/existence.js +6 -0
  106. data/packages/coffee-script/documentation/js/expressions.js +15 -0
  107. data/packages/coffee-script/documentation/js/expressions_assignment.js +2 -0
  108. data/packages/coffee-script/documentation/js/expressions_comprehension.js +9 -0
  109. data/packages/coffee-script/documentation/js/expressions_try.js +7 -0
  110. data/packages/coffee-script/documentation/js/fat_arrow.js +9 -0
  111. data/packages/coffee-script/documentation/js/functions.js +7 -0
  112. data/packages/coffee-script/documentation/js/heredocs.js +2 -0
  113. data/packages/coffee-script/documentation/js/heregexes.js +2 -0
  114. data/packages/coffee-script/documentation/js/interpolation.js +4 -0
  115. data/packages/coffee-script/documentation/js/multiple_return_values.js +5 -0
  116. data/packages/coffee-script/documentation/js/object_comprehensions.js +15 -0
  117. data/packages/coffee-script/documentation/js/object_extraction.js +10 -0
  118. data/packages/coffee-script/documentation/js/objects_and_arrays.js +17 -0
  119. data/packages/coffee-script/documentation/js/objects_reserved.js +4 -0
  120. data/packages/coffee-script/documentation/js/overview.js +35 -0
  121. data/packages/coffee-script/documentation/js/parallel_assignment.js +4 -0
  122. data/packages/coffee-script/documentation/js/patterns_and_splats.js +4 -0
  123. data/packages/coffee-script/documentation/js/prototypes.js +3 -0
  124. data/packages/coffee-script/documentation/js/range_comprehensions.js +9 -0
  125. data/packages/coffee-script/documentation/js/scope.js +8 -0
  126. data/packages/coffee-script/documentation/js/slices.js +4 -0
  127. data/packages/coffee-script/documentation/js/soaks.js +2 -0
  128. data/packages/coffee-script/documentation/js/splats.js +15 -0
  129. data/packages/coffee-script/documentation/js/splices.js +3 -0
  130. data/packages/coffee-script/documentation/js/strings.js +2 -0
  131. data/packages/coffee-script/documentation/js/switch.js +23 -0
  132. data/packages/coffee-script/documentation/js/try.js +8 -0
  133. data/packages/coffee-script/documentation/js/while.js +18 -0
  134. data/packages/coffee-script/documentation/vendor/jquery-1.4.2.js +6240 -0
  135. data/packages/coffee-script/examples/beautiful_code/binary_search.coffee +16 -0
  136. data/packages/coffee-script/examples/beautiful_code/quicksort_runtime.coffee +13 -0
  137. data/packages/coffee-script/examples/beautiful_code/regular_expression_matcher.coffee +34 -0
  138. data/packages/coffee-script/examples/blocks.coffee +54 -0
  139. data/packages/coffee-script/examples/code.coffee +167 -0
  140. data/packages/coffee-script/examples/computer_science/README +4 -0
  141. data/packages/coffee-script/examples/computer_science/binary_search.coffee +25 -0
  142. data/packages/coffee-script/examples/computer_science/bubble_sort.coffee +11 -0
  143. data/packages/coffee-script/examples/computer_science/linked_list.coffee +108 -0
  144. data/packages/coffee-script/examples/computer_science/luhn_algorithm.coffee +36 -0
  145. data/packages/coffee-script/examples/computer_science/merge_sort.coffee +19 -0
  146. data/packages/coffee-script/examples/computer_science/selection_sort.coffee +23 -0
  147. data/packages/coffee-script/examples/poignant.coffee +181 -0
  148. data/packages/coffee-script/examples/potion.coffee +206 -0
  149. data/packages/coffee-script/examples/underscore.coffee +682 -0
  150. data/packages/coffee-script/examples/web_server.coffee +12 -0
  151. data/packages/coffee-script/extras/EXTRAS +7 -0
  152. data/packages/coffee-script/extras/coffee-script.js +8 -0
  153. data/packages/coffee-script/extras/jsl.conf +44 -0
  154. data/packages/coffee-script/index.html +2515 -0
  155. data/packages/coffee-script/lib/browser.js +52 -0
  156. data/packages/coffee-script/lib/cake.js +76 -0
  157. data/packages/coffee-script/lib/coffee-script.js +82 -0
  158. data/packages/coffee-script/lib/command.js +263 -0
  159. data/packages/coffee-script/lib/grammar.js +581 -0
  160. data/packages/coffee-script/lib/helpers.js +66 -0
  161. data/packages/coffee-script/lib/index.js +8 -0
  162. data/packages/coffee-script/lib/lexer.js +633 -0
  163. data/packages/coffee-script/lib/nodes.js +2165 -0
  164. data/packages/coffee-script/lib/optparse.js +111 -0
  165. data/packages/coffee-script/lib/parser.js +649 -0
  166. data/packages/coffee-script/lib/repl.js +42 -0
  167. data/packages/coffee-script/lib/rewriter.js +353 -0
  168. data/packages/coffee-script/lib/scope.js +120 -0
  169. data/packages/coffee-script/lib/spade-format.js +45 -0
  170. data/packages/coffee-script/package.json +26 -0
  171. data/packages/coffee-script/src/browser.coffee +43 -0
  172. data/packages/coffee-script/src/cake.coffee +69 -0
  173. data/packages/coffee-script/src/coffee-script.coffee +92 -0
  174. data/packages/coffee-script/src/command.coffee +214 -0
  175. data/packages/coffee-script/src/grammar.coffee +590 -0
  176. data/packages/coffee-script/src/helpers.coffee +56 -0
  177. data/packages/coffee-script/src/index.coffee +2 -0
  178. data/packages/coffee-script/src/lexer.coffee +653 -0
  179. data/packages/coffee-script/src/nodes.coffee +1754 -0
  180. data/packages/coffee-script/src/optparse.coffee +99 -0
  181. data/packages/coffee-script/src/repl.coffee +42 -0
  182. data/packages/coffee-script/src/rewriter.coffee +326 -0
  183. data/packages/coffee-script/src/scope.coffee +94 -0
  184. data/packages/coffee-script/test/arguments.coffee +127 -0
  185. data/packages/coffee-script/test/assignment.coffee +98 -0
  186. data/packages/coffee-script/test/break.coffee +18 -0
  187. data/packages/coffee-script/test/comments.coffee +201 -0
  188. data/packages/coffee-script/test/conditionals.coffee +181 -0
  189. data/packages/coffee-script/test/exception_handling.coffee +90 -0
  190. data/packages/coffee-script/test/helpers.coffee +96 -0
  191. data/packages/coffee-script/test/importing.coffee +18 -0
  192. data/packages/coffee-script/test/operators.coffee +225 -0
  193. data/packages/coffee-script/test/ranges_slices_and_splices.coffee +186 -0
  194. data/packages/coffee-script/test/regular_expressions.coffee +56 -0
  195. data/packages/coffee-script/test/test.html +123 -0
  196. data/packages/coffee-script/test/test_chaining.coffee +77 -0
  197. data/packages/coffee-script/test/test_classes.coffee +372 -0
  198. data/packages/coffee-script/test/test_compilation.coffee +26 -0
  199. data/packages/coffee-script/test/test_comprehensions.coffee +318 -0
  200. data/packages/coffee-script/test/test_existence.coffee +165 -0
  201. data/packages/coffee-script/test/test_functions.coffee +379 -0
  202. data/packages/coffee-script/test/test_heredocs.coffee +111 -0
  203. data/packages/coffee-script/test/test_literals.coffee +270 -0
  204. data/packages/coffee-script/test/test_option_parser.coffee +27 -0
  205. data/packages/coffee-script/test/test_pattern_matching.coffee +162 -0
  206. data/packages/coffee-script/test/test_returns.coffee +63 -0
  207. data/packages/coffee-script/test/test_splats.coffee +102 -0
  208. data/packages/coffee-script/test/test_strings.coffee +118 -0
  209. data/packages/coffee-script/test/test_switch.coffee +103 -0
  210. data/packages/coffee-script/test/test_while.coffee +71 -0
  211. data/packages/ivory/LICENSE.txt +1 -0
  212. data/packages/ivory/README.md +19 -0
  213. data/packages/ivory/lib/buffer.js +111 -0
  214. data/packages/ivory/lib/events.js +137 -0
  215. data/packages/ivory/lib/fs.js +266 -0
  216. data/packages/ivory/lib/main.js +13 -0
  217. data/packages/ivory/lib/path.js +158 -0
  218. data/packages/ivory/lib/ruby/buffer.rb +145 -0
  219. data/packages/ivory/lib/ruby/constants.rb +585 -0
  220. data/packages/ivory/lib/ruby/events.rb +32 -0
  221. data/packages/ivory/lib/ruby/fs.rb +245 -0
  222. data/packages/ivory/lib/ruby/process.rb +28 -0
  223. data/packages/ivory/lib/stream.js +115 -0
  224. data/packages/ivory/lib/util.js +414 -0
  225. data/packages/ivory/package.json +11 -0
  226. data/packages/ivory/spade-boot.js +78 -0
  227. data/packages/jquery/main.js +7179 -0
  228. data/packages/jquery/package.json +10 -0
  229. data/packages/json/lib/main.js +14 -0
  230. data/packages/json/package.json +8 -0
  231. data/packages/lproj/README.md +77 -0
  232. data/packages/lproj/examples/demo-app/en.lproj/localized.strings +2 -0
  233. data/packages/lproj/examples/demo-app/fr.lproj/localized.strings +3 -0
  234. data/packages/lproj/examples/demo-app/index.html +8 -0
  235. data/packages/lproj/examples/demo-app/lib/main.js +7 -0
  236. data/packages/lproj/examples/demo-app/package.json +9 -0
  237. data/packages/lproj/lib/main.js +78 -0
  238. data/packages/lproj/lib/strings-format.js +6 -0
  239. data/packages/lproj/package.json +9 -0
  240. data/packages/optparse/README.md +161 -0
  241. data/packages/optparse/TODO +1 -0
  242. data/packages/optparse/examples/browser-test.html +75 -0
  243. data/packages/optparse/examples/nodejs-test.js +90 -0
  244. data/packages/optparse/lib/optparse.js +309 -0
  245. data/packages/optparse/package.json +13 -0
  246. data/packages/optparse/seed.yml +5 -0
  247. data/packages/text/lib/main.js +8 -0
  248. data/packages/text/package.json +9 -0
  249. data/packages/web-file/README.md +7 -0
  250. data/packages/web-file/lib/errors.js +32 -0
  251. data/packages/web-file/lib/file-reader.js +10 -0
  252. data/packages/web-file/lib/file-system.js +234 -0
  253. data/packages/web-file/lib/file-writer.js +10 -0
  254. data/packages/web-file/lib/file.js +9 -0
  255. data/packages/web-file/lib/main.js +34 -0
  256. data/packages/web-file/lib/platform.js +25 -0
  257. data/packages/web-file/lib/ruby/file.rb +252 -0
  258. data/packages/web-file/lib/ruby/file_reader.rb +69 -0
  259. data/packages/web-file/lib/ruby/file_system.rb +134 -0
  260. data/packages/web-file/lib/ruby/file_writer.rb +78 -0
  261. data/packages/web-file/package.json +12 -0
  262. data/packages/web-typed-array/README.md +7 -0
  263. data/packages/web-typed-array/lib/array-buffer-view.js +9 -0
  264. data/packages/web-typed-array/lib/array-buffer.js +7 -0
  265. data/packages/web-typed-array/lib/main.js +33 -0
  266. data/packages/web-typed-array/lib/platform.js +20 -0
  267. data/packages/web-typed-array/lib/ruby/array_buffer.rb +31 -0
  268. data/packages/web-typed-array/lib/ruby/array_buffer_view.rb +130 -0
  269. data/packages/web-typed-array/lib/ruby/typed_array.rb +133 -0
  270. data/packages/web-typed-array/lib/typed-array.js +26 -0
  271. data/packages/web-typed-array/package.json +9 -0
  272. data/spade-packager.gemspec +39 -0
  273. data/spec/cli/build_spec.rb +57 -0
  274. data/spec/cli/install_spec.rb +119 -0
  275. data/spec/cli/installed_spec.rb +55 -0
  276. data/spec/cli/list_spec.rb +74 -0
  277. data/spec/cli/login_spec.rb +75 -0
  278. data/spec/cli/new_spec.rb +5 -0
  279. data/spec/cli/owner_spec.rb +114 -0
  280. data/spec/cli/push_spec.rb +73 -0
  281. data/spec/cli/uninstall_spec.rb +58 -0
  282. data/spec/cli/unpack_spec.rb +72 -0
  283. data/spec/cli/unyank_spec.rb +73 -0
  284. data/spec/cli/yank_spec.rb +73 -0
  285. data/spec/credentials_spec.rb +23 -0
  286. data/spec/fixtures/badrake-0.8.7.spd +0 -0
  287. data/spec/fixtures/builder-3.0.0.spd +0 -0
  288. data/spec/fixtures/bundler-1.1.pre.spd +0 -0
  289. data/spec/fixtures/coffee-1.0.1.pre.spd +0 -0
  290. data/spec/fixtures/core-test-0.4.3.spd +0 -0
  291. data/spec/fixtures/core-test/bin/cot +3 -0
  292. data/spec/fixtures/core-test/lib/main.js +1 -0
  293. data/spec/fixtures/core-test/resources/runner.css +0 -0
  294. data/spec/fixtures/core-test/tests/test.js +1 -0
  295. data/spec/fixtures/highline-1.6.1.spd +0 -0
  296. data/spec/fixtures/ivory-0.0.1.spd +0 -0
  297. data/spec/fixtures/jquery-1.4.3.spd +0 -0
  298. data/spec/fixtures/optparse-1.0.1.spd +0 -0
  299. data/spec/fixtures/package.json +30 -0
  300. data/spec/fixtures/rake-0.8.6.spd +0 -0
  301. data/spec/fixtures/rake-0.8.7.spd +0 -0
  302. data/spec/gauntlet_spec.rb +27 -0
  303. data/spec/package_spec.rb +267 -0
  304. data/spec/spec_helper.rb +32 -0
  305. data/spec/support/cli.rb +103 -0
  306. data/spec/support/fake.rb +48 -0
  307. data/spec/support/fake_gem_server.rb +67 -0
  308. data/spec/support/fake_gemcutter.rb +50 -0
  309. data/spec/support/matchers.rb +32 -0
  310. data/spec/support/path.rb +61 -0
  311. data/templates/project/LICENSE +19 -0
  312. data/templates/project/README.md +21 -0
  313. data/templates/project/lib/main.js +9 -0
  314. data/templates/project/project.json +31 -0
  315. data/templates/project/tests/main-test.js +8 -0
  316. metadata +484 -0
@@ -0,0 +1,13 @@
1
+ // ==========================================================================
2
+ // Project: Ivory
3
+ // Copyright: ©2010 Strobe Inc. All rights reserved.
4
+ // License: Licened under MIT license
5
+ // ==========================================================================
6
+ /*globals process Buffer $fs $path $util */
7
+
8
+ process = require('./ruby/process');
9
+ Buffer = require('./buffer').Buffer ;
10
+
11
+ $fs = require('./fs');
12
+ $path = require('./path');
13
+ $util = require('./util');
@@ -0,0 +1,158 @@
1
+ // ==========================================================================
2
+ // Project: Ivory
3
+ // Copyright: ©2010 Strobe Inc. All rights reserved.
4
+ // License: Licened under MIT license
5
+ // ==========================================================================
6
+
7
+ var process = require('./ruby/process');
8
+
9
+ function validPathPart(p, keepBlanks) {
10
+ return typeof p === 'string' && (p || keepBlanks);
11
+ }
12
+
13
+ exports.cwd = function() { return process.cwd(); };
14
+
15
+ exports.join = function() {
16
+ var args = Array.prototype.slice.call(arguments);
17
+ // edge case flag to switch into url-resolve-mode
18
+ var keepBlanks = false;
19
+ if (args[args.length - 1] === true) {
20
+ keepBlanks = args.pop();
21
+ }
22
+ // return exports.split(args.join("/"), keepBlanks).join("/");
23
+ var joined = exports.normalizeArray(args, keepBlanks).join('/');
24
+ return joined;
25
+ };
26
+
27
+
28
+ exports.split = function(path, keepBlanks) {
29
+ // split based on /, but only if that / is not at the start or end.
30
+ return exports.normalizeArray(path.split(/^|\/(?!$)/), keepBlanks);
31
+ };
32
+
33
+
34
+ function cleanArray(parts, keepBlanks) {
35
+ var i = 0;
36
+ var l = parts.length - 1;
37
+ var stripped = false;
38
+
39
+ // strip leading empty args
40
+ while (i < l && !validPathPart(parts[i], keepBlanks)) {
41
+ stripped = true;
42
+ i++;
43
+ }
44
+
45
+ // strip tailing empty args
46
+ while (l >= i && !validPathPart(parts[l], keepBlanks)) {
47
+ stripped = true;
48
+ l--;
49
+ }
50
+
51
+ if (stripped) {
52
+ // if l chopped all the way back to i, then this is empty
53
+ parts = Array.prototype.slice.call(parts, i, l + 1);
54
+ }
55
+
56
+ return parts.filter(function(p) { return validPathPart(p, keepBlanks); })
57
+ .join('/')
58
+ .split(/^|\/(?!$)/);
59
+ }
60
+
61
+
62
+ exports.normalizeArray = function(original, keepBlanks) {
63
+ var parts = cleanArray(original, keepBlanks);
64
+ if (!parts.length || (parts.length === 1 && !parts[0])) return ['.'];
65
+
66
+ // now we're fully ready to rock.
67
+ // leading/trailing invalids have been stripped off.
68
+ // if it comes in starting with a slash, or ending with a slash,
69
+ var leadingSlash = (parts[0].charAt(0) === '/');
70
+
71
+ if (leadingSlash) parts[0] = parts[0].substr(1);
72
+ var last = parts.slice(-1)[0];
73
+ var tailingSlash = (last.substr(-1) === '/');
74
+ if (tailingSlash) parts[parts.length - 1] = last.slice(0, -1);
75
+ var directories = [];
76
+ var prev;
77
+ for (var i = 0, l = parts.length - 1; i <= l; i++) {
78
+ var directory = parts[i];
79
+
80
+ // if it's blank, and we're not keeping blanks, then skip it.
81
+ if (directory === '' && !keepBlanks) continue;
82
+
83
+ // if it's a dot, then skip it
84
+ if (directory === '.' && (directories.length ||
85
+ (i === 0 && !(tailingSlash && i === l)) ||
86
+ (i === 0 && leadingSlash))) continue;
87
+
88
+ // if we're dealing with an absolute path, then discard ..s that go
89
+ // above that the base.
90
+ if (leadingSlash && directories.length === 0 && directory === '..') {
91
+ continue;
92
+ }
93
+ // trying to go up a dir
94
+ if (directory === '..' && directories.length && prev !== '..' &&
95
+ prev !== undefined) {
96
+ directories.pop();
97
+ prev = directories.slice(-1)[0];
98
+ } else {
99
+ directories.push(directory);
100
+ prev = directory;
101
+ }
102
+ }
103
+ if (!directories.length) {
104
+ directories = [leadingSlash || tailingSlash ? '' : '.'];
105
+ }
106
+
107
+ last = directories.slice(-1)[0];
108
+ if (tailingSlash && last.substr(-1) !== '/') {
109
+ directories[directories.length - 1] += '/';
110
+ }
111
+ if (leadingSlash && directories[0].charAt(0) !== '/') {
112
+ if (directories[0] === '.') directories[0] = '';
113
+ directories[0] = '/' + directories[0];
114
+ }
115
+ return directories;
116
+ };
117
+
118
+
119
+ exports.normalize = function(path, keepBlanks) {
120
+ return exports.join(path, keepBlanks || false);
121
+ };
122
+
123
+
124
+ exports.dirname = function(path) {
125
+ if (path.length > 1 && '/' === path[path.length - 1]) {
126
+ path = path.replace(/\/+$/, '');
127
+ }
128
+ var lastSlash = path.lastIndexOf('/');
129
+ switch (lastSlash) {
130
+ case -1:
131
+ return '.';
132
+ case 0:
133
+ return '/';
134
+ default:
135
+ return path.substring(0, lastSlash);
136
+ }
137
+ };
138
+
139
+
140
+ exports.basename = function(path, ext) {
141
+ var f = path.substr(path.lastIndexOf('/') + 1);
142
+ if (ext && f.substr(-1 * ext.length) === ext) {
143
+ f = f.substr(0, f.length - ext.length);
144
+ }
145
+ return f;
146
+ };
147
+
148
+
149
+ exports.extname = function(path) {
150
+ var dot = path.lastIndexOf('.'),
151
+ slash = path.lastIndexOf('/');
152
+ // The last dot must be in the last path component, and it (the last dot) must
153
+ // not start the last path component (i.e. be a dot that signifies a hidden
154
+ // file in UNIX).
155
+ return dot <= slash + 1 ? '' : path.substring(dot);
156
+ };
157
+
158
+ exports.exists = require('./fs').exists;
@@ -0,0 +1,145 @@
1
+ # ==========================================================================
2
+ # Project: Ivory
3
+ # Copyright: ©2010 Strobe Inc. All rights reserved.
4
+ # License: Licened under MIT license (see LICENSE)
5
+ # ==========================================================================
6
+
7
+ require 'v8'
8
+
9
+ module Ivory
10
+ class BufferModule < Spade::Runtime::Exports
11
+
12
+ class SlowBuffer
13
+ attr_reader :data
14
+ protected :data
15
+
16
+ def initialize(opt, *args)
17
+ case opt
18
+ when Numeric
19
+ @data = Array.new(opt.to_i, 0)
20
+ when V8::Array
21
+ @data = opt.to_a
22
+ when String
23
+ encoding = *args
24
+ @data = case encoding
25
+ when 'ascii' then opt.unpack('U*')
26
+ when 'utf8','utf-8','binary',nil then opt.unpack('C*')
27
+ when 'base64'
28
+ (opt + "=" * (4 - opt.length % 4)).unpack('m').first.unpack('C*')
29
+ else
30
+ raise "Unknown encoding"
31
+ end
32
+ when self.class
33
+ start, stop = *args
34
+ @data = opt.send(:data)[start..stop-1]
35
+ else
36
+ raise "Bad argument"
37
+ end
38
+ end
39
+
40
+ def length
41
+ @data.length
42
+ end
43
+
44
+ def [](index)
45
+ index.kind_of?(Numeric) ? @data[index] : yield
46
+ end
47
+
48
+ def []=(index, value)
49
+ index.kind_of?(Numeric) ? @data[index] = value : yield
50
+ end
51
+
52
+ def slice(start, stop)
53
+ SlowBuffer.new(self, start, stop)
54
+ end
55
+
56
+ def unpack(format, index)
57
+ raise ArgumentError, "Argument must be a string" unless format.kind_of?(String)
58
+ @data[index..-1].pack('C*').unpack(format).tap do |array|
59
+ raise ArgumentError, "Out of bounds" if array.last.nil?
60
+ end
61
+ end
62
+
63
+ def utf8Slice(start, stop)
64
+ @data[start..stop-1].pack('C*')
65
+ end
66
+
67
+ def asciiSlice(start, stop)
68
+ raise ArgumentError, "Bad argument." unless start.kind_of?(Numeric) && stop.kind_of?(Numeric)
69
+ raise ArgumentError, "Bad argument." if start < 0 || stop < 0
70
+ raise ArgumentError, "Must have start <= end" unless start <= stop
71
+ raise ArgumentError, "end cannot be longer than parent" if stop > @data.length
72
+
73
+ @data[start..stop-1].pack('C*').tap do |slice|
74
+ # puts "Buffer(#{self.length}).asciiSlice(#{start}, #{stop}) -> #{slice}"
75
+ end
76
+ end
77
+
78
+ def binarySlice(start, stop)
79
+ @data[start..stop-1]
80
+ end
81
+
82
+ def base64Slice(start, stop)
83
+ [@data[start..stop-1].pack('C*')].pack('m').gsub(/\n/,'')
84
+ end
85
+
86
+ def utf8Write(string, offset)
87
+ written = 0
88
+ string.scan(/./mu) do |codepoint|
89
+ bytes = codepoint.unpack('C*')
90
+ if bytes.length <= self.length - offset - written
91
+ @data[offset + written, bytes.length] = bytes
92
+ written += bytes.length
93
+ end
94
+ end
95
+ return written
96
+ end
97
+
98
+ def asciiWrite(string, offset)
99
+ raise "Argument must be a string" unless string.kind_of?(String)
100
+ raise "Offset is out of bounds" if string.length > 0 && offset >= self.length
101
+ to_write = [string.length, self.length - offset].min
102
+ @data[offset, to_write] = string.unpack('C*')
103
+ to_write
104
+ end
105
+
106
+ def binaryWrite(string, offset)
107
+ raise "Argument must be a string" unless string.kind_of?(String)
108
+ 0
109
+ end
110
+
111
+ def base64Write(string, offset)
112
+ return 0 if offset == 0 && self.length == 0
113
+ raise "Offset is out of bounds" if offset >= self.length
114
+ bytes = string.unpack('m').first.unpack('C*')
115
+ raise "Buffer too small" if bytes.length > (self.length - offset)
116
+ @data[offset, bytes.length] = bytes
117
+ bytes.length
118
+ end
119
+
120
+ def copy(target, position, start, finish = self.length)
121
+ raise "First arg should be a Buffer" unless target.kind_of?(self.class)
122
+ raise "sourceEnd < sourceStart" if finish < start
123
+ return 0 if start == finish
124
+
125
+ raise "targetStart out of bounds" if position < 0 || position >= target.length
126
+ raise "sourceStart out of bounds" if start < 0 || start >= self.length
127
+ raise "sourceEnd out of bounds" if finish < 0 || finish > self.length
128
+
129
+ to_copy = [finish - start, target.length - position].min.tap do |bytes|
130
+ for i in 0..bytes - 1
131
+ target[i] = self[i]
132
+ end
133
+ end
134
+ end
135
+
136
+ def to_s
137
+ @data.pack("C*")
138
+ end
139
+
140
+ end
141
+ end
142
+ end
143
+
144
+ Spade.exports = Ivory::BufferModule
145
+
@@ -0,0 +1,585 @@
1
+ # ==========================================================================
2
+ # Project: Ivory
3
+ # Copyright: ©2010 Strobe Inc. All rights reserved.
4
+ # License: Licened under MIT license (see LICENSE)
5
+ # ==========================================================================
6
+
7
+ module Ivory
8
+ class Constants < Spade::Runtime::Exports
9
+
10
+ def self.defc(name, value)
11
+ self.send(:define_method, name) do ||
12
+ value
13
+ end
14
+ end
15
+
16
+ # NODE_DEFINE_CONSTANT(target, EV_MINPRI);
17
+ # NODE_DEFINE_CONSTANT(target, EV_MAXPRI);
18
+ #
19
+ # // file access modes
20
+ # NODE_DEFINE_CONSTANT(target, O_RDONLY);
21
+ # NODE_DEFINE_CONSTANT(target, O_WRONLY);
22
+ # NODE_DEFINE_CONSTANT(target, O_RDWR);
23
+
24
+ defc :O_RDONLY, File::RDONLY
25
+ defc :O_WRONLY, File::WRONLY
26
+ defc :O_RDWR, File::RDWR
27
+
28
+ #
29
+ # NODE_DEFINE_CONSTANT(target, S_IFMT);
30
+ # NODE_DEFINE_CONSTANT(target, S_IFREG);
31
+ # NODE_DEFINE_CONSTANT(target, S_IFDIR);
32
+ # NODE_DEFINE_CONSTANT(target, S_IFCHR);
33
+ # NODE_DEFINE_CONSTANT(target, S_IFBLK);
34
+ # NODE_DEFINE_CONSTANT(target, S_IFIFO);
35
+ # NODE_DEFINE_CONSTANT(target, S_IFLNK);
36
+ # NODE_DEFINE_CONSTANT(target, S_IFSOCK);
37
+ #
38
+ # #ifdef O_CREAT
39
+ # NODE_DEFINE_CONSTANT(target, O_CREAT);
40
+ # #endif
41
+ defc :O_CREAT, File::CREAT
42
+ #
43
+ # #ifdef O_EXCL
44
+ # NODE_DEFINE_CONSTANT(target, O_EXCL);
45
+ # #endif
46
+ defc :OEXCL, File::EXCL
47
+ #
48
+ # #ifdef O_NOCTTY
49
+ # NODE_DEFINE_CONSTANT(target, O_NOCTTY);
50
+ # #endif
51
+ defc :OEXCL, File::EXCL
52
+ #
53
+ # #ifdef O_TRUNC
54
+ # NODE_DEFINE_CONSTANT(target, O_TRUNC);
55
+ # #endif
56
+ defc :O_TRUNC, File::TRUNC
57
+ #
58
+ # #ifdef O_APPEND
59
+ # NODE_DEFINE_CONSTANT(target, O_APPEND);
60
+ # #endif
61
+ #
62
+ # #ifdef O_DIRECTORY
63
+ # NODE_DEFINE_CONSTANT(target, O_DIRECTORY);
64
+ # #endif
65
+ #
66
+ # #ifdef O_EXCL
67
+ # NODE_DEFINE_CONSTANT(target, O_EXCL);
68
+ # #endif
69
+ #
70
+ # #ifdef O_NOFOLLOW
71
+ # NODE_DEFINE_CONSTANT(target, O_NOFOLLOW);
72
+ # #endif
73
+ #
74
+ # #ifdef O_SYNC
75
+ # NODE_DEFINE_CONSTANT(target, O_SYNC);
76
+ # #endif
77
+ #
78
+ # #ifdef S_IRWXU
79
+ # NODE_DEFINE_CONSTANT(target, S_IRWXU);
80
+ # #endif
81
+ #
82
+ #
83
+ # #ifdef S_IRUSR
84
+ # NODE_DEFINE_CONSTANT(target, S_IRUSR);
85
+ # #endif
86
+ #
87
+ # #ifdef S_IWUSR
88
+ # NODE_DEFINE_CONSTANT(target, S_IWUSR);
89
+ # #endif
90
+ #
91
+ # #ifdef S_IXUSR
92
+ # NODE_DEFINE_CONSTANT(target, S_IXUSR);
93
+ # #endif
94
+ #
95
+ #
96
+ # #ifdef S_IRWXG
97
+ # NODE_DEFINE_CONSTANT(target, S_IRWXG);
98
+ # #endif
99
+ #
100
+ #
101
+ # #ifdef S_IRGRP
102
+ # NODE_DEFINE_CONSTANT(target, S_IRGRP);
103
+ # #endif
104
+ #
105
+ # #ifdef S_IWGRP
106
+ # NODE_DEFINE_CONSTANT(target, S_IWGRP);
107
+ # #endif
108
+ #
109
+ # #ifdef S_IXGRP
110
+ # NODE_DEFINE_CONSTANT(target, S_IXGRP);
111
+ # #endif
112
+ #
113
+ #
114
+ # #ifdef S_IRWXO
115
+ # NODE_DEFINE_CONSTANT(target, S_IRWXO);
116
+ # #endif
117
+ #
118
+ #
119
+ # #ifdef S_IROTH
120
+ # NODE_DEFINE_CONSTANT(target, S_IROTH);
121
+ # #endif
122
+ #
123
+ # #ifdef S_IWOTH
124
+ # NODE_DEFINE_CONSTANT(target, S_IWOTH);
125
+ # #endif
126
+ #
127
+ # #ifdef S_IXOTH
128
+ # NODE_DEFINE_CONSTANT(target, S_IXOTH);
129
+ # #endif
130
+ #
131
+ # #ifdef E2BIG
132
+ # NODE_DEFINE_CONSTANT(target, E2BIG);
133
+ # #endif
134
+ #
135
+ # #ifdef EACCES
136
+ # NODE_DEFINE_CONSTANT(target, EACCES);
137
+ # #endif
138
+ #
139
+ # #ifdef EADDRINUSE
140
+ # NODE_DEFINE_CONSTANT(target, EADDRINUSE);
141
+ # #endif
142
+ #
143
+ # #ifdef EADDRNOTAVAIL
144
+ # NODE_DEFINE_CONSTANT(target, EADDRNOTAVAIL);
145
+ # #endif
146
+ #
147
+ # #ifdef EAFNOSUPPORT
148
+ # NODE_DEFINE_CONSTANT(target, EAFNOSUPPORT);
149
+ # #endif
150
+ #
151
+ # #ifdef EAGAIN
152
+ # NODE_DEFINE_CONSTANT(target, EAGAIN);
153
+ # #endif
154
+ #
155
+ # #ifdef EALREADY
156
+ # NODE_DEFINE_CONSTANT(target, EALREADY);
157
+ # #endif
158
+ #
159
+ # #ifdef EBADF
160
+ # NODE_DEFINE_CONSTANT(target, EBADF);
161
+ # #endif
162
+ #
163
+ # #ifdef EBADMSG
164
+ # NODE_DEFINE_CONSTANT(target, EBADMSG);
165
+ # #endif
166
+ #
167
+ # #ifdef EBUSY
168
+ # NODE_DEFINE_CONSTANT(target, EBUSY);
169
+ # #endif
170
+ #
171
+ # #ifdef ECANCELED
172
+ # NODE_DEFINE_CONSTANT(target, ECANCELED);
173
+ # #endif
174
+ #
175
+ # #ifdef ECHILD
176
+ # NODE_DEFINE_CONSTANT(target, ECHILD);
177
+ # #endif
178
+ #
179
+ # #ifdef ECONNABORTED
180
+ # NODE_DEFINE_CONSTANT(target, ECONNABORTED);
181
+ # #endif
182
+ #
183
+ # #ifdef ECONNREFUSED
184
+ # NODE_DEFINE_CONSTANT(target, ECONNREFUSED);
185
+ # #endif
186
+ #
187
+ # #ifdef ECONNRESET
188
+ # NODE_DEFINE_CONSTANT(target, ECONNRESET);
189
+ # #endif
190
+ #
191
+ # #ifdef EDEADLK
192
+ # NODE_DEFINE_CONSTANT(target, EDEADLK);
193
+ # #endif
194
+ #
195
+ # #ifdef EDESTADDRREQ
196
+ # NODE_DEFINE_CONSTANT(target, EDESTADDRREQ);
197
+ # #endif
198
+ #
199
+ # #ifdef EDOM
200
+ # NODE_DEFINE_CONSTANT(target, EDOM);
201
+ # #endif
202
+ #
203
+ # #ifdef EDQUOT
204
+ # NODE_DEFINE_CONSTANT(target, EDQUOT);
205
+ # #endif
206
+ #
207
+ # #ifdef EEXIST
208
+ # NODE_DEFINE_CONSTANT(target, EEXIST);
209
+ # #endif
210
+ #
211
+ # #ifdef EFAULT
212
+ # NODE_DEFINE_CONSTANT(target, EFAULT);
213
+ # #endif
214
+ #
215
+ # #ifdef EFBIG
216
+ # NODE_DEFINE_CONSTANT(target, EFBIG);
217
+ # #endif
218
+ #
219
+ # #ifdef EHOSTUNREACH
220
+ # NODE_DEFINE_CONSTANT(target, EHOSTUNREACH);
221
+ # #endif
222
+ #
223
+ # #ifdef EIDRM
224
+ # NODE_DEFINE_CONSTANT(target, EIDRM);
225
+ # #endif
226
+ #
227
+ # #ifdef EILSEQ
228
+ # NODE_DEFINE_CONSTANT(target, EILSEQ);
229
+ # #endif
230
+ #
231
+ # #ifdef EINPROGRESS
232
+ # NODE_DEFINE_CONSTANT(target, EINPROGRESS);
233
+ # #endif
234
+ #
235
+ # #ifdef EINTR
236
+ # NODE_DEFINE_CONSTANT(target, EINTR);
237
+ # #endif
238
+ #
239
+ # #ifdef EINVAL
240
+ # NODE_DEFINE_CONSTANT(target, EINVAL);
241
+ # #endif
242
+ #
243
+ # #ifdef EIO
244
+ # NODE_DEFINE_CONSTANT(target, EIO);
245
+ # #endif
246
+ #
247
+ # #ifdef EISCONN
248
+ # NODE_DEFINE_CONSTANT(target, EISCONN);
249
+ # #endif
250
+ #
251
+ # #ifdef EISDIR
252
+ # NODE_DEFINE_CONSTANT(target, EISDIR);
253
+ # #endif
254
+ #
255
+ # #ifdef ELOOP
256
+ # NODE_DEFINE_CONSTANT(target, ELOOP);
257
+ # #endif
258
+ #
259
+ # #ifdef EMFILE
260
+ # NODE_DEFINE_CONSTANT(target, EMFILE);
261
+ # #endif
262
+ #
263
+ # #ifdef EMLINK
264
+ # NODE_DEFINE_CONSTANT(target, EMLINK);
265
+ # #endif
266
+ #
267
+ # #ifdef EMSGSIZE
268
+ # NODE_DEFINE_CONSTANT(target, EMSGSIZE);
269
+ # #endif
270
+ #
271
+ # #ifdef EMULTIHOP
272
+ # NODE_DEFINE_CONSTANT(target, EMULTIHOP);
273
+ # #endif
274
+ #
275
+ # #ifdef ENAMETOOLONG
276
+ # NODE_DEFINE_CONSTANT(target, ENAMETOOLONG);
277
+ # #endif
278
+ #
279
+ # #ifdef ENETDOWN
280
+ # NODE_DEFINE_CONSTANT(target, ENETDOWN);
281
+ # #endif
282
+ #
283
+ # #ifdef ENETRESET
284
+ # NODE_DEFINE_CONSTANT(target, ENETRESET);
285
+ # #endif
286
+ #
287
+ # #ifdef ENETUNREACH
288
+ # NODE_DEFINE_CONSTANT(target, ENETUNREACH);
289
+ # #endif
290
+ #
291
+ # #ifdef ENFILE
292
+ # NODE_DEFINE_CONSTANT(target, ENFILE);
293
+ # #endif
294
+ #
295
+ # #ifdef ENOBUFS
296
+ # NODE_DEFINE_CONSTANT(target, ENOBUFS);
297
+ # #endif
298
+ #
299
+ # #ifdef ENODATA
300
+ # NODE_DEFINE_CONSTANT(target, ENODATA);
301
+ # #endif
302
+ #
303
+ # #ifdef ENODEV
304
+ # NODE_DEFINE_CONSTANT(target, ENODEV);
305
+ # #endif
306
+ #
307
+ # #ifdef ENOENT
308
+ # NODE_DEFINE_CONSTANT(target, ENOENT);
309
+ # #endif
310
+ #
311
+ # #ifdef ENOEXEC
312
+ # NODE_DEFINE_CONSTANT(target, ENOEXEC);
313
+ # #endif
314
+ #
315
+ # #ifdef ENOLCK
316
+ # NODE_DEFINE_CONSTANT(target, ENOLCK);
317
+ # #endif
318
+ #
319
+ # #ifdef ENOLINK
320
+ # NODE_DEFINE_CONSTANT(target, ENOLINK);
321
+ # #endif
322
+ #
323
+ # #ifdef ENOMEM
324
+ # NODE_DEFINE_CONSTANT(target, ENOMEM);
325
+ # #endif
326
+ #
327
+ # #ifdef ENOMSG
328
+ # NODE_DEFINE_CONSTANT(target, ENOMSG);
329
+ # #endif
330
+ #
331
+ # #ifdef ENOPROTOOPT
332
+ # NODE_DEFINE_CONSTANT(target, ENOPROTOOPT);
333
+ # #endif
334
+ #
335
+ # #ifdef ENOSPC
336
+ # NODE_DEFINE_CONSTANT(target, ENOSPC);
337
+ # #endif
338
+ #
339
+ # #ifdef ENOSR
340
+ # NODE_DEFINE_CONSTANT(target, ENOSR);
341
+ # #endif
342
+ #
343
+ # #ifdef ENOSTR
344
+ # NODE_DEFINE_CONSTANT(target, ENOSTR);
345
+ # #endif
346
+ #
347
+ # #ifdef ENOSYS
348
+ # NODE_DEFINE_CONSTANT(target, ENOSYS);
349
+ # #endif
350
+ #
351
+ # #ifdef ENOTCONN
352
+ # NODE_DEFINE_CONSTANT(target, ENOTCONN);
353
+ # #endif
354
+ #
355
+ # #ifdef ENOTDIR
356
+ # NODE_DEFINE_CONSTANT(target, ENOTDIR);
357
+ # #endif
358
+ #
359
+ # #ifdef ENOTEMPTY
360
+ # NODE_DEFINE_CONSTANT(target, ENOTEMPTY);
361
+ # #endif
362
+ #
363
+ # #ifdef ENOTSOCK
364
+ # NODE_DEFINE_CONSTANT(target, ENOTSOCK);
365
+ # #endif
366
+ #
367
+ # #ifdef ENOTSUP
368
+ # NODE_DEFINE_CONSTANT(target, ENOTSUP);
369
+ # #endif
370
+ #
371
+ # #ifdef ENOTTY
372
+ # NODE_DEFINE_CONSTANT(target, ENOTTY);
373
+ # #endif
374
+ #
375
+ # #ifdef ENXIO
376
+ # NODE_DEFINE_CONSTANT(target, ENXIO);
377
+ # #endif
378
+ #
379
+ # #ifdef EOPNOTSUPP
380
+ # NODE_DEFINE_CONSTANT(target, EOPNOTSUPP);
381
+ # #endif
382
+ #
383
+ # #ifdef EOVERFLOW
384
+ # NODE_DEFINE_CONSTANT(target, EOVERFLOW);
385
+ # #endif
386
+ #
387
+ # #ifdef EPERM
388
+ # NODE_DEFINE_CONSTANT(target, EPERM);
389
+ # #endif
390
+ #
391
+ # #ifdef EPIPE
392
+ # NODE_DEFINE_CONSTANT(target, EPIPE);
393
+ # #endif
394
+ #
395
+ # #ifdef EPROTO
396
+ # NODE_DEFINE_CONSTANT(target, EPROTO);
397
+ # #endif
398
+ #
399
+ # #ifdef EPROTONOSUPPORT
400
+ # NODE_DEFINE_CONSTANT(target, EPROTONOSUPPORT);
401
+ # #endif
402
+ #
403
+ # #ifdef EPROTOTYPE
404
+ # NODE_DEFINE_CONSTANT(target, EPROTOTYPE);
405
+ # #endif
406
+ #
407
+ # #ifdef ERANGE
408
+ # NODE_DEFINE_CONSTANT(target, ERANGE);
409
+ # #endif
410
+ #
411
+ # #ifdef EROFS
412
+ # NODE_DEFINE_CONSTANT(target, EROFS);
413
+ # #endif
414
+ #
415
+ # #ifdef ESPIPE
416
+ # NODE_DEFINE_CONSTANT(target, ESPIPE);
417
+ # #endif
418
+ #
419
+ # #ifdef ESRCH
420
+ # NODE_DEFINE_CONSTANT(target, ESRCH);
421
+ # #endif
422
+ #
423
+ # #ifdef ESTALE
424
+ # NODE_DEFINE_CONSTANT(target, ESTALE);
425
+ # #endif
426
+ #
427
+ # #ifdef ETIME
428
+ # NODE_DEFINE_CONSTANT(target, ETIME);
429
+ # #endif
430
+ #
431
+ # #ifdef ETIMEDOUT
432
+ # NODE_DEFINE_CONSTANT(target, ETIMEDOUT);
433
+ # #endif
434
+ #
435
+ # #ifdef ETXTBSY
436
+ # NODE_DEFINE_CONSTANT(target, ETXTBSY);
437
+ # #endif
438
+ #
439
+ # #ifdef EWOULDBLOCK
440
+ # NODE_DEFINE_CONSTANT(target, EWOULDBLOCK);
441
+ # #endif
442
+ #
443
+ # #ifdef EXDEV
444
+ # NODE_DEFINE_CONSTANT(target, EXDEV);
445
+ # #endif
446
+ #
447
+ # #ifdef SIGHUP
448
+ # NODE_DEFINE_CONSTANT(target, SIGHUP);
449
+ # #endif
450
+ #
451
+ # #ifdef SIGINT
452
+ # NODE_DEFINE_CONSTANT(target, SIGINT);
453
+ # #endif
454
+ #
455
+ # #ifdef SIGQUIT
456
+ # NODE_DEFINE_CONSTANT(target, SIGQUIT);
457
+ # #endif
458
+ #
459
+ # #ifdef SIGILL
460
+ # NODE_DEFINE_CONSTANT(target, SIGILL);
461
+ # #endif
462
+ #
463
+ # #ifdef SIGTRAP
464
+ # NODE_DEFINE_CONSTANT(target, SIGTRAP);
465
+ # #endif
466
+ #
467
+ # #ifdef SIGABRT
468
+ # NODE_DEFINE_CONSTANT(target, SIGABRT);
469
+ # #endif
470
+ #
471
+ # #ifdef SIGIOT
472
+ # NODE_DEFINE_CONSTANT(target, SIGIOT);
473
+ # #endif
474
+ #
475
+ # #ifdef SIGBUS
476
+ # NODE_DEFINE_CONSTANT(target, SIGBUS);
477
+ # #endif
478
+ #
479
+ # #ifdef SIGFPE
480
+ # NODE_DEFINE_CONSTANT(target, SIGFPE);
481
+ # #endif
482
+ #
483
+ # #ifdef SIGKILL
484
+ # NODE_DEFINE_CONSTANT(target, SIGKILL);
485
+ # #endif
486
+ #
487
+ # #ifdef SIGUSR1
488
+ # NODE_DEFINE_CONSTANT(target, SIGUSR1);
489
+ # #endif
490
+ #
491
+ # #ifdef SIGSEGV
492
+ # NODE_DEFINE_CONSTANT(target, SIGSEGV);
493
+ # #endif
494
+ #
495
+ # #ifdef SIGUSR2
496
+ # NODE_DEFINE_CONSTANT(target, SIGUSR2);
497
+ # #endif
498
+ #
499
+ # #ifdef SIGPIPE
500
+ # NODE_DEFINE_CONSTANT(target, SIGPIPE);
501
+ # #endif
502
+ #
503
+ # #ifdef SIGALRM
504
+ # NODE_DEFINE_CONSTANT(target, SIGALRM);
505
+ # #endif
506
+ #
507
+ # NODE_DEFINE_CONSTANT(target, SIGTERM);
508
+ # NODE_DEFINE_CONSTANT(target, SIGCHLD);
509
+ #
510
+ # #ifdef SIGSTKFLT
511
+ # NODE_DEFINE_CONSTANT(target, SIGSTKFLT);
512
+ # #endif
513
+ #
514
+ #
515
+ # #ifdef SIGCONT
516
+ # NODE_DEFINE_CONSTANT(target, SIGCONT);
517
+ # #endif
518
+ #
519
+ # #ifdef SIGSTOP
520
+ # NODE_DEFINE_CONSTANT(target, SIGSTOP);
521
+ # #endif
522
+ #
523
+ # #ifdef SIGTSTP
524
+ # NODE_DEFINE_CONSTANT(target, SIGTSTP);
525
+ # #endif
526
+ #
527
+ # #ifdef SIGTTIN
528
+ # NODE_DEFINE_CONSTANT(target, SIGTTIN);
529
+ # #endif
530
+ #
531
+ # #ifdef SIGTTOU
532
+ # NODE_DEFINE_CONSTANT(target, SIGTTOU);
533
+ # #endif
534
+ #
535
+ # #ifdef SIGURG
536
+ # NODE_DEFINE_CONSTANT(target, SIGURG);
537
+ # #endif
538
+ #
539
+ # #ifdef SIGXCPU
540
+ # NODE_DEFINE_CONSTANT(target, SIGXCPU);
541
+ # #endif
542
+ #
543
+ # #ifdef SIGXFSZ
544
+ # NODE_DEFINE_CONSTANT(target, SIGXFSZ);
545
+ # #endif
546
+ #
547
+ # #ifdef SIGVTALRM
548
+ # NODE_DEFINE_CONSTANT(target, SIGVTALRM);
549
+ # #endif
550
+ #
551
+ # #ifdef SIGPROF
552
+ # NODE_DEFINE_CONSTANT(target, SIGPROF);
553
+ # #endif
554
+ #
555
+ # #ifdef SIGWINCH
556
+ # NODE_DEFINE_CONSTANT(target, SIGWINCH);
557
+ # #endif
558
+ #
559
+ # #ifdef SIGIO
560
+ # NODE_DEFINE_CONSTANT(target, SIGIO);
561
+ # #endif
562
+ #
563
+ # #ifdef SIGPOLL
564
+ # NODE_DEFINE_CONSTANT(target, SIGPOLL);
565
+ # #endif
566
+ #
567
+ # #ifdef SIGLOST
568
+ # NODE_DEFINE_CONSTANT(target, SIGLOST);
569
+ # #endif
570
+ #
571
+ # #ifdef SIGPWR
572
+ # NODE_DEFINE_CONSTANT(target, SIGPWR);
573
+ # #endif
574
+ #
575
+ # #ifdef SIGSYS
576
+ # NODE_DEFINE_CONSTANT(target, SIGSYS);
577
+ # #endif
578
+ #
579
+ # #ifdef SIGUNUSED
580
+ # NODE_DEFINE_CONSTANT(target, SIGUNUSED);
581
+ # #endif
582
+ end
583
+ end
584
+
585
+ Spade.exports = Ivory::Constants