haml_ejs 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. data/.yardopts +11 -0
  2. data/CONTRIBUTING +3 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.md +68 -0
  5. data/Rakefile +419 -0
  6. data/VERSION +1 -0
  7. data/VERSION_NAME +1 -0
  8. data/bin/haml +9 -0
  9. data/bin/html2haml +7 -0
  10. data/extra/update_watch.rb +13 -0
  11. data/init.rb +18 -0
  12. data/lib/haml.rb +49 -0
  13. data/lib/haml/buffer.rb +297 -0
  14. data/lib/haml/compiler.rb +486 -0
  15. data/lib/haml/engine.rb +312 -0
  16. data/lib/haml/error.rb +22 -0
  17. data/lib/haml/exec.rb +362 -0
  18. data/lib/haml/filters.rb +388 -0
  19. data/lib/haml/haml_ejs.rb +57 -0
  20. data/lib/haml/helpers.rb +608 -0
  21. data/lib/haml/helpers/action_view_extensions.rb +57 -0
  22. data/lib/haml/helpers/action_view_mods.rb +257 -0
  23. data/lib/haml/helpers/xss_mods.rb +165 -0
  24. data/lib/haml/html.rb +412 -0
  25. data/lib/haml/html/erb.rb +141 -0
  26. data/lib/haml/parser.rb +760 -0
  27. data/lib/haml/railtie.rb +19 -0
  28. data/lib/haml/root.rb +7 -0
  29. data/lib/haml/shared.rb +78 -0
  30. data/lib/haml/template.rb +99 -0
  31. data/lib/haml/template/options.rb +16 -0
  32. data/lib/haml/template/patch.rb +58 -0
  33. data/lib/haml/template/plugin.rb +123 -0
  34. data/lib/haml/util.rb +842 -0
  35. data/lib/haml/version.rb +109 -0
  36. data/lib/sass.rb +8 -0
  37. data/lib/sass/plugin.rb +10 -0
  38. data/lib/sass/rails2_shim.rb +9 -0
  39. data/lib/sass/rails3_shim.rb +16 -0
  40. data/rails/init.rb +1 -0
  41. data/test/benchmark.rb +91 -0
  42. data/test/gemfiles/Gemfile.rails-2.0.x +8 -0
  43. data/test/gemfiles/Gemfile.rails-2.0.x.lock +38 -0
  44. data/test/gemfiles/Gemfile.rails-2.1.x +8 -0
  45. data/test/gemfiles/Gemfile.rails-2.1.x.lock +38 -0
  46. data/test/gemfiles/Gemfile.rails-2.2.x +8 -0
  47. data/test/gemfiles/Gemfile.rails-2.2.x.lock +38 -0
  48. data/test/gemfiles/Gemfile.rails-2.3.x +8 -0
  49. data/test/gemfiles/Gemfile.rails-2.3.x.lock +40 -0
  50. data/test/gemfiles/Gemfile.rails-3.0.x +8 -0
  51. data/test/gemfiles/Gemfile.rails-3.0.x.lock +85 -0
  52. data/test/gemfiles/Gemfile.rails-3.1.x +8 -0
  53. data/test/gemfiles/Gemfile.rails-3.1.x.lock +98 -0
  54. data/test/gemfiles/Gemfile.rails-xss-2.3.x +9 -0
  55. data/test/gemfiles/Gemfile.rails-xss-2.3.x.lock +42 -0
  56. data/test/haml-ejs/haml-ejs_test.rb +22 -0
  57. data/test/haml-ejs/templates/conditional.input +3 -0
  58. data/test/haml-ejs/templates/conditional.output +3 -0
  59. data/test/haml-ejs/templates/conditional_and_interpolation.input +2 -0
  60. data/test/haml-ejs/templates/conditional_and_interpolation.output +3 -0
  61. data/test/haml-ejs/templates/conditional_else.input +5 -0
  62. data/test/haml-ejs/templates/conditional_else.output +5 -0
  63. data/test/haml-ejs/templates/conditional_else_elsif.input +7 -0
  64. data/test/haml-ejs/templates/conditional_else_elsif.output +7 -0
  65. data/test/haml-ejs/templates/conditional_elsif.input +5 -0
  66. data/test/haml-ejs/templates/conditional_elsif.output +5 -0
  67. data/test/haml-ejs/templates/conditional_unless.input +3 -0
  68. data/test/haml-ejs/templates/conditional_unless.output +3 -0
  69. data/test/haml-ejs/templates/conditional_unless_else.input +5 -0
  70. data/test/haml-ejs/templates/conditional_unless_else.output +5 -0
  71. data/test/haml-ejs/templates/conditional_unless_elsif_else.input +5 -0
  72. data/test/haml-ejs/templates/conditional_unless_elsif_else.output +5 -0
  73. data/test/haml-ejs/templates/interpolation.input +2 -0
  74. data/test/haml-ejs/templates/interpolation.output +1 -0
  75. data/test/haml-ejs/templates/iteration.input +2 -0
  76. data/test/haml-ejs/templates/iteration.output +3 -0
  77. data/test/haml-ejs/templates/suite.input +26 -0
  78. data/test/haml-ejs/templates/suite.output +27 -0
  79. data/test/haml/engine_test.rb +1925 -0
  80. data/test/haml/erb/_av_partial_1.erb +12 -0
  81. data/test/haml/erb/_av_partial_2.erb +8 -0
  82. data/test/haml/erb/action_view.erb +62 -0
  83. data/test/haml/erb/standard.erb +55 -0
  84. data/test/haml/helper_test.rb +454 -0
  85. data/test/haml/html2haml/erb_tests.rb +440 -0
  86. data/test/haml/html2haml_test.rb +336 -0
  87. data/test/haml/markaby/standard.mab +52 -0
  88. data/test/haml/mocks/article.rb +6 -0
  89. data/test/haml/results/content_for_layout.xhtml +12 -0
  90. data/test/haml/results/eval_suppressed.xhtml +9 -0
  91. data/test/haml/results/filters.xhtml +62 -0
  92. data/test/haml/results/helpers.xhtml +70 -0
  93. data/test/haml/results/helpful.xhtml +10 -0
  94. data/test/haml/results/just_stuff.xhtml +70 -0
  95. data/test/haml/results/list.xhtml +12 -0
  96. data/test/haml/results/nuke_inner_whitespace.xhtml +40 -0
  97. data/test/haml/results/nuke_outer_whitespace.xhtml +148 -0
  98. data/test/haml/results/original_engine.xhtml +20 -0
  99. data/test/haml/results/partial_layout.xhtml +5 -0
  100. data/test/haml/results/partials.xhtml +21 -0
  101. data/test/haml/results/render_layout.xhtml +3 -0
  102. data/test/haml/results/silent_script.xhtml +74 -0
  103. data/test/haml/results/standard.xhtml +162 -0
  104. data/test/haml/results/tag_parsing.xhtml +23 -0
  105. data/test/haml/results/very_basic.xhtml +5 -0
  106. data/test/haml/results/whitespace_handling.xhtml +89 -0
  107. data/test/haml/spec/README.md +97 -0
  108. data/test/haml/spec/lua_haml_spec.lua +30 -0
  109. data/test/haml/spec/ruby_haml_test.rb +19 -0
  110. data/test/haml/spec/tests.json +534 -0
  111. data/test/haml/spec_test.rb +44 -0
  112. data/test/haml/template_test.rb +419 -0
  113. data/test/haml/templates/_av_partial_1.haml +9 -0
  114. data/test/haml/templates/_av_partial_1_ugly.haml +9 -0
  115. data/test/haml/templates/_av_partial_2.haml +5 -0
  116. data/test/haml/templates/_av_partial_2_ugly.haml +5 -0
  117. data/test/haml/templates/_layout.erb +3 -0
  118. data/test/haml/templates/_layout_for_partial.haml +3 -0
  119. data/test/haml/templates/_partial.haml +8 -0
  120. data/test/haml/templates/_text_area.haml +3 -0
  121. data/test/haml/templates/action_view.haml +47 -0
  122. data/test/haml/templates/action_view_ugly.haml +47 -0
  123. data/test/haml/templates/breakage.haml +8 -0
  124. data/test/haml/templates/content_for_layout.haml +8 -0
  125. data/test/haml/templates/eval_suppressed.haml +11 -0
  126. data/test/haml/templates/filters.haml +66 -0
  127. data/test/haml/templates/helpers.haml +55 -0
  128. data/test/haml/templates/helpful.haml +11 -0
  129. data/test/haml/templates/just_stuff.haml +85 -0
  130. data/test/haml/templates/list.haml +12 -0
  131. data/test/haml/templates/nuke_inner_whitespace.haml +32 -0
  132. data/test/haml/templates/nuke_outer_whitespace.haml +144 -0
  133. data/test/haml/templates/original_engine.haml +17 -0
  134. data/test/haml/templates/partial_layout.haml +10 -0
  135. data/test/haml/templates/partialize.haml +1 -0
  136. data/test/haml/templates/partials.haml +12 -0
  137. data/test/haml/templates/render_layout.haml +2 -0
  138. data/test/haml/templates/silent_script.haml +40 -0
  139. data/test/haml/templates/standard.haml +43 -0
  140. data/test/haml/templates/standard_ugly.haml +43 -0
  141. data/test/haml/templates/tag_parsing.haml +21 -0
  142. data/test/haml/templates/very_basic.haml +4 -0
  143. data/test/haml/templates/whitespace_handling.haml +87 -0
  144. data/test/haml/util_test.rb +300 -0
  145. data/test/linked_rails.rb +42 -0
  146. data/test/test_helper.rb +75 -0
  147. data/vendor/sass/CONTRIBUTING +3 -0
  148. data/vendor/sass/MIT-LICENSE +20 -0
  149. data/vendor/sass/README.md +201 -0
  150. data/vendor/sass/Rakefile +339 -0
  151. data/vendor/sass/TODO +39 -0
  152. data/vendor/sass/VERSION +1 -0
  153. data/vendor/sass/VERSION_NAME +1 -0
  154. data/vendor/sass/bin/sass +8 -0
  155. data/vendor/sass/bin/sass-convert +7 -0
  156. data/vendor/sass/bin/scss +8 -0
  157. data/vendor/sass/doc-src/FAQ.md +35 -0
  158. data/vendor/sass/doc-src/INDENTED_SYNTAX.md +210 -0
  159. data/vendor/sass/doc-src/SASS_CHANGELOG.md +2214 -0
  160. data/vendor/sass/doc-src/SASS_REFERENCE.md +1957 -0
  161. data/vendor/sass/doc-src/SCSS_FOR_SASS_USERS.md +155 -0
  162. data/vendor/sass/ext/extconf.rb +10 -0
  163. data/vendor/sass/extra/update_watch.rb +13 -0
  164. data/vendor/sass/init.rb +18 -0
  165. data/vendor/sass/lib/sass.rb +72 -0
  166. data/vendor/sass/lib/sass/cache_stores.rb +15 -0
  167. data/vendor/sass/lib/sass/cache_stores/base.rb +84 -0
  168. data/vendor/sass/lib/sass/cache_stores/chain.rb +33 -0
  169. data/vendor/sass/lib/sass/cache_stores/filesystem.rb +58 -0
  170. data/vendor/sass/lib/sass/cache_stores/memory.rb +47 -0
  171. data/vendor/sass/lib/sass/cache_stores/null.rb +25 -0
  172. data/vendor/sass/lib/sass/callbacks.rb +66 -0
  173. data/vendor/sass/lib/sass/css.rb +294 -0
  174. data/vendor/sass/lib/sass/engine.rb +862 -0
  175. data/vendor/sass/lib/sass/environment.rb +155 -0
  176. data/vendor/sass/lib/sass/error.rb +201 -0
  177. data/vendor/sass/lib/sass/exec.rb +659 -0
  178. data/vendor/sass/lib/sass/importers.rb +22 -0
  179. data/vendor/sass/lib/sass/importers/base.rb +138 -0
  180. data/vendor/sass/lib/sass/importers/filesystem.rb +144 -0
  181. data/vendor/sass/lib/sass/less.rb +382 -0
  182. data/vendor/sass/lib/sass/plugin.rb +136 -0
  183. data/vendor/sass/lib/sass/plugin/compiler.rb +358 -0
  184. data/vendor/sass/lib/sass/plugin/configuration.rb +125 -0
  185. data/vendor/sass/lib/sass/plugin/generic.rb +15 -0
  186. data/vendor/sass/lib/sass/plugin/merb.rb +48 -0
  187. data/vendor/sass/lib/sass/plugin/rack.rb +60 -0
  188. data/vendor/sass/lib/sass/plugin/rails.rb +47 -0
  189. data/vendor/sass/lib/sass/plugin/staleness_checker.rb +173 -0
  190. data/vendor/sass/lib/sass/railtie.rb +9 -0
  191. data/vendor/sass/lib/sass/repl.rb +58 -0
  192. data/vendor/sass/lib/sass/root.rb +7 -0
  193. data/vendor/sass/lib/sass/script.rb +40 -0
  194. data/vendor/sass/lib/sass/script/bool.rb +18 -0
  195. data/vendor/sass/lib/sass/script/color.rb +480 -0
  196. data/vendor/sass/lib/sass/script/css_lexer.rb +29 -0
  197. data/vendor/sass/lib/sass/script/css_parser.rb +31 -0
  198. data/vendor/sass/lib/sass/script/funcall.rb +162 -0
  199. data/vendor/sass/lib/sass/script/functions.rb +1343 -0
  200. data/vendor/sass/lib/sass/script/interpolation.rb +70 -0
  201. data/vendor/sass/lib/sass/script/lexer.rb +334 -0
  202. data/vendor/sass/lib/sass/script/list.rb +76 -0
  203. data/vendor/sass/lib/sass/script/literal.rb +245 -0
  204. data/vendor/sass/lib/sass/script/node.rb +91 -0
  205. data/vendor/sass/lib/sass/script/number.rb +429 -0
  206. data/vendor/sass/lib/sass/script/operation.rb +91 -0
  207. data/vendor/sass/lib/sass/script/parser.rb +467 -0
  208. data/vendor/sass/lib/sass/script/string.rb +51 -0
  209. data/vendor/sass/lib/sass/script/string_interpolation.rb +94 -0
  210. data/vendor/sass/lib/sass/script/unary_operation.rb +57 -0
  211. data/vendor/sass/lib/sass/script/variable.rb +54 -0
  212. data/vendor/sass/lib/sass/scss.rb +17 -0
  213. data/vendor/sass/lib/sass/scss/css_parser.rb +46 -0
  214. data/vendor/sass/lib/sass/scss/parser.rb +920 -0
  215. data/vendor/sass/lib/sass/scss/rx.rb +127 -0
  216. data/vendor/sass/lib/sass/scss/sass_parser.rb +11 -0
  217. data/vendor/sass/lib/sass/scss/script_lexer.rb +15 -0
  218. data/vendor/sass/lib/sass/scss/script_parser.rb +25 -0
  219. data/vendor/sass/lib/sass/scss/static_parser.rb +40 -0
  220. data/vendor/sass/lib/sass/selector.rb +361 -0
  221. data/vendor/sass/lib/sass/selector/abstract_sequence.rb +62 -0
  222. data/vendor/sass/lib/sass/selector/comma_sequence.rb +81 -0
  223. data/vendor/sass/lib/sass/selector/sequence.rb +233 -0
  224. data/vendor/sass/lib/sass/selector/simple.rb +113 -0
  225. data/vendor/sass/lib/sass/selector/simple_sequence.rb +134 -0
  226. data/vendor/sass/lib/sass/shared.rb +78 -0
  227. data/vendor/sass/lib/sass/tree/charset_node.rb +22 -0
  228. data/vendor/sass/lib/sass/tree/comment_node.rb +77 -0
  229. data/vendor/sass/lib/sass/tree/debug_node.rb +18 -0
  230. data/vendor/sass/lib/sass/tree/directive_node.rb +23 -0
  231. data/vendor/sass/lib/sass/tree/each_node.rb +24 -0
  232. data/vendor/sass/lib/sass/tree/extend_node.rb +29 -0
  233. data/vendor/sass/lib/sass/tree/for_node.rb +36 -0
  234. data/vendor/sass/lib/sass/tree/function_node.rb +27 -0
  235. data/vendor/sass/lib/sass/tree/if_node.rb +65 -0
  236. data/vendor/sass/lib/sass/tree/import_node.rb +68 -0
  237. data/vendor/sass/lib/sass/tree/media_node.rb +32 -0
  238. data/vendor/sass/lib/sass/tree/mixin_def_node.rb +27 -0
  239. data/vendor/sass/lib/sass/tree/mixin_node.rb +32 -0
  240. data/vendor/sass/lib/sass/tree/node.rb +204 -0
  241. data/vendor/sass/lib/sass/tree/prop_node.rb +155 -0
  242. data/vendor/sass/lib/sass/tree/return_node.rb +18 -0
  243. data/vendor/sass/lib/sass/tree/root_node.rb +28 -0
  244. data/vendor/sass/lib/sass/tree/rule_node.rb +129 -0
  245. data/vendor/sass/lib/sass/tree/variable_node.rb +30 -0
  246. data/vendor/sass/lib/sass/tree/visitors/base.rb +75 -0
  247. data/vendor/sass/lib/sass/tree/visitors/check_nesting.rb +134 -0
  248. data/vendor/sass/lib/sass/tree/visitors/convert.rb +255 -0
  249. data/vendor/sass/lib/sass/tree/visitors/cssize.rb +175 -0
  250. data/vendor/sass/lib/sass/tree/visitors/perform.rb +301 -0
  251. data/vendor/sass/lib/sass/tree/visitors/to_css.rb +216 -0
  252. data/vendor/sass/lib/sass/tree/warn_node.rb +18 -0
  253. data/vendor/sass/lib/sass/tree/while_node.rb +18 -0
  254. data/vendor/sass/lib/sass/util.rb +669 -0
  255. data/vendor/sass/lib/sass/util/subset_map.rb +101 -0
  256. data/vendor/sass/lib/sass/version.rb +112 -0
  257. data/vendor/sass/rails/init.rb +1 -0
  258. data/vendor/sass/sass.gemspec +32 -0
  259. data/vendor/sass/test/sass/cache_test.rb +74 -0
  260. data/vendor/sass/test/sass/callbacks_test.rb +61 -0
  261. data/vendor/sass/test/sass/conversion_test.rb +1203 -0
  262. data/vendor/sass/test/sass/css2sass_test.rb +364 -0
  263. data/vendor/sass/test/sass/data/hsl-rgb.txt +319 -0
  264. data/vendor/sass/test/sass/engine_test.rb +2469 -0
  265. data/vendor/sass/test/sass/extend_test.rb +1348 -0
  266. data/vendor/sass/test/sass/functions_test.rb +1025 -0
  267. data/vendor/sass/test/sass/importer_test.rb +82 -0
  268. data/vendor/sass/test/sass/less_conversion_test.rb +653 -0
  269. data/vendor/sass/test/sass/mock_importer.rb +49 -0
  270. data/vendor/sass/test/sass/more_results/more1.css +9 -0
  271. data/vendor/sass/test/sass/more_results/more1_with_line_comments.css +26 -0
  272. data/vendor/sass/test/sass/more_results/more_import.css +29 -0
  273. data/vendor/sass/test/sass/more_templates/_more_partial.sass +2 -0
  274. data/vendor/sass/test/sass/more_templates/more1.sass +23 -0
  275. data/vendor/sass/test/sass/more_templates/more_import.sass +11 -0
  276. data/vendor/sass/test/sass/plugin_test.rb +469 -0
  277. data/vendor/sass/test/sass/results/alt.css +4 -0
  278. data/vendor/sass/test/sass/results/basic.css +9 -0
  279. data/vendor/sass/test/sass/results/compact.css +5 -0
  280. data/vendor/sass/test/sass/results/complex.css +86 -0
  281. data/vendor/sass/test/sass/results/compressed.css +1 -0
  282. data/vendor/sass/test/sass/results/expanded.css +19 -0
  283. data/vendor/sass/test/sass/results/if.css +3 -0
  284. data/vendor/sass/test/sass/results/import.css +31 -0
  285. data/vendor/sass/test/sass/results/import_charset.css +4 -0
  286. data/vendor/sass/test/sass/results/import_charset_1_8.css +4 -0
  287. data/vendor/sass/test/sass/results/import_charset_ibm866.css +4 -0
  288. data/vendor/sass/test/sass/results/line_numbers.css +49 -0
  289. data/vendor/sass/test/sass/results/mixins.css +95 -0
  290. data/vendor/sass/test/sass/results/multiline.css +24 -0
  291. data/vendor/sass/test/sass/results/nested.css +22 -0
  292. data/vendor/sass/test/sass/results/options.css +1 -0
  293. data/vendor/sass/test/sass/results/parent_ref.css +13 -0
  294. data/vendor/sass/test/sass/results/script.css +16 -0
  295. data/vendor/sass/test/sass/results/scss_import.css +31 -0
  296. data/vendor/sass/test/sass/results/scss_importee.css +2 -0
  297. data/vendor/sass/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
  298. data/vendor/sass/test/sass/results/subdir/subdir.css +3 -0
  299. data/vendor/sass/test/sass/results/units.css +11 -0
  300. data/vendor/sass/test/sass/results/warn.css +0 -0
  301. data/vendor/sass/test/sass/results/warn_imported.css +0 -0
  302. data/vendor/sass/test/sass/script_conversion_test.rb +283 -0
  303. data/vendor/sass/test/sass/script_test.rb +496 -0
  304. data/vendor/sass/test/sass/scss/css_test.rb +916 -0
  305. data/vendor/sass/test/sass/scss/rx_test.rb +156 -0
  306. data/vendor/sass/test/sass/scss/scss_test.rb +1249 -0
  307. data/vendor/sass/test/sass/scss/test_helper.rb +37 -0
  308. data/vendor/sass/test/sass/templates/_imported_charset_ibm866.sass +4 -0
  309. data/vendor/sass/test/sass/templates/_imported_charset_utf8.sass +4 -0
  310. data/vendor/sass/test/sass/templates/_partial.sass +2 -0
  311. data/vendor/sass/test/sass/templates/alt.sass +16 -0
  312. data/vendor/sass/test/sass/templates/basic.sass +23 -0
  313. data/vendor/sass/test/sass/templates/bork1.sass +2 -0
  314. data/vendor/sass/test/sass/templates/bork2.sass +2 -0
  315. data/vendor/sass/test/sass/templates/bork3.sass +2 -0
  316. data/vendor/sass/test/sass/templates/bork4.sass +2 -0
  317. data/vendor/sass/test/sass/templates/compact.sass +17 -0
  318. data/vendor/sass/test/sass/templates/complex.sass +305 -0
  319. data/vendor/sass/test/sass/templates/compressed.sass +15 -0
  320. data/vendor/sass/test/sass/templates/expanded.sass +17 -0
  321. data/vendor/sass/test/sass/templates/if.sass +11 -0
  322. data/vendor/sass/test/sass/templates/import.sass +12 -0
  323. data/vendor/sass/test/sass/templates/import_charset.sass +7 -0
  324. data/vendor/sass/test/sass/templates/import_charset_1_8.sass +4 -0
  325. data/vendor/sass/test/sass/templates/import_charset_ibm866.sass +9 -0
  326. data/vendor/sass/test/sass/templates/importee.less +2 -0
  327. data/vendor/sass/test/sass/templates/importee.sass +19 -0
  328. data/vendor/sass/test/sass/templates/line_numbers.sass +13 -0
  329. data/vendor/sass/test/sass/templates/mixin_bork.sass +5 -0
  330. data/vendor/sass/test/sass/templates/mixins.sass +76 -0
  331. data/vendor/sass/test/sass/templates/multiline.sass +20 -0
  332. data/vendor/sass/test/sass/templates/nested.sass +25 -0
  333. data/vendor/sass/test/sass/templates/nested_bork1.sass +2 -0
  334. data/vendor/sass/test/sass/templates/nested_bork2.sass +2 -0
  335. data/vendor/sass/test/sass/templates/nested_bork3.sass +2 -0
  336. data/vendor/sass/test/sass/templates/nested_bork4.sass +2 -0
  337. data/vendor/sass/test/sass/templates/nested_import.sass +2 -0
  338. data/vendor/sass/test/sass/templates/nested_mixin_bork.sass +6 -0
  339. data/vendor/sass/test/sass/templates/options.sass +2 -0
  340. data/vendor/sass/test/sass/templates/parent_ref.sass +25 -0
  341. data/vendor/sass/test/sass/templates/script.sass +101 -0
  342. data/vendor/sass/test/sass/templates/scss_import.scss +11 -0
  343. data/vendor/sass/test/sass/templates/scss_importee.scss +1 -0
  344. data/vendor/sass/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +2 -0
  345. data/vendor/sass/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
  346. data/vendor/sass/test/sass/templates/subdir/subdir.sass +6 -0
  347. data/vendor/sass/test/sass/templates/units.sass +11 -0
  348. data/vendor/sass/test/sass/templates/warn.sass +3 -0
  349. data/vendor/sass/test/sass/templates/warn_imported.sass +4 -0
  350. data/vendor/sass/test/sass/test_helper.rb +8 -0
  351. data/vendor/sass/test/sass/util/subset_map_test.rb +91 -0
  352. data/vendor/sass/test/sass/util_test.rb +254 -0
  353. data/vendor/sass/test/test_helper.rb +69 -0
  354. data/vendor/sass/yard/callbacks.rb +29 -0
  355. data/vendor/sass/yard/default/fulldoc/html/css/common.sass +26 -0
  356. data/vendor/sass/yard/default/layout/html/footer.erb +12 -0
  357. data/vendor/sass/yard/inherited_hash.rb +41 -0
  358. metadata +458 -0
@@ -0,0 +1,9 @@
1
+ # Rails 3.0.0.beta.2+, < 3.1
2
+ if defined?(ActiveSupport) && Sass::Util.has?(:public_method, ActiveSupport, :on_load) &&
3
+ !Sass::Util.ap_geq?('3.1.0.beta')
4
+ require 'sass/plugin/configuration'
5
+ ActiveSupport.on_load(:before_initialize) do
6
+ require 'sass'
7
+ require 'sass/plugin'
8
+ end
9
+ end
@@ -0,0 +1,58 @@
1
+ require 'readline'
2
+
3
+ module Sass
4
+ # Runs a SassScript read-eval-print loop.
5
+ # It presents a prompt on the terminal,
6
+ # reads in SassScript expressions,
7
+ # evaluates them,
8
+ # and prints the result.
9
+ class Repl
10
+ # @param options [{Symbol => Object}] An options hash.
11
+ def initialize(options = {})
12
+ @options = options
13
+ end
14
+
15
+ # Starts the read-eval-print loop.
16
+ def run
17
+ environment = Environment.new
18
+ environment.set_var('important', Script::String.new('!important'))
19
+ @line = 0
20
+ loop do
21
+ @line += 1
22
+ unless text = Readline.readline('>> ')
23
+ puts
24
+ return
25
+ end
26
+
27
+ Readline::HISTORY << text
28
+ parse_input(environment, text)
29
+ end
30
+ end
31
+
32
+ private
33
+
34
+ def parse_input(environment, text)
35
+ case text
36
+ when Script::MATCH
37
+ name = $1
38
+ guarded = $3 == '||=' || $4
39
+ val = Script::Parser.parse($3, @line, text.size - $3.size)
40
+
41
+ unless guarded && environment.var(name)
42
+ environment.set_var(name, val.perform(environment))
43
+ end
44
+
45
+ p environment.var(name)
46
+ else
47
+ p Script::Parser.parse(text, @line, 0).perform(environment)
48
+ end
49
+ rescue Sass::SyntaxError => e
50
+ puts "SyntaxError: #{e.message}"
51
+ if @options[:trace]
52
+ e.backtrace.each do |e|
53
+ puts "\tfrom #{e}"
54
+ end
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,7 @@
1
+ module Sass
2
+ # The root directory of the Sass source tree.
3
+ # This may be overridden by the package manager
4
+ # if the lib directory is separated from the main source tree.
5
+ # @api public
6
+ ROOT_DIR = File.expand_path(File.join(__FILE__, "../../.."))
7
+ end
@@ -0,0 +1,40 @@
1
+ require 'strscan'
2
+ require 'sass/script/node'
3
+ require 'sass/script/variable'
4
+ require 'sass/script/funcall'
5
+ require 'sass/script/operation'
6
+ require 'sass/script/literal'
7
+ require 'sass/script/parser'
8
+
9
+ module Sass
10
+ # SassScript is code that's embedded in Sass documents
11
+ # to allow for property values to be computed from variables.
12
+ #
13
+ # This module contains code that handles the parsing and evaluation of SassScript.
14
+ module Script
15
+ # The regular expression used to parse variables.
16
+ MATCH = /^\$(#{Sass::SCSS::RX::IDENT})\s*:\s*(.+?)(!(?i:default))?$/
17
+
18
+ # The regular expression used to validate variables without matching.
19
+ VALIDATE = /^\$#{Sass::SCSS::RX::IDENT}$/
20
+
21
+ # Parses a string of SassScript
22
+ #
23
+ # @param value [String] The SassScript
24
+ # @param line [Fixnum] The number of the line on which the SassScript appeared.
25
+ # Used for error reporting
26
+ # @param offset [Fixnum] The number of characters in on `line` that the SassScript started.
27
+ # Used for error reporting
28
+ # @param options [{Symbol => Object}] An options hash;
29
+ # see {file:SASS_REFERENCE.md#sass_options the Sass options documentation}
30
+ # @return [Script::Node] The root node of the parse tree
31
+ def self.parse(value, line, offset, options = {})
32
+ Parser.parse(value, line, offset, options)
33
+ rescue Sass::SyntaxError => e
34
+ e.message << ": #{value.inspect}." if e.message == "SassScript error"
35
+ e.modify_backtrace(:line => line, :filename => options[:filename])
36
+ raise e
37
+ end
38
+
39
+ end
40
+ end
@@ -0,0 +1,18 @@
1
+ require 'sass/script/literal'
2
+
3
+ module Sass::Script
4
+ # A SassScript object representing a boolean (true or false) value.
5
+ class Bool < Literal
6
+ # The Ruby value of the boolean.
7
+ #
8
+ # @return [Boolean]
9
+ attr_reader :value
10
+ alias_method :to_bool, :value
11
+
12
+ # @return [String] "true" or "false"
13
+ def to_s(opts = {})
14
+ @value.to_s
15
+ end
16
+ alias_method :to_sass, :to_s
17
+ end
18
+ end
@@ -0,0 +1,480 @@
1
+ require 'sass/script/literal'
2
+
3
+ module Sass::Script
4
+ # A SassScript object representing a CSS color.
5
+ #
6
+ # A color may be represented internally as RGBA, HSLA, or both.
7
+ # It's originally represented as whatever its input is;
8
+ # if it's created with RGB values, it's represented as RGBA,
9
+ # and if it's created with HSL values, it's represented as HSLA.
10
+ # Once a property is accessed that requires the other representation --
11
+ # for example, \{#red} for an HSL color --
12
+ # that component is calculated and cached.
13
+ #
14
+ # The alpha channel of a color is independent of its RGB or HSL representation.
15
+ # It's always stored, as 1 if nothing else is specified.
16
+ # If only the alpha channel is modified using \{#with},
17
+ # the cached RGB and HSL values are retained.
18
+ class Color < Literal
19
+ class << self; include Sass::Util; end
20
+
21
+ # A hash from color names to `[red, green, blue]` value arrays.
22
+ HTML4_COLORS = map_vals({
23
+ 'black' => 0x000000,
24
+ 'silver' => 0xc0c0c0,
25
+ 'gray' => 0x808080,
26
+ 'white' => 0xffffff,
27
+ 'maroon' => 0x800000,
28
+ 'red' => 0xff0000,
29
+ 'purple' => 0x800080,
30
+ 'fuchsia' => 0xff00ff,
31
+ 'green' => 0x008000,
32
+ 'lime' => 0x00ff00,
33
+ 'olive' => 0x808000,
34
+ 'yellow' => 0xffff00,
35
+ 'navy' => 0x000080,
36
+ 'blue' => 0x0000ff,
37
+ 'teal' => 0x008080,
38
+ 'aqua' => 0x00ffff
39
+ }) {|color| (0..2).map {|n| color >> (n << 3) & 0xff}.reverse}
40
+ # A hash from `[red, green, blue]` value arrays to color names.
41
+ HTML4_COLORS_REVERSE = map_hash(HTML4_COLORS) {|k, v| [v, k]}
42
+
43
+ # Constructs an RGB or HSL color object,
44
+ # optionally with an alpha channel.
45
+ #
46
+ # The RGB values must be between 0 and 255.
47
+ # The saturation and lightness values must be between 0 and 100.
48
+ # The alpha value must be between 0 and 1.
49
+ #
50
+ # @raise [Sass::SyntaxError] if any color value isn't in the specified range
51
+ #
52
+ # @overload initialize(attrs)
53
+ # The attributes are specified as a hash.
54
+ # This hash must contain either `:hue`, `:saturation`, and `:value` keys,
55
+ # or `:red`, `:green`, and `:blue` keys.
56
+ # It cannot contain both HSL and RGB keys.
57
+ # It may also optionally contain an `:alpha` key.
58
+ #
59
+ # @param attrs [{Symbol => Numeric}] A hash of color attributes to values
60
+ # @raise [ArgumentError] if not enough attributes are specified,
61
+ # or both RGB and HSL attributes are specified
62
+ #
63
+ # @overload initialize(rgba)
64
+ # The attributes are specified as an array.
65
+ # This overload only supports RGB or RGBA colors.
66
+ #
67
+ # @param rgba [Array<Numeric>] A three- or four-element array
68
+ # of the red, green, blue, and optionally alpha values (respectively)
69
+ # of the color
70
+ # @raise [ArgumentError] if not enough attributes are specified
71
+ def initialize(attrs, allow_both_rgb_and_hsl = false)
72
+ super(nil)
73
+
74
+ if attrs.is_a?(Array)
75
+ unless (3..4).include?(attrs.size)
76
+ raise ArgumentError.new("Color.new(array) expects a three- or four-element array")
77
+ end
78
+
79
+ red, green, blue = attrs[0...3].map {|c| c.to_i}
80
+ @attrs = {:red => red, :green => green, :blue => blue}
81
+ @attrs[:alpha] = attrs[3] ? attrs[3].to_f : 1
82
+ else
83
+ attrs = attrs.reject {|k, v| v.nil?}
84
+ hsl = [:hue, :saturation, :lightness] & attrs.keys
85
+ rgb = [:red, :green, :blue] & attrs.keys
86
+ if !allow_both_rgb_and_hsl && !hsl.empty? && !rgb.empty?
87
+ raise ArgumentError.new("Color.new(hash) may not have both HSL and RGB keys specified")
88
+ elsif hsl.empty? && rgb.empty?
89
+ raise ArgumentError.new("Color.new(hash) must have either HSL or RGB keys specified")
90
+ elsif !hsl.empty? && hsl.size != 3
91
+ raise ArgumentError.new("Color.new(hash) must have all three HSL values specified")
92
+ elsif !rgb.empty? && rgb.size != 3
93
+ raise ArgumentError.new("Color.new(hash) must have all three RGB values specified")
94
+ end
95
+
96
+ @attrs = attrs
97
+ @attrs[:hue] %= 360 if @attrs[:hue]
98
+ @attrs[:alpha] ||= 1
99
+ end
100
+
101
+ [:red, :green, :blue].each do |k|
102
+ next if @attrs[k].nil?
103
+ @attrs[k] = @attrs[k].to_i
104
+ next if (0..255).include?(@attrs[k])
105
+ raise ArgumentError.new("#{k.to_s.capitalize} value must be between 0 and 255")
106
+ end
107
+
108
+ [:saturation, :lightness].each do |k|
109
+ next if @attrs[k].nil?
110
+ @attrs[k] = 0 if @attrs[k] < 0.00001 && @attrs[k] > -0.00001
111
+ @attrs[k] = 100 if @attrs[k] - 100 < 0.00001 && @attrs[k] - 100 > -0.00001
112
+ next if (0..100).include?(@attrs[k])
113
+ raise ArgumentError.new("#{k.to_s.capitalize} must be between 0 and 100")
114
+ end
115
+
116
+ unless (0..1).include?(@attrs[:alpha])
117
+ raise ArgumentError.new("Alpha channel must be between 0 and 1")
118
+ end
119
+ end
120
+
121
+ # The red component of the color.
122
+ #
123
+ # @return [Fixnum]
124
+ def red
125
+ hsl_to_rgb!
126
+ @attrs[:red]
127
+ end
128
+
129
+ # The green component of the color.
130
+ #
131
+ # @return [Fixnum]
132
+ def green
133
+ hsl_to_rgb!
134
+ @attrs[:green]
135
+ end
136
+
137
+ # The blue component of the color.
138
+ #
139
+ # @return [Fixnum]
140
+ def blue
141
+ hsl_to_rgb!
142
+ @attrs[:blue]
143
+ end
144
+
145
+ # The hue component of the color.
146
+ #
147
+ # @return [Numeric]
148
+ def hue
149
+ rgb_to_hsl!
150
+ @attrs[:hue]
151
+ end
152
+
153
+ # The saturation component of the color.
154
+ #
155
+ # @return [Numeric]
156
+ def saturation
157
+ rgb_to_hsl!
158
+ @attrs[:saturation]
159
+ end
160
+
161
+ # The lightness component of the color.
162
+ #
163
+ # @return [Numeric]
164
+ def lightness
165
+ rgb_to_hsl!
166
+ @attrs[:lightness]
167
+ end
168
+
169
+ # The alpha channel (opacity) of the color.
170
+ # This is 1 unless otherwise defined.
171
+ #
172
+ # @return [Fixnum]
173
+ def alpha
174
+ @attrs[:alpha]
175
+ end
176
+
177
+ # Returns whether this color object is translucent;
178
+ # that is, whether the alpha channel is non-1.
179
+ #
180
+ # @return [Boolean]
181
+ def alpha?
182
+ alpha < 1
183
+ end
184
+
185
+ # Returns the red, green, and blue components of the color.
186
+ #
187
+ # @return [Array<Fixnum>] A frozen three-element array of the red, green, and blue
188
+ # values (respectively) of the color
189
+ def rgb
190
+ [red, green, blue].freeze
191
+ end
192
+
193
+ # Returns the hue, saturation, and lightness components of the color.
194
+ #
195
+ # @return [Array<Fixnum>] A frozen three-element array of the
196
+ # hue, saturation, and lightness values (respectively) of the color
197
+ def hsl
198
+ [hue, saturation, lightness].freeze
199
+ end
200
+
201
+ # The SassScript `==` operation.
202
+ # **Note that this returns a {Sass::Script::Bool} object,
203
+ # not a Ruby boolean**.
204
+ #
205
+ # @param other [Literal] The right-hand side of the operator
206
+ # @return [Bool] True if this literal is the same as the other,
207
+ # false otherwise
208
+ def eq(other)
209
+ Sass::Script::Bool.new(
210
+ other.is_a?(Color) && rgb == other.rgb && alpha == other.alpha)
211
+ end
212
+
213
+ # Returns a copy of this color with one or more channels changed.
214
+ # RGB or HSL colors may be changed, but not both at once.
215
+ #
216
+ # For example:
217
+ #
218
+ # Color.new([10, 20, 30]).with(:blue => 40)
219
+ # #=> rgb(10, 40, 30)
220
+ # Color.new([126, 126, 126]).with(:red => 0, :green => 255)
221
+ # #=> rgb(0, 255, 126)
222
+ # Color.new([255, 0, 127]).with(:saturation => 60)
223
+ # #=> rgb(204, 51, 127)
224
+ # Color.new([1, 2, 3]).with(:alpha => 0.4)
225
+ # #=> rgba(1, 2, 3, 0.4)
226
+ #
227
+ # @param attrs [{Symbol => Numeric}]
228
+ # A map of channel names (`:red`, `:green`, `:blue`,
229
+ # `:hue`, `:saturation`, `:lightness`, or `:alpha`) to values
230
+ # @return [Color] The new Color object
231
+ # @raise [ArgumentError] if both RGB and HSL keys are specified
232
+ def with(attrs)
233
+ attrs = attrs.reject {|k, v| v.nil?}
234
+ hsl = !([:hue, :saturation, :lightness] & attrs.keys).empty?
235
+ rgb = !([:red, :green, :blue] & attrs.keys).empty?
236
+ if hsl && rgb
237
+ raise ArgumentError.new("Cannot specify HSL and RGB values for a color at the same time")
238
+ end
239
+
240
+ if hsl
241
+ [:hue, :saturation, :lightness].each {|k| attrs[k] ||= send(k)}
242
+ elsif rgb
243
+ [:red, :green, :blue].each {|k| attrs[k] ||= send(k)}
244
+ else
245
+ # If we're just changing the alpha channel,
246
+ # keep all the HSL/RGB stuff we've calculated
247
+ attrs = @attrs.merge(attrs)
248
+ end
249
+ attrs[:alpha] ||= alpha
250
+
251
+ Color.new(attrs, :allow_both_rgb_and_hsl)
252
+ end
253
+
254
+ # The SassScript `+` operation.
255
+ # Its functionality depends on the type of its argument:
256
+ #
257
+ # {Number}
258
+ # : Adds the number to each of the RGB color channels.
259
+ #
260
+ # {Color}
261
+ # : Adds each of the RGB color channels together.
262
+ #
263
+ # {Literal}
264
+ # : See {Literal#plus}.
265
+ #
266
+ # @param other [Literal] The right-hand side of the operator
267
+ # @return [Color] The resulting color
268
+ # @raise [Sass::SyntaxError] if `other` is a number with units
269
+ def plus(other)
270
+ if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color)
271
+ piecewise(other, :+)
272
+ else
273
+ super
274
+ end
275
+ end
276
+
277
+ # The SassScript `-` operation.
278
+ # Its functionality depends on the type of its argument:
279
+ #
280
+ # {Number}
281
+ # : Subtracts the number from each of the RGB color channels.
282
+ #
283
+ # {Color}
284
+ # : Subtracts each of the other color's RGB color channels from this color's.
285
+ #
286
+ # {Literal}
287
+ # : See {Literal#minus}.
288
+ #
289
+ # @param other [Literal] The right-hand side of the operator
290
+ # @return [Color] The resulting color
291
+ # @raise [Sass::SyntaxError] if `other` is a number with units
292
+ def minus(other)
293
+ if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color)
294
+ piecewise(other, :-)
295
+ else
296
+ super
297
+ end
298
+ end
299
+
300
+ # The SassScript `*` operation.
301
+ # Its functionality depends on the type of its argument:
302
+ #
303
+ # {Number}
304
+ # : Multiplies the number by each of the RGB color channels.
305
+ #
306
+ # {Color}
307
+ # : Multiplies each of the RGB color channels together.
308
+ #
309
+ # @param other [Number, Color] The right-hand side of the operator
310
+ # @return [Color] The resulting color
311
+ # @raise [Sass::SyntaxError] if `other` is a number with units
312
+ def times(other)
313
+ if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color)
314
+ piecewise(other, :*)
315
+ else
316
+ raise NoMethodError.new(nil, :times)
317
+ end
318
+ end
319
+
320
+ # The SassScript `/` operation.
321
+ # Its functionality depends on the type of its argument:
322
+ #
323
+ # {Number}
324
+ # : Divides each of the RGB color channels by the number.
325
+ #
326
+ # {Color}
327
+ # : Divides each of this color's RGB color channels by the other color's.
328
+ #
329
+ # {Literal}
330
+ # : See {Literal#div}.
331
+ #
332
+ # @param other [Literal] The right-hand side of the operator
333
+ # @return [Color] The resulting color
334
+ # @raise [Sass::SyntaxError] if `other` is a number with units
335
+ def div(other)
336
+ if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color)
337
+ piecewise(other, :/)
338
+ else
339
+ super
340
+ end
341
+ end
342
+
343
+ # The SassScript `%` operation.
344
+ # Its functionality depends on the type of its argument:
345
+ #
346
+ # {Number}
347
+ # : Takes each of the RGB color channels module the number.
348
+ #
349
+ # {Color}
350
+ # : Takes each of this color's RGB color channels modulo the other color's.
351
+ #
352
+ # @param other [Number, Color] The right-hand side of the operator
353
+ # @return [Color] The resulting color
354
+ # @raise [Sass::SyntaxError] if `other` is a number with units
355
+ def mod(other)
356
+ if other.is_a?(Sass::Script::Number) || other.is_a?(Sass::Script::Color)
357
+ piecewise(other, :%)
358
+ else
359
+ raise NoMethodError.new(nil, :mod)
360
+ end
361
+ end
362
+
363
+ # Returns a string representation of the color.
364
+ # This is usually the color's hex value,
365
+ # but if the color has a name that's used instead.
366
+ #
367
+ # @return [String] The string representation
368
+ def to_s(opts = {})
369
+ return rgba_str if alpha?
370
+ return smallest if options[:style] == :compressed
371
+ return HTML4_COLORS_REVERSE[rgb] if HTML4_COLORS_REVERSE[rgb]
372
+ hex_str
373
+ end
374
+ alias_method :to_sass, :to_s
375
+
376
+ # Returns a string representation of the color.
377
+ #
378
+ # @return [String] The hex value
379
+ def inspect
380
+ alpha? ? rgba_str : hex_str
381
+ end
382
+
383
+ private
384
+
385
+ def smallest
386
+ small_hex_str = hex_str.gsub(/^#(.)\1(.)\2(.)\3$/, '#\1\2\3')
387
+ return small_hex_str unless (color = HTML4_COLORS_REVERSE[rgb]) &&
388
+ color.size <= small_hex_str.size
389
+ return color
390
+ end
391
+
392
+ def rgba_str
393
+ split = options[:style] == :compressed ? ',' : ', '
394
+ "rgba(#{rgb.join(split)}#{split}#{Number.round(alpha)})"
395
+ end
396
+
397
+ def hex_str
398
+ red, green, blue = rgb.map { |num| num.to_s(16).rjust(2, '0') }
399
+ "##{red}#{green}#{blue}"
400
+ end
401
+
402
+ def piecewise(other, operation)
403
+ other_num = other.is_a? Number
404
+ if other_num && !other.unitless?
405
+ raise Sass::SyntaxError.new("Cannot add a number with units (#{other}) to a color (#{self}).")
406
+ end
407
+
408
+ result = []
409
+ for i in (0...3)
410
+ res = rgb[i].send(operation, other_num ? other.value : other.rgb[i])
411
+ result[i] = [ [res, 255].min, 0 ].max
412
+ end
413
+
414
+ if !other_num && other.alpha != alpha
415
+ raise Sass::SyntaxError.new("Alpha channels must be equal: #{self} #{operation} #{other}")
416
+ end
417
+
418
+ with(:red => result[0], :green => result[1], :blue => result[2])
419
+ end
420
+
421
+ def hsl_to_rgb!
422
+ return if @attrs[:red] && @attrs[:blue] && @attrs[:green]
423
+
424
+ h = @attrs[:hue] / 360.0
425
+ s = @attrs[:saturation] / 100.0
426
+ l = @attrs[:lightness] / 100.0
427
+
428
+ # Algorithm from the CSS3 spec: http://www.w3.org/TR/css3-color/#hsl-color.
429
+ m2 = l <= 0.5 ? l * (s + 1) : l + s - l * s
430
+ m1 = l * 2 - m2
431
+ @attrs[:red], @attrs[:green], @attrs[:blue] = [
432
+ hue_to_rgb(m1, m2, h + 1.0/3),
433
+ hue_to_rgb(m1, m2, h),
434
+ hue_to_rgb(m1, m2, h - 1.0/3)
435
+ ].map {|c| (c * 0xff).round}
436
+ end
437
+
438
+ def hue_to_rgb(m1, m2, h)
439
+ h += 1 if h < 0
440
+ h -= 1 if h > 1
441
+ return m1 + (m2 - m1) * h * 6 if h * 6 < 1
442
+ return m2 if h * 2 < 1
443
+ return m1 + (m2 - m1) * (2.0/3 - h) * 6 if h * 3 < 2
444
+ return m1
445
+ end
446
+
447
+ def rgb_to_hsl!
448
+ return if @attrs[:hue] && @attrs[:saturation] && @attrs[:lightness]
449
+ r, g, b = [:red, :green, :blue].map {|k| @attrs[k] / 255.0}
450
+
451
+ # Algorithm from http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_RGB_to_HSL_or_HSV
452
+ max = [r, g, b].max
453
+ min = [r, g, b].min
454
+ d = max - min
455
+
456
+ h =
457
+ case max
458
+ when min; 0
459
+ when r; 60 * (g-b)/d
460
+ when g; 60 * (b-r)/d + 120
461
+ when b; 60 * (r-g)/d + 240
462
+ end
463
+
464
+ l = (max + min)/2.0
465
+
466
+ s =
467
+ if max == min
468
+ 0
469
+ elsif l < 0.5
470
+ d/(2*l)
471
+ else
472
+ d/(2 - 2*l)
473
+ end
474
+
475
+ @attrs[:hue] = h % 360
476
+ @attrs[:saturation] = s * 100
477
+ @attrs[:lightness] = l * 100
478
+ end
479
+ end
480
+ end