haml 3.2.0.alpha.10 → 3.2.0.alpha.13

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of haml might be problematic. Click here for more details.

Files changed (389) hide show
  1. data/.yardopts +19 -7
  2. data/CHANGELOG.md +1224 -0
  3. data/FAQ.md +157 -0
  4. data/README.md +99 -62
  5. data/REFERENCE.md +1404 -0
  6. data/Rakefile +52 -341
  7. data/init.rb +1 -18
  8. data/lib/haml.rb +6 -30
  9. data/lib/haml/buffer.rb +37 -16
  10. data/lib/haml/compiler.rb +52 -13
  11. data/lib/haml/engine.rb +61 -44
  12. data/lib/haml/exec.rb +21 -4
  13. data/lib/haml/filters.rb +136 -166
  14. data/lib/haml/helpers.rb +37 -10
  15. data/lib/haml/helpers/action_view_extensions.rb +2 -1
  16. data/lib/haml/helpers/action_view_mods.rb +67 -181
  17. data/lib/haml/helpers/rails_323_textarea_fix.rb +39 -0
  18. data/lib/haml/helpers/xss_mods.rb +9 -11
  19. data/lib/haml/html.rb +22 -9
  20. data/lib/haml/html/erb.rb +1 -1
  21. data/lib/haml/parser.rb +22 -15
  22. data/lib/haml/railtie.rb +2 -13
  23. data/lib/haml/template.rb +18 -85
  24. data/lib/haml/template/options.rb +1 -1
  25. data/lib/haml/template/plugin.rb +15 -101
  26. data/lib/haml/util.rb +120 -603
  27. data/lib/haml/version.rb +1 -107
  28. data/test/{haml/engine_test.rb → engine_test.rb} +137 -143
  29. data/test/{haml/erb → erb}/_av_partial_1.erb +1 -1
  30. data/test/{haml/erb → erb}/_av_partial_2.erb +1 -1
  31. data/test/{haml/erb → erb}/action_view.erb +1 -1
  32. data/test/{haml/erb → erb}/standard.erb +0 -0
  33. data/test/filters_test.rb +141 -0
  34. data/test/gemfiles/Gemfile.rails-3.0.x +4 -6
  35. data/test/gemfiles/Gemfile.rails-3.1.x +5 -6
  36. data/test/gemfiles/Gemfile.rails-3.2.x +6 -0
  37. data/test/haml-spec/LICENSE +14 -0
  38. data/test/{haml/spec → haml-spec}/README.md +26 -17
  39. data/test/haml-spec/lua_haml_spec.lua +38 -0
  40. data/test/haml-spec/perl_haml_test.pl +81 -0
  41. data/test/haml-spec/ruby_haml_test.rb +23 -0
  42. data/test/{haml/spec → haml-spec}/tests.json +132 -54
  43. data/test/{haml/helper_test.rb → helper_test.rb} +50 -36
  44. data/test/{haml/html2haml → html2haml}/erb_tests.rb +0 -0
  45. data/test/{haml/html2haml_test.rb → html2haml_test.rb} +11 -5
  46. data/test/{haml/markaby → markaby}/standard.mab +0 -0
  47. data/test/{haml/mocks → mocks}/article.rb +0 -0
  48. data/test/{haml/results → results}/content_for_layout.xhtml +0 -0
  49. data/test/{haml/results → results}/eval_suppressed.xhtml +0 -0
  50. data/test/{haml/results → results}/helpers.xhtml +0 -0
  51. data/test/{haml/results → results}/helpful.xhtml +0 -0
  52. data/test/{haml/results → results}/just_stuff.xhtml +0 -0
  53. data/test/{haml/results → results}/list.xhtml +0 -0
  54. data/test/{haml/results → results}/nuke_inner_whitespace.xhtml +0 -0
  55. data/test/{haml/results → results}/nuke_outer_whitespace.xhtml +0 -0
  56. data/test/{haml/results → results}/original_engine.xhtml +0 -0
  57. data/test/{haml/results → results}/partial_layout.xhtml +0 -0
  58. data/test/{haml/results → results}/partials.xhtml +0 -0
  59. data/test/{haml/results → results}/render_layout.xhtml +0 -0
  60. data/test/{haml/results → results}/silent_script.xhtml +1 -1
  61. data/test/{haml/results → results}/standard.xhtml +0 -0
  62. data/test/{haml/results → results}/tag_parsing.xhtml +0 -0
  63. data/test/{haml/results → results}/very_basic.xhtml +0 -0
  64. data/test/{haml/results → results}/whitespace_handling.xhtml +46 -50
  65. data/test/{haml/template_test.rb → template_test.rb} +20 -81
  66. data/test/{haml/templates → templates}/_av_partial_1.haml +1 -1
  67. data/test/{haml/templates → templates}/_av_partial_1_ugly.haml +1 -1
  68. data/test/{haml/templates → templates}/_av_partial_2.haml +1 -1
  69. data/test/{haml/templates → templates}/_av_partial_2_ugly.haml +1 -1
  70. data/test/{haml/templates → templates}/_layout.erb +0 -0
  71. data/test/{haml/templates → templates}/_layout_for_partial.haml +0 -0
  72. data/test/{haml/templates → templates}/_partial.haml +0 -0
  73. data/test/{haml/templates → templates}/_text_area.haml +0 -0
  74. data/test/{haml/templates → templates}/action_view.haml +1 -1
  75. data/test/{haml/templates → templates}/action_view_ugly.haml +1 -1
  76. data/test/{haml/templates → templates}/breakage.haml +0 -0
  77. data/test/{haml/templates → templates}/content_for_layout.haml +0 -0
  78. data/test/{haml/templates → templates}/eval_suppressed.haml +0 -0
  79. data/test/{haml/templates → templates}/helpers.haml +0 -0
  80. data/test/{haml/templates → templates}/helpful.haml +0 -0
  81. data/test/{haml/templates → templates}/just_stuff.haml +0 -0
  82. data/test/{haml/templates → templates}/list.haml +0 -0
  83. data/test/{haml/templates → templates}/nuke_inner_whitespace.haml +0 -0
  84. data/test/{haml/templates → templates}/nuke_outer_whitespace.haml +0 -0
  85. data/test/{haml/templates → templates}/original_engine.haml +0 -0
  86. data/test/templates/partial_layout.haml +3 -0
  87. data/test/{haml/templates → templates}/partialize.haml +0 -0
  88. data/test/{haml/templates → templates}/partials.haml +0 -0
  89. data/test/{haml/templates → templates}/render_layout.haml +0 -0
  90. data/test/{haml/templates → templates}/silent_script.haml +2 -2
  91. data/test/{haml/templates → templates}/standard.haml +0 -0
  92. data/test/{haml/templates → templates}/standard_ugly.haml +0 -0
  93. data/test/{haml/templates → templates}/tag_parsing.haml +0 -0
  94. data/test/{haml/templates → templates}/very_basic.haml +0 -0
  95. data/test/{haml/templates → templates}/whitespace_handling.haml +0 -0
  96. data/test/test_helper.rb +42 -34
  97. data/test/util_test.rb +80 -0
  98. metadata +259 -427
  99. data/CONTRIBUTING +0 -3
  100. data/REVISION +0 -1
  101. data/VERSION +0 -1
  102. data/VERSION_NAME +0 -1
  103. data/extra/update_watch.rb +0 -13
  104. data/lib/haml/root.rb +0 -7
  105. data/lib/haml/shared.rb +0 -78
  106. data/lib/haml/template/patch.rb +0 -58
  107. data/lib/sass.rb +0 -8
  108. data/lib/sass/plugin.rb +0 -10
  109. data/lib/sass/rails2_shim.rb +0 -9
  110. data/lib/sass/rails3_shim.rb +0 -16
  111. data/test/benchmark.rb +0 -91
  112. data/test/gemfiles/Gemfile.rails-2.0.x +0 -8
  113. data/test/gemfiles/Gemfile.rails-2.0.x.lock +0 -38
  114. data/test/gemfiles/Gemfile.rails-2.1.x +0 -8
  115. data/test/gemfiles/Gemfile.rails-2.1.x.lock +0 -38
  116. data/test/gemfiles/Gemfile.rails-2.2.x +0 -8
  117. data/test/gemfiles/Gemfile.rails-2.2.x.lock +0 -38
  118. data/test/gemfiles/Gemfile.rails-2.3.x +0 -8
  119. data/test/gemfiles/Gemfile.rails-2.3.x.lock +0 -40
  120. data/test/gemfiles/Gemfile.rails-3.0.x.lock +0 -85
  121. data/test/gemfiles/Gemfile.rails-3.1.x.lock +0 -98
  122. data/test/gemfiles/Gemfile.rails-xss-2.3.x +0 -9
  123. data/test/gemfiles/Gemfile.rails-xss-2.3.x.lock +0 -42
  124. data/test/haml/results/filters.xhtml +0 -62
  125. data/test/haml/spec/lua_haml_spec.lua +0 -30
  126. data/test/haml/spec/ruby_haml_test.rb +0 -19
  127. data/test/haml/spec_test.rb +0 -44
  128. data/test/haml/templates/filters.haml +0 -66
  129. data/test/haml/templates/partial_layout.haml +0 -10
  130. data/test/haml/util_test.rb +0 -300
  131. data/test/linked_rails.rb +0 -42
  132. data/vendor/sass/CONTRIBUTING +0 -3
  133. data/vendor/sass/MIT-LICENSE +0 -20
  134. data/vendor/sass/README.md +0 -201
  135. data/vendor/sass/Rakefile +0 -339
  136. data/vendor/sass/TODO +0 -39
  137. data/vendor/sass/VERSION +0 -1
  138. data/vendor/sass/VERSION_NAME +0 -1
  139. data/vendor/sass/bin/sass +0 -8
  140. data/vendor/sass/bin/sass-convert +0 -7
  141. data/vendor/sass/bin/scss +0 -8
  142. data/vendor/sass/doc-src/FAQ.md +0 -35
  143. data/vendor/sass/doc-src/INDENTED_SYNTAX.md +0 -210
  144. data/vendor/sass/doc-src/SASS_CHANGELOG.md +0 -2327
  145. data/vendor/sass/doc-src/SASS_REFERENCE.md +0 -1965
  146. data/vendor/sass/doc-src/SCSS_FOR_SASS_USERS.md +0 -155
  147. data/vendor/sass/ext/extconf.rb +0 -10
  148. data/vendor/sass/extra/update_watch.rb +0 -13
  149. data/vendor/sass/init.rb +0 -18
  150. data/vendor/sass/lib/sass.rb +0 -73
  151. data/vendor/sass/lib/sass/cache_stores.rb +0 -15
  152. data/vendor/sass/lib/sass/cache_stores/base.rb +0 -86
  153. data/vendor/sass/lib/sass/cache_stores/chain.rb +0 -33
  154. data/vendor/sass/lib/sass/cache_stores/filesystem.rb +0 -60
  155. data/vendor/sass/lib/sass/cache_stores/memory.rb +0 -47
  156. data/vendor/sass/lib/sass/cache_stores/null.rb +0 -25
  157. data/vendor/sass/lib/sass/callbacks.rb +0 -66
  158. data/vendor/sass/lib/sass/css.rb +0 -295
  159. data/vendor/sass/lib/sass/engine.rb +0 -878
  160. data/vendor/sass/lib/sass/environment.rb +0 -166
  161. data/vendor/sass/lib/sass/error.rb +0 -201
  162. data/vendor/sass/lib/sass/exec.rb +0 -672
  163. data/vendor/sass/lib/sass/importers.rb +0 -22
  164. data/vendor/sass/lib/sass/importers/base.rb +0 -139
  165. data/vendor/sass/lib/sass/importers/filesystem.rb +0 -149
  166. data/vendor/sass/lib/sass/less.rb +0 -382
  167. data/vendor/sass/lib/sass/logger.rb +0 -15
  168. data/vendor/sass/lib/sass/logger/base.rb +0 -32
  169. data/vendor/sass/lib/sass/logger/log_level.rb +0 -49
  170. data/vendor/sass/lib/sass/plugin.rb +0 -132
  171. data/vendor/sass/lib/sass/plugin/compiler.rb +0 -383
  172. data/vendor/sass/lib/sass/plugin/configuration.rb +0 -123
  173. data/vendor/sass/lib/sass/plugin/generic.rb +0 -15
  174. data/vendor/sass/lib/sass/plugin/merb.rb +0 -48
  175. data/vendor/sass/lib/sass/plugin/rack.rb +0 -60
  176. data/vendor/sass/lib/sass/plugin/rails.rb +0 -47
  177. data/vendor/sass/lib/sass/plugin/staleness_checker.rb +0 -173
  178. data/vendor/sass/lib/sass/railtie.rb +0 -9
  179. data/vendor/sass/lib/sass/repl.rb +0 -58
  180. data/vendor/sass/lib/sass/root.rb +0 -7
  181. data/vendor/sass/lib/sass/script.rb +0 -40
  182. data/vendor/sass/lib/sass/script/bool.rb +0 -18
  183. data/vendor/sass/lib/sass/script/color.rb +0 -480
  184. data/vendor/sass/lib/sass/script/css_lexer.rb +0 -29
  185. data/vendor/sass/lib/sass/script/css_parser.rb +0 -31
  186. data/vendor/sass/lib/sass/script/funcall.rb +0 -175
  187. data/vendor/sass/lib/sass/script/functions.rb +0 -1386
  188. data/vendor/sass/lib/sass/script/interpolation.rb +0 -79
  189. data/vendor/sass/lib/sass/script/lexer.rb +0 -339
  190. data/vendor/sass/lib/sass/script/list.rb +0 -83
  191. data/vendor/sass/lib/sass/script/literal.rb +0 -250
  192. data/vendor/sass/lib/sass/script/node.rb +0 -99
  193. data/vendor/sass/lib/sass/script/number.rb +0 -452
  194. data/vendor/sass/lib/sass/script/operation.rb +0 -99
  195. data/vendor/sass/lib/sass/script/parser.rb +0 -474
  196. data/vendor/sass/lib/sass/script/string.rb +0 -51
  197. data/vendor/sass/lib/sass/script/string_interpolation.rb +0 -103
  198. data/vendor/sass/lib/sass/script/unary_operation.rb +0 -64
  199. data/vendor/sass/lib/sass/script/variable.rb +0 -59
  200. data/vendor/sass/lib/sass/scss.rb +0 -17
  201. data/vendor/sass/lib/sass/scss/css_parser.rb +0 -46
  202. data/vendor/sass/lib/sass/scss/parser.rb +0 -960
  203. data/vendor/sass/lib/sass/scss/rx.rb +0 -128
  204. data/vendor/sass/lib/sass/scss/sass_parser.rb +0 -11
  205. data/vendor/sass/lib/sass/scss/script_lexer.rb +0 -15
  206. data/vendor/sass/lib/sass/scss/script_parser.rb +0 -25
  207. data/vendor/sass/lib/sass/scss/static_parser.rb +0 -40
  208. data/vendor/sass/lib/sass/selector.rb +0 -361
  209. data/vendor/sass/lib/sass/selector/abstract_sequence.rb +0 -62
  210. data/vendor/sass/lib/sass/selector/comma_sequence.rb +0 -81
  211. data/vendor/sass/lib/sass/selector/sequence.rb +0 -233
  212. data/vendor/sass/lib/sass/selector/simple.rb +0 -113
  213. data/vendor/sass/lib/sass/selector/simple_sequence.rb +0 -134
  214. data/vendor/sass/lib/sass/shared.rb +0 -78
  215. data/vendor/sass/lib/sass/tree/charset_node.rb +0 -22
  216. data/vendor/sass/lib/sass/tree/comment_node.rb +0 -90
  217. data/vendor/sass/lib/sass/tree/debug_node.rb +0 -18
  218. data/vendor/sass/lib/sass/tree/directive_node.rb +0 -23
  219. data/vendor/sass/lib/sass/tree/each_node.rb +0 -24
  220. data/vendor/sass/lib/sass/tree/extend_node.rb +0 -29
  221. data/vendor/sass/lib/sass/tree/for_node.rb +0 -36
  222. data/vendor/sass/lib/sass/tree/function_node.rb +0 -27
  223. data/vendor/sass/lib/sass/tree/if_node.rb +0 -52
  224. data/vendor/sass/lib/sass/tree/import_node.rb +0 -68
  225. data/vendor/sass/lib/sass/tree/media_node.rb +0 -32
  226. data/vendor/sass/lib/sass/tree/mixin_def_node.rb +0 -27
  227. data/vendor/sass/lib/sass/tree/mixin_node.rb +0 -32
  228. data/vendor/sass/lib/sass/tree/node.rb +0 -201
  229. data/vendor/sass/lib/sass/tree/prop_node.rb +0 -148
  230. data/vendor/sass/lib/sass/tree/return_node.rb +0 -18
  231. data/vendor/sass/lib/sass/tree/root_node.rb +0 -28
  232. data/vendor/sass/lib/sass/tree/rule_node.rb +0 -136
  233. data/vendor/sass/lib/sass/tree/variable_node.rb +0 -30
  234. data/vendor/sass/lib/sass/tree/visitors/base.rb +0 -75
  235. data/vendor/sass/lib/sass/tree/visitors/check_nesting.rb +0 -133
  236. data/vendor/sass/lib/sass/tree/visitors/convert.rb +0 -260
  237. data/vendor/sass/lib/sass/tree/visitors/cssize.rb +0 -175
  238. data/vendor/sass/lib/sass/tree/visitors/deep_copy.rb +0 -87
  239. data/vendor/sass/lib/sass/tree/visitors/perform.rb +0 -332
  240. data/vendor/sass/lib/sass/tree/visitors/set_options.rb +0 -97
  241. data/vendor/sass/lib/sass/tree/visitors/to_css.rb +0 -210
  242. data/vendor/sass/lib/sass/tree/warn_node.rb +0 -18
  243. data/vendor/sass/lib/sass/tree/while_node.rb +0 -18
  244. data/vendor/sass/lib/sass/util.rb +0 -721
  245. data/vendor/sass/lib/sass/util/subset_map.rb +0 -101
  246. data/vendor/sass/lib/sass/version.rb +0 -112
  247. data/vendor/sass/rails/init.rb +0 -1
  248. data/vendor/sass/sass.gemspec +0 -33
  249. data/vendor/sass/test/Gemfile +0 -4
  250. data/vendor/sass/test/Gemfile.lock +0 -19
  251. data/vendor/sass/test/sass/cache_test.rb +0 -89
  252. data/vendor/sass/test/sass/callbacks_test.rb +0 -61
  253. data/vendor/sass/test/sass/conversion_test.rb +0 -1199
  254. data/vendor/sass/test/sass/css2sass_test.rb +0 -373
  255. data/vendor/sass/test/sass/data/hsl-rgb.txt +0 -319
  256. data/vendor/sass/test/sass/engine_test.rb +0 -2567
  257. data/vendor/sass/test/sass/extend_test.rb +0 -1348
  258. data/vendor/sass/test/sass/fixtures/test_staleness_check_across_importers.css +0 -1
  259. data/vendor/sass/test/sass/fixtures/test_staleness_check_across_importers.scss +0 -1
  260. data/vendor/sass/test/sass/functions_test.rb +0 -1038
  261. data/vendor/sass/test/sass/importer_test.rb +0 -192
  262. data/vendor/sass/test/sass/less_conversion_test.rb +0 -653
  263. data/vendor/sass/test/sass/logger_test.rb +0 -58
  264. data/vendor/sass/test/sass/mock_importer.rb +0 -49
  265. data/vendor/sass/test/sass/more_results/more1.css +0 -9
  266. data/vendor/sass/test/sass/more_results/more1_with_line_comments.css +0 -26
  267. data/vendor/sass/test/sass/more_results/more_import.css +0 -29
  268. data/vendor/sass/test/sass/more_templates/_more_partial.sass +0 -2
  269. data/vendor/sass/test/sass/more_templates/more1.sass +0 -23
  270. data/vendor/sass/test/sass/more_templates/more_import.sass +0 -11
  271. data/vendor/sass/test/sass/plugin_test.rb +0 -472
  272. data/vendor/sass/test/sass/results/alt.css +0 -4
  273. data/vendor/sass/test/sass/results/basic.css +0 -9
  274. data/vendor/sass/test/sass/results/compact.css +0 -5
  275. data/vendor/sass/test/sass/results/complex.css +0 -86
  276. data/vendor/sass/test/sass/results/compressed.css +0 -1
  277. data/vendor/sass/test/sass/results/expanded.css +0 -19
  278. data/vendor/sass/test/sass/results/if.css +0 -3
  279. data/vendor/sass/test/sass/results/import.css +0 -31
  280. data/vendor/sass/test/sass/results/import_charset.css +0 -4
  281. data/vendor/sass/test/sass/results/import_charset_1_8.css +0 -4
  282. data/vendor/sass/test/sass/results/import_charset_ibm866.css +0 -4
  283. data/vendor/sass/test/sass/results/line_numbers.css +0 -49
  284. data/vendor/sass/test/sass/results/mixins.css +0 -95
  285. data/vendor/sass/test/sass/results/multiline.css +0 -24
  286. data/vendor/sass/test/sass/results/nested.css +0 -22
  287. data/vendor/sass/test/sass/results/options.css +0 -1
  288. data/vendor/sass/test/sass/results/parent_ref.css +0 -13
  289. data/vendor/sass/test/sass/results/script.css +0 -16
  290. data/vendor/sass/test/sass/results/scss_import.css +0 -31
  291. data/vendor/sass/test/sass/results/scss_importee.css +0 -2
  292. data/vendor/sass/test/sass/results/subdir/nested_subdir/nested_subdir.css +0 -1
  293. data/vendor/sass/test/sass/results/subdir/subdir.css +0 -3
  294. data/vendor/sass/test/sass/results/units.css +0 -11
  295. data/vendor/sass/test/sass/results/warn.css +0 -0
  296. data/vendor/sass/test/sass/results/warn_imported.css +0 -0
  297. data/vendor/sass/test/sass/script_conversion_test.rb +0 -285
  298. data/vendor/sass/test/sass/script_test.rb +0 -514
  299. data/vendor/sass/test/sass/scss/css_test.rb +0 -922
  300. data/vendor/sass/test/sass/scss/rx_test.rb +0 -156
  301. data/vendor/sass/test/sass/scss/scss_test.rb +0 -1273
  302. data/vendor/sass/test/sass/scss/test_helper.rb +0 -37
  303. data/vendor/sass/test/sass/templates/_imported_charset_ibm866.sass +0 -4
  304. data/vendor/sass/test/sass/templates/_imported_charset_utf8.sass +0 -4
  305. data/vendor/sass/test/sass/templates/_partial.sass +0 -2
  306. data/vendor/sass/test/sass/templates/alt.sass +0 -16
  307. data/vendor/sass/test/sass/templates/basic.sass +0 -23
  308. data/vendor/sass/test/sass/templates/bork1.sass +0 -2
  309. data/vendor/sass/test/sass/templates/bork2.sass +0 -2
  310. data/vendor/sass/test/sass/templates/bork3.sass +0 -2
  311. data/vendor/sass/test/sass/templates/bork4.sass +0 -2
  312. data/vendor/sass/test/sass/templates/bork5.sass +0 -3
  313. data/vendor/sass/test/sass/templates/compact.sass +0 -17
  314. data/vendor/sass/test/sass/templates/complex.sass +0 -305
  315. data/vendor/sass/test/sass/templates/compressed.sass +0 -15
  316. data/vendor/sass/test/sass/templates/expanded.sass +0 -17
  317. data/vendor/sass/test/sass/templates/if.sass +0 -11
  318. data/vendor/sass/test/sass/templates/import.sass +0 -12
  319. data/vendor/sass/test/sass/templates/import_charset.sass +0 -7
  320. data/vendor/sass/test/sass/templates/import_charset_1_8.sass +0 -4
  321. data/vendor/sass/test/sass/templates/import_charset_ibm866.sass +0 -9
  322. data/vendor/sass/test/sass/templates/importee.less +0 -2
  323. data/vendor/sass/test/sass/templates/importee.sass +0 -19
  324. data/vendor/sass/test/sass/templates/line_numbers.sass +0 -13
  325. data/vendor/sass/test/sass/templates/mixin_bork.sass +0 -5
  326. data/vendor/sass/test/sass/templates/mixins.sass +0 -76
  327. data/vendor/sass/test/sass/templates/multiline.sass +0 -20
  328. data/vendor/sass/test/sass/templates/nested.sass +0 -25
  329. data/vendor/sass/test/sass/templates/nested_bork1.sass +0 -2
  330. data/vendor/sass/test/sass/templates/nested_bork2.sass +0 -2
  331. data/vendor/sass/test/sass/templates/nested_bork3.sass +0 -2
  332. data/vendor/sass/test/sass/templates/nested_bork4.sass +0 -2
  333. data/vendor/sass/test/sass/templates/nested_bork5.sass +0 -2
  334. data/vendor/sass/test/sass/templates/nested_import.sass +0 -2
  335. data/vendor/sass/test/sass/templates/nested_mixin_bork.sass +0 -6
  336. data/vendor/sass/test/sass/templates/options.sass +0 -2
  337. data/vendor/sass/test/sass/templates/parent_ref.sass +0 -25
  338. data/vendor/sass/test/sass/templates/script.sass +0 -101
  339. data/vendor/sass/test/sass/templates/scss_import.scss +0 -11
  340. data/vendor/sass/test/sass/templates/scss_importee.scss +0 -1
  341. data/vendor/sass/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +0 -2
  342. data/vendor/sass/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +0 -3
  343. data/vendor/sass/test/sass/templates/subdir/subdir.sass +0 -6
  344. data/vendor/sass/test/sass/templates/units.sass +0 -11
  345. data/vendor/sass/test/sass/templates/warn.sass +0 -3
  346. data/vendor/sass/test/sass/templates/warn_imported.sass +0 -4
  347. data/vendor/sass/test/sass/test_helper.rb +0 -8
  348. data/vendor/sass/test/sass/util/subset_map_test.rb +0 -91
  349. data/vendor/sass/test/sass/util_test.rb +0 -266
  350. data/vendor/sass/test/test_helper.rb +0 -69
  351. data/vendor/sass/vendor/fssm/Gemfile +0 -3
  352. data/vendor/sass/vendor/fssm/LICENSE +0 -20
  353. data/vendor/sass/vendor/fssm/README.markdown +0 -83
  354. data/vendor/sass/vendor/fssm/Rakefile +0 -11
  355. data/vendor/sass/vendor/fssm/example.rb +0 -12
  356. data/vendor/sass/vendor/fssm/fssm.gemspec +0 -24
  357. data/vendor/sass/vendor/fssm/lib/fssm.rb +0 -37
  358. data/vendor/sass/vendor/fssm/lib/fssm/backends/fsevents.rb +0 -36
  359. data/vendor/sass/vendor/fssm/lib/fssm/backends/inotify.rb +0 -26
  360. data/vendor/sass/vendor/fssm/lib/fssm/backends/polling.rb +0 -25
  361. data/vendor/sass/vendor/fssm/lib/fssm/backends/rbfsevent.rb +0 -42
  362. data/vendor/sass/vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb +0 -131
  363. data/vendor/sass/vendor/fssm/lib/fssm/monitor.rb +0 -36
  364. data/vendor/sass/vendor/fssm/lib/fssm/path.rb +0 -94
  365. data/vendor/sass/vendor/fssm/lib/fssm/pathname.rb +0 -36
  366. data/vendor/sass/vendor/fssm/lib/fssm/state/directory.rb +0 -75
  367. data/vendor/sass/vendor/fssm/lib/fssm/state/file.rb +0 -24
  368. data/vendor/sass/vendor/fssm/lib/fssm/support.rb +0 -92
  369. data/vendor/sass/vendor/fssm/lib/fssm/tree.rb +0 -176
  370. data/vendor/sass/vendor/fssm/lib/fssm/version.rb +0 -3
  371. data/vendor/sass/vendor/fssm/profile/prof-cache.rb +0 -40
  372. data/vendor/sass/vendor/fssm/profile/prof-fssm-pathname.html +0 -1231
  373. data/vendor/sass/vendor/fssm/profile/prof-pathname-rubinius.rb +0 -35
  374. data/vendor/sass/vendor/fssm/profile/prof-pathname.rb +0 -68
  375. data/vendor/sass/vendor/fssm/profile/prof-plain-pathname.html +0 -988
  376. data/vendor/sass/vendor/fssm/profile/prof.html +0 -2379
  377. data/vendor/sass/vendor/fssm/spec/count_down_latch.rb +0 -151
  378. data/vendor/sass/vendor/fssm/spec/monitor_spec.rb +0 -202
  379. data/vendor/sass/vendor/fssm/spec/path_spec.rb +0 -96
  380. data/vendor/sass/vendor/fssm/spec/root/duck/quack.txt +0 -0
  381. data/vendor/sass/vendor/fssm/spec/root/file.css +0 -0
  382. data/vendor/sass/vendor/fssm/spec/root/file.rb +0 -0
  383. data/vendor/sass/vendor/fssm/spec/root/file.yml +0 -0
  384. data/vendor/sass/vendor/fssm/spec/root/moo/cow.txt +0 -0
  385. data/vendor/sass/vendor/fssm/spec/spec_helper.rb +0 -14
  386. data/vendor/sass/yard/callbacks.rb +0 -29
  387. data/vendor/sass/yard/default/fulldoc/html/css/common.sass +0 -26
  388. data/vendor/sass/yard/default/layout/html/footer.erb +0 -12
  389. data/vendor/sass/yard/inherited_hash.rb +0 -41
@@ -1,29 +0,0 @@
1
- module Sass
2
- module Script
3
- # This is a subclass of {Lexer} for use in parsing plain CSS properties.
4
- #
5
- # @see Sass::SCSS::CssParser
6
- class CssLexer < Lexer
7
- private
8
-
9
- def token
10
- important || super
11
- end
12
-
13
- def string(re, *args)
14
- if re == :uri
15
- return unless uri = scan(URI)
16
- return [:string, Script::String.new(uri)]
17
- end
18
-
19
- return unless scan(STRING)
20
- [:string, Script::String.new((@scanner[1] || @scanner[2]).gsub(/\\(['"])/, '\1'), :string)]
21
- end
22
-
23
- def important
24
- return unless s = scan(IMPORTANT)
25
- [:raw, s]
26
- end
27
- end
28
- end
29
- end
@@ -1,31 +0,0 @@
1
- require 'sass/script'
2
- require 'sass/script/css_lexer'
3
-
4
- module Sass
5
- module Script
6
- # This is a subclass of {Parser} for use in parsing plain CSS properties.
7
- #
8
- # @see Sass::SCSS::CssParser
9
- class CssParser < Parser
10
- private
11
-
12
- # @private
13
- def lexer_class; CssLexer; end
14
-
15
- # We need a production that only does /,
16
- # since * and % aren't allowed in plain CSS
17
- production :div, :unary_plus, :div
18
-
19
- def string
20
- return number unless tok = try_tok(:string)
21
- return tok.value unless @lexer.peek && @lexer.peek.type == :begin_interpolation
22
- end
23
-
24
- # Short-circuit all the SassScript-only productions
25
- alias_method :interpolation, :space
26
- alias_method :or_expr, :div
27
- alias_method :unary_div, :ident
28
- alias_method :paren, :string
29
- end
30
- end
31
- end
@@ -1,175 +0,0 @@
1
- require 'sass/script/functions'
2
-
3
- module Sass
4
- module Script
5
- # A SassScript parse node representing a function call.
6
- #
7
- # A function call either calls one of the functions in {Script::Functions},
8
- # or if no function with the given name exists
9
- # it returns a string representation of the function call.
10
- class Funcall < Node
11
- # The name of the function.
12
- #
13
- # @return [String]
14
- attr_reader :name
15
-
16
- # The arguments to the function.
17
- #
18
- # @return [Array<Script::Node>]
19
- attr_reader :args
20
-
21
- # The keyword arguments to the function.
22
- #
23
- # @return [{String => Script::Node}]
24
- attr_reader :keywords
25
-
26
- # @param name [String] See \{#name}
27
- # @param args [Array<Script::Node>] See \{#args}
28
- # @param keywords [{String => Script::Node}] See \{#keywords}
29
- def initialize(name, args, keywords)
30
- @name = name
31
- @args = args
32
- @keywords = keywords
33
- super()
34
- end
35
-
36
- # @return [String] A string representation of the function call
37
- def inspect
38
- args = @args.map {|a| a.inspect}.join(', ')
39
- keywords = @keywords.sort_by {|k, v| k}.
40
- map {|k, v| "$#{k}: #{v.inspect}"}.join(', ')
41
- "#{name}(#{args}#{', ' unless args.empty? || keywords.empty?}#{keywords})"
42
- end
43
-
44
- # @see Node#to_sass
45
- def to_sass(opts = {})
46
- args = @args.map {|a| a.to_sass(opts)}.join(', ')
47
- keywords = @keywords.sort_by {|k, v| k}.
48
- map {|k, v| "$#{dasherize(k, opts)}: #{v.to_sass(opts)}"}.join(', ')
49
- "#{dasherize(name, opts)}(#{args}#{', ' unless args.empty? || keywords.empty?}#{keywords})"
50
- end
51
-
52
- # Returns the arguments to the function.
53
- #
54
- # @return [Array<Node>]
55
- # @see Node#children
56
- def children
57
- @args + @keywords.values
58
- end
59
-
60
- # @see Node#deep_copy
61
- def deep_copy
62
- node = dup
63
- node.instance_variable_set('@args', args.map {|a| a.deep_copy})
64
- node.instance_variable_set('@keywords', Hash[keywords.map {|k, v| [k, v.deep_copy]}])
65
- node
66
- end
67
-
68
- protected
69
-
70
- # Evaluates the function call.
71
- #
72
- # @param environment [Sass::Environment] The environment in which to evaluate the SassScript
73
- # @return [Literal] The SassScript object that is the value of the function call
74
- # @raise [Sass::SyntaxError] if the function call raises an ArgumentError
75
- def _perform(environment)
76
- args = @args.map {|a| a.perform(environment)}
77
- if fn = environment.function(@name)
78
- keywords = Sass::Util.map_hash(@keywords) {|k, v| [k, v.perform(environment)]}
79
- return perform_sass_fn(fn, args, keywords)
80
- end
81
-
82
- ruby_name = @name.tr('-', '_')
83
- args = construct_ruby_args(ruby_name, args, environment)
84
-
85
- unless Functions.callable?(ruby_name)
86
- opts(to_literal(args))
87
- else
88
- opts(Functions::EvaluationContext.new(environment.options).send(ruby_name, *args))
89
- end
90
- rescue ArgumentError => e
91
- # If this is a legitimate Ruby-raised argument error, re-raise it.
92
- # Otherwise, it's an error in the user's stylesheet, so wrap it.
93
- if e.message =~ /^wrong number of arguments \(\d+ for \d+\)/ &&
94
- e.backtrace[0] !~ /:in `(block in )?#{ruby_name}'$/
95
- raise e
96
- end
97
- raise Sass::SyntaxError.new("#{e.message} for `#{name}'")
98
- end
99
-
100
- # This method is factored out from `_perform` so that compass can override
101
- # it with a cross-browser implementation for functions that require vendor prefixes
102
- # in the generated css.
103
- def to_literal(args)
104
- Script::String.new("#{name}(#{args.join(', ')})")
105
- end
106
-
107
- private
108
-
109
- def construct_ruby_args(name, args, environment)
110
- unless signature = Functions.signature(name.to_sym, args.size, @keywords.size)
111
- return args if keywords.empty?
112
- raise Sass::SyntaxError.new("Function #{name} doesn't support keyword arguments")
113
- end
114
- keywords = Sass::Util.map_hash(@keywords) {|k, v| [k, v.perform(environment)]}
115
-
116
- # If the user passes more non-keyword args than the function expects,
117
- # but it does expect keyword args, Ruby's arg handling won't raise an error.
118
- # Since we don't want to make functions think about this,
119
- # we'll handle it for them here.
120
- if signature.var_kwargs && !signature.var_args && args.size > signature.args.size
121
- raise Sass::SyntaxError.new(
122
- "#{args[signature.args.size].inspect} is not a keyword argument for `#{name}'")
123
- elsif keywords.empty?
124
- return args
125
- end
126
-
127
- args = args + signature.args[args.size..-1].map do |argname|
128
- if keywords.has_key?(argname)
129
- keywords.delete(argname)
130
- else
131
- raise Sass::SyntaxError.new("Function #{name} requires an argument named $#{argname}")
132
- end
133
- end
134
-
135
- if keywords.size > 0
136
- if signature.var_kwargs
137
- args << keywords
138
- else
139
- raise Sass::SyntaxError.new("Function #{name} doesn't take an argument named $#{keywords.keys.sort.first}")
140
- end
141
- end
142
-
143
- args
144
- end
145
-
146
- def perform_sass_fn(function, args, keywords)
147
- # TODO: merge with mixin arg evaluation?
148
- keywords.each do |name, value|
149
- # TODO: Make this fast
150
- unless function.args.find {|(var, default)| var.underscored_name == name}
151
- raise Sass::SyntaxError.new("Function #{@name} doesn't have an argument named $#{name}")
152
- end
153
- end
154
-
155
- if args.size > function.args.size
156
- raise ArgumentError.new("Wrong number of arguments (#{args.size} for #{function.args.size})")
157
- end
158
-
159
- environment = function.args.zip(args).
160
- inject(Sass::Environment.new(function.environment)) do |env, ((var, default), value)|
161
- env.set_local_var(var.name,
162
- value || keywords[var.underscored_name] || (default && default.perform(env)))
163
- raise Sass::SyntaxError.new("Function #{@name} is missing parameter #{var.inspect}.") unless env.var(var.name)
164
- env
165
- end
166
-
167
- val = catch :_sass_return do
168
- function.tree.each {|c| Sass::Tree::Visitors::Perform.visit(c, environment)}
169
- raise Sass::SyntaxError.new("Function #{@name} finished without @return")
170
- end
171
- val
172
- end
173
- end
174
- end
175
- end
@@ -1,1386 +0,0 @@
1
- module Sass::Script
2
- # Methods in this module are accessible from the SassScript context.
3
- # For example, you can write
4
- #
5
- # $color = hsl(120deg, 100%, 50%)
6
- #
7
- # and it will call {Sass::Script::Functions#hsl}.
8
- #
9
- # The following functions are provided:
10
- #
11
- # *Note: These functions are described in more detail below.*
12
- #
13
- # ## RGB Functions
14
- #
15
- # \{#rgb rgb($red, $green, $blue)}
16
- # : Converts an `rgb(red, green, blue)` triplet into a color.
17
- #
18
- # \{#rgba rgba($red, $green, $blue, $alpha)}
19
- # : Converts an `rgba(red, green, blue, alpha)` quadruplet into a color.
20
- #
21
- # \{#rgba rgba($color, $alpha)}
22
- # : Adds an alpha layer to any color value.
23
- #
24
- # \{#red red($color)}
25
- # : Gets the red component of a color.
26
- #
27
- # \{#green green($color)}
28
- # : Gets the green component of a color.
29
- #
30
- # \{#blue blue($color)}
31
- # : Gets the blue component of a color.
32
- #
33
- # \{#mix mix($color-1, $color-2, \[$weight\])}
34
- # : Mixes two colors together.
35
- #
36
- # ## HSL Functions
37
- #
38
- # \{#hsl hsl($hue, $saturation, $lightness)}
39
- # : Converts an `hsl(hue, saturation, lightness)` triplet into a color.
40
- #
41
- # \{#hsla hsla($hue, $saturation, $lightness, $alpha)}
42
- # : Converts an `hsla(hue, saturation, lightness, alpha)` quadruplet into a color.
43
- #
44
- # \{#hue hue($color)}
45
- # : Gets the hue component of a color.
46
- #
47
- # \{#saturation saturation($color)}
48
- # : Gets the saturation component of a color.
49
- #
50
- # \{#lightness lightness($color)}
51
- # : Gets the lightness component of a color.
52
- #
53
- # \{#adjust_hue adjust-hue($color, $degrees)}
54
- # : Changes the hue of a color.
55
- #
56
- # \{#lighten lighten($color, $amount)}
57
- # : Makes a color lighter.
58
- #
59
- # \{#darken darken($color, $amount)}
60
- # : Makes a color darker.
61
- #
62
- # \{#saturate saturate($color, $amount)}
63
- # : Makes a color more saturated.
64
- #
65
- # \{#desaturate desaturate($color, $amount)}
66
- # : Makes a color less saturated.
67
- #
68
- # \{#grayscale grayscale($color)}
69
- # : Converts a color to grayscale.
70
- #
71
- # \{#complement complement($color)}
72
- # : Returns the complement of a color.
73
- #
74
- # \{#invert invert($color)}
75
- # : Returns the inverse of a color.
76
- #
77
- # ## Opacity Functions
78
- #
79
- # \{#alpha alpha($color)} / \{#opacity opacity($color)}
80
- # : Gets the alpha component (opacity) of a color.
81
- #
82
- # \{#rgba rgba($color, $alpha)}
83
- # : Add or change an alpha layer for any color value.
84
- #
85
- # \{#opacify opacify($color, $amount)} / \{#fade_in fade-in($color, $amount)}
86
- # : Makes a color more opaque.
87
- #
88
- # \{#transparentize transparentize($color, $amount)} / \{#fade_out fade-out($color, $amount)}
89
- # : Makes a color more transparent.
90
- #
91
- # ## Other Color Functions
92
- #
93
- # \{#adjust_color adjust-color($color, \[$red\], \[$green\], \[$blue\], \[$hue\], \[$saturation\], \[$lightness\], \[$alpha\]}
94
- # : Increase or decrease any of the components of a color.
95
- #
96
- # \{#scale_color scale-color($color, \[$red\], \[$green\], \[$blue\], \[$saturation\], \[$lightness\], \[$alpha\]}
97
- # : Fluidly scale one or more components of a color.
98
- #
99
- # \{#change_color change-color($color, \[$red\], \[$green\], \[$blue\], \[$hue\], \[$saturation\], \[$lightness\], \[$alpha\]}
100
- # : Changes one or more properties of a color.
101
- #
102
- # ## String Functions
103
- #
104
- # \{#unquote unquote($string)}
105
- # : Removes the quotes from a string.
106
- #
107
- # \{#quote quote($string)}
108
- # : Adds quotes to a string.
109
- #
110
- # ## Number Functions
111
- #
112
- # \{#percentage percentage($value)}
113
- # : Converts a unitless number to a percentage.
114
- #
115
- # \{#round round($value)}
116
- # : Rounds a number to the nearest whole number.
117
- #
118
- # \{#ceil ceil($value)}
119
- # : Rounds a number up to the nearest whole number.
120
- #
121
- # \{#floor floor($value)}
122
- # : Rounds a number down to the nearest whole number.
123
- #
124
- # \{#abs abs($value)}
125
- # : Returns the absolute value of a number.
126
- #
127
- # ## List Functions {#list-functions}
128
- #
129
- # \{#length length($list)}
130
- # : Returns the length of a list.
131
- #
132
- # \{#nth nth($list, $n)}
133
- # : Returns a specific item in a list.
134
- #
135
- # \{#join join($list1, $list2, \[$separator\])}
136
- # : Joins together two lists into one.
137
- #
138
- # ## Introspection Functions
139
- #
140
- # \{#type_of type-of($value)}
141
- # : Returns the type of a value.
142
- #
143
- # \{#unit unit($number)}
144
- # : Returns the units associated with a number.
145
- #
146
- # \{#unitless unitless($number)}
147
- # : Returns whether a number has units or not.
148
- #
149
- # \{#comparable comparable($number-1, $number-2)}
150
- # : Returns whether two numbers can be added or compared.
151
- #
152
- # ## Miscellaneous Functions
153
- #
154
- # \{#if if($condition, $if-true, $if-false)}
155
- # : Returns one of two values, depending on whether or not a condition is true.
156
- #
157
- # ## Adding Custom Functions
158
- #
159
- # New Sass functions can be added by adding Ruby methods to this module.
160
- # For example:
161
- #
162
- # module Sass::Script::Functions
163
- # def reverse(string)
164
- # assert_type string, :String
165
- # Sass::Script::String.new(string.value.reverse)
166
- # end
167
- # declare :reverse, :args => [:string]
168
- # end
169
- #
170
- # Calling {declare} tells Sass the argument names for your function.
171
- # If omitted, the function will still work, but will not be able to accept keyword arguments.
172
- # {declare} can also allow your function to take arbitrary keyword arguments.
173
- #
174
- # There are a few things to keep in mind when modifying this module.
175
- # First of all, the arguments passed are {Sass::Script::Literal} objects.
176
- # Literal objects are also expected to be returned.
177
- # This means that Ruby values must be unwrapped and wrapped.
178
- #
179
- # Most Literal objects support the {Sass::Script::Literal#value value} accessor
180
- # for getting their Ruby values.
181
- # Color objects, though, must be accessed using {Sass::Script::Color#rgb rgb},
182
- # {Sass::Script::Color#red red}, {Sass::Script::Color#blue green}, or {Sass::Script::Color#blue blue}.
183
- #
184
- # Second, making Ruby functions accessible from Sass introduces the temptation
185
- # to do things like database access within stylesheets.
186
- # This is generally a bad idea;
187
- # since Sass files are by default only compiled once,
188
- # dynamic code is not a great fit.
189
- #
190
- # If you really, really need to compile Sass on each request,
191
- # first make sure you have adequate caching set up.
192
- # Then you can use {Sass::Engine} to render the code,
193
- # using the {file:SASS_REFERENCE.md#custom-option `options` parameter}
194
- # to pass in data that {EvaluationContext#options can be accessed}
195
- # from your Sass functions.
196
- #
197
- # Within one of the functions in this module,
198
- # methods of {EvaluationContext} can be used.
199
- #
200
- # ### Caveats
201
- #
202
- # When creating new {Literal} objects within functions,
203
- # be aware that it's not safe to call {Literal#to_s #to_s}
204
- # (or other methods that use the string representation)
205
- # on those objects without first setting {Node#options= the #options attribute}.
206
- module Functions
207
- @signatures = {}
208
-
209
- # A class representing a Sass function signature.
210
- #
211
- # @attr args [Array<Symbol>] The names of the arguments to the function.
212
- # @attr var_args [Boolean] Whether the function takes a variable number of arguments.
213
- # @attr var_kwargs [Boolean] Whether the function takes an arbitrary set of keyword arguments.
214
- Signature = Struct.new(:args, :var_args, :var_kwargs)
215
-
216
- # Declare a Sass signature for a Ruby-defined function.
217
- # This includes the names of the arguments,
218
- # whether the function takes a variable number of arguments,
219
- # and whether the function takes an arbitrary set of keyword arguments.
220
- #
221
- # It's not necessary to declare a signature for a function.
222
- # However, without a signature it won't support keyword arguments.
223
- #
224
- # A single function can have multiple signatures declared
225
- # as long as each one takes a different number of arguments.
226
- # It's also possible to declare multiple signatures
227
- # that all take the same number of arguments,
228
- # but none of them but the first will be used
229
- # unless the user uses keyword arguments.
230
- #
231
- # @param method_name [Symbol] The name of the method
232
- # whose signature is being declared.
233
- # @param args [Array<Symbol>] The names of the arguments for the function signature.
234
- # @option options :var_args [Boolean] (false)
235
- # Whether the function accepts a variable number of (unnamed) arguments
236
- # in addition to the named arguments.
237
- # @option options :var_kwargs [Boolean] (false)
238
- # Whether the function accepts other keyword arguments
239
- # in addition to those in `:args`.
240
- # If this is true, the Ruby function will be passed a hash from strings
241
- # to {Sass::Script::Literal}s as the last argument.
242
- # In addition, if this is true and `:var_args` is not,
243
- # Sass will ensure that the last argument passed is a hash.
244
- #
245
- # @example
246
- # declare :rgba, [:hex, :alpha]
247
- # declare :rgba, [:red, :green, :blue, :alpha]
248
- # declare :accepts_anything, [], :var_args => true, :var_kwargs => true
249
- # declare :some_func, [:foo, :bar, :baz], :var_kwargs => true
250
- def self.declare(method_name, args, options = {})
251
- @signatures[method_name] ||= []
252
- @signatures[method_name] << Signature.new(
253
- args.map {|s| s.to_s},
254
- options[:var_args],
255
- options[:var_kwargs])
256
- end
257
-
258
- # Determine the correct signature for the number of arguments
259
- # passed in for a given function.
260
- # If no signatures match, the first signature is returned for error messaging.
261
- #
262
- # @param method_name [Symbol] The name of the Ruby function to be called.
263
- # @param arg_arity [Number] The number of unnamed arguments the function was passed.
264
- # @param kwarg_arity [Number] The number of keyword arguments the function was passed.
265
- #
266
- # @return [{Symbol => Object}, nil]
267
- # The signature options for the matching signature,
268
- # or nil if no signatures are declared for this function. See {declare}.
269
- def self.signature(method_name, arg_arity, kwarg_arity)
270
- return unless @signatures[method_name]
271
- @signatures[method_name].each do |signature|
272
- return signature if signature.args.size == arg_arity + kwarg_arity
273
- next unless signature.args.size < arg_arity + kwarg_arity
274
-
275
- # We have enough args.
276
- # Now we need to figure out which args are varargs
277
- # and if the signature allows them.
278
- t_arg_arity, t_kwarg_arity = arg_arity, kwarg_arity
279
- if signature.args.size > t_arg_arity
280
- # we transfer some kwargs arity to args arity
281
- # if it does not have enough args -- assuming the names will work out.
282
- t_kwarg_arity -= (signature.args.size - t_arg_arity)
283
- t_arg_arity = signature.args.size
284
- end
285
-
286
- if ( t_arg_arity == signature.args.size || t_arg_arity > signature.args.size && signature.var_args ) &&
287
- (t_kwarg_arity == 0 || t_kwarg_arity > 0 && signature.var_kwargs)
288
- return signature
289
- end
290
- end
291
- @signatures[method_name].first
292
- end
293
-
294
- # The context in which methods in {Script::Functions} are evaluated.
295
- # That means that all instance methods of {EvaluationContext}
296
- # are available to use in functions.
297
- class EvaluationContext
298
- include Functions
299
-
300
- # The options hash for the {Sass::Engine} that is processing the function call
301
- #
302
- # @return [{Symbol => Object}]
303
- attr_reader :options
304
-
305
- # @param options [{Symbol => Object}] See \{#options}
306
- def initialize(options)
307
- @options = options
308
- end
309
-
310
- # Asserts that the type of a given SassScript value
311
- # is the expected type (designated by a symbol).
312
- #
313
- # Valid types are `:Bool`, `:Color`, `:Number`, and `:String`.
314
- # Note that `:String` will match both double-quoted strings
315
- # and unquoted identifiers.
316
- #
317
- # @example
318
- # assert_type value, :String
319
- # assert_type value, :Number
320
- # @param value [Sass::Script::Literal] A SassScript value
321
- # @param type [Symbol] The name of the type the value is expected to be
322
- # @param name [String, nil] The name of the argument.
323
- def assert_type(value, type, name = nil)
324
- return if value.is_a?(Sass::Script.const_get(type))
325
- err = "#{value.inspect} is not a #{type.to_s.downcase}"
326
- err = "$#{name}: " + err if name
327
- raise ArgumentError.new(err)
328
- end
329
- end
330
-
331
- class << self
332
- # Returns whether user function with a given name exists.
333
- #
334
- # @param function_name [String]
335
- # @return [Boolean]
336
- alias_method :callable?, :public_method_defined?
337
-
338
- private
339
- def include(*args)
340
- r = super
341
- # We have to re-include ourselves into EvaluationContext to work around
342
- # an icky Ruby restriction.
343
- EvaluationContext.send :include, self
344
- r
345
- end
346
- end
347
-
348
- # Creates a {Color} object from red, green, and blue values.
349
- #
350
- # @param red [Number]
351
- # A number between 0 and 255 inclusive,
352
- # or between 0% and 100% inclusive
353
- # @param green [Number]
354
- # A number between 0 and 255 inclusive,
355
- # or between 0% and 100% inclusive
356
- # @param blue [Number]
357
- # A number between 0 and 255 inclusive,
358
- # or between 0% and 100% inclusive
359
- # @see #rgba
360
- # @return [Color]
361
- def rgb(red, green, blue)
362
- assert_type red, :Number
363
- assert_type green, :Number
364
- assert_type blue, :Number
365
-
366
- Color.new([red, green, blue].map do |c|
367
- v = c.value
368
- if c.numerator_units == ["%"] && c.denominator_units.empty?
369
- next v * 255 / 100.0 if (0..100).include?(v)
370
- raise ArgumentError.new("Color value #{c} must be between 0% and 100% inclusive")
371
- else
372
- next v if (0..255).include?(v)
373
- raise ArgumentError.new("Color value #{v} must be between 0 and 255 inclusive")
374
- end
375
- end)
376
- end
377
- declare :rgb, [:red, :green, :blue]
378
-
379
- # @see #rgb
380
- # @overload rgba(red, green, blue, alpha)
381
- # Creates a {Color} object from red, green, and blue values,
382
- # as well as an alpha channel indicating opacity.
383
- #
384
- # @param red [Number]
385
- # A number between 0 and 255 inclusive
386
- # @param green [Number]
387
- # A number between 0 and 255 inclusive
388
- # @param blue [Number]
389
- # A number between 0 and 255 inclusive
390
- # @param alpha [Number]
391
- # A number between 0 and 1
392
- # @return [Color]
393
- #
394
- # @overload rgba(color, alpha)
395
- # Sets the opacity of a color.
396
- #
397
- # @example
398
- # rgba(#102030, 0.5) => rgba(16, 32, 48, 0.5)
399
- # rgba(blue, 0.2) => rgba(0, 0, 255, 0.2)
400
- #
401
- # @param color [Color]
402
- # @param alpha [Number]
403
- # A number between 0 and 1
404
- # @return [Color]
405
- def rgba(*args)
406
- case args.size
407
- when 2
408
- color, alpha = args
409
-
410
- assert_type color, :Color
411
- assert_type alpha, :Number
412
-
413
- unless (0..1).include?(alpha.value)
414
- raise ArgumentError.new("Alpha channel #{alpha.value} must be between 0 and 1 inclusive")
415
- end
416
-
417
- color.with(:alpha => alpha.value)
418
- when 4
419
- red, green, blue, alpha = args
420
- rgba(rgb(red, green, blue), alpha)
421
- else
422
- raise ArgumentError.new("wrong number of arguments (#{args.size} for 4)")
423
- end
424
- end
425
- declare :rgba, [:red, :green, :blue, :alpha]
426
- declare :rgba, [:color, :alpha]
427
-
428
- # Creates a {Color} object from hue, saturation, and lightness.
429
- # Uses the algorithm from the [CSS3 spec](http://www.w3.org/TR/css3-color/#hsl-color).
430
- #
431
- # @param hue [Number] The hue of the color.
432
- # Should be between 0 and 360 degrees, inclusive
433
- # @param saturation [Number] The saturation of the color.
434
- # Must be between `0%` and `100%`, inclusive
435
- # @param lightness [Number] The lightness of the color.
436
- # Must be between `0%` and `100%`, inclusive
437
- # @return [Color] The resulting color
438
- # @see #hsla
439
- # @raise [ArgumentError] if `saturation` or `lightness` are out of bounds
440
- def hsl(hue, saturation, lightness)
441
- hsla(hue, saturation, lightness, Number.new(1))
442
- end
443
- declare :hsl, [:hue, :saturation, :lightness]
444
-
445
- # Creates a {Color} object from hue, saturation, and lightness,
446
- # as well as an alpha channel indicating opacity.
447
- # Uses the algorithm from the [CSS3 spec](http://www.w3.org/TR/css3-color/#hsl-color).
448
- #
449
- # @param hue [Number] The hue of the color.
450
- # Should be between 0 and 360 degrees, inclusive
451
- # @param saturation [Number] The saturation of the color.
452
- # Must be between `0%` and `100%`, inclusive
453
- # @param lightness [Number] The lightness of the color.
454
- # Must be between `0%` and `100%`, inclusive
455
- # @param alpha [Number] The opacity of the color.
456
- # Must be between 0 and 1, inclusive
457
- # @return [Color] The resulting color
458
- # @see #hsl
459
- # @raise [ArgumentError] if `saturation`, `lightness`, or `alpha` are out of bounds
460
- def hsla(hue, saturation, lightness, alpha)
461
- assert_type hue, :Number
462
- assert_type saturation, :Number
463
- assert_type lightness, :Number
464
- assert_type alpha, :Number
465
-
466
- unless (0..1).include?(alpha.value)
467
- raise ArgumentError.new("Alpha channel #{alpha.value} must be between 0 and 1")
468
- end
469
-
470
- original_s = saturation
471
- original_l = lightness
472
- # This algorithm is from http://www.w3.org/TR/css3-color#hsl-color
473
- h, s, l = [hue, saturation, lightness].map { |a| a.value }
474
- raise ArgumentError.new("Saturation #{s} must be between 0% and 100%") unless (0..100).include?(s)
475
- raise ArgumentError.new("Lightness #{l} must be between 0% and 100%") unless (0..100).include?(l)
476
-
477
- Color.new(:hue => h, :saturation => s, :lightness => l, :alpha => alpha.value)
478
- end
479
- declare :hsla, [:hue, :saturation, :lightness, :alpha]
480
-
481
- # Returns the red component of a color.
482
- #
483
- # @param color [Color]
484
- # @return [Number]
485
- # @raise [ArgumentError] If `color` isn't a color
486
- def red(color)
487
- assert_type color, :Color
488
- Sass::Script::Number.new(color.red)
489
- end
490
- declare :red, [:color]
491
-
492
- # Returns the green component of a color.
493
- #
494
- # @param color [Color]
495
- # @return [Number]
496
- # @raise [ArgumentError] If `color` isn't a color
497
- def green(color)
498
- assert_type color, :Color
499
- Sass::Script::Number.new(color.green)
500
- end
501
- declare :green, [:color]
502
-
503
- # Returns the blue component of a color.
504
- #
505
- # @param color [Color]
506
- # @return [Number]
507
- # @raise [ArgumentError] If `color` isn't a color
508
- def blue(color)
509
- assert_type color, :Color
510
- Sass::Script::Number.new(color.blue)
511
- end
512
- declare :blue, [:color]
513
-
514
- # Returns the hue component of a color.
515
- #
516
- # See [the CSS3 HSL specification](http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_RGB_to_HSL_or_HSV).
517
- #
518
- # Calculated from RGB where necessary via [this algorithm](http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_RGB_to_HSL_or_HSV).
519
- #
520
- # @param color [Color]
521
- # @return [Number] between 0deg and 360deg
522
- # @see #adjust_hue
523
- # @raise [ArgumentError] if `color` isn't a color
524
- def hue(color)
525
- assert_type color, :Color
526
- Sass::Script::Number.new(color.hue, ["deg"])
527
- end
528
- declare :hue, [:color]
529
-
530
- # Returns the saturation component of a color.
531
- #
532
- # See [the CSS3 HSL specification](http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_RGB_to_HSL_or_HSV).
533
- #
534
- # Calculated from RGB where necessary via [this algorithm](http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_RGB_to_HSL_or_HSV).
535
- #
536
- # @param color [Color]
537
- # @return [Number] between 0% and 100%
538
- # @see #saturate
539
- # @see #desaturate
540
- # @raise [ArgumentError] if `color` isn't a color
541
- def saturation(color)
542
- assert_type color, :Color
543
- Sass::Script::Number.new(color.saturation, ["%"])
544
- end
545
- declare :saturation, [:color]
546
-
547
- # Returns the hue component of a color.
548
- #
549
- # See [the CSS3 HSL specification](http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_RGB_to_HSL_or_HSV).
550
- #
551
- # Calculated from RGB where necessary via [this algorithm](http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_RGB_to_HSL_or_HSV).
552
- #
553
- # @param color [Color]
554
- # @return [Number] between 0% and 100%
555
- # @see #lighten
556
- # @see #darken
557
- # @raise [ArgumentError] if `color` isn't a color
558
- def lightness(color)
559
- assert_type color, :Color
560
- Sass::Script::Number.new(color.lightness, ["%"])
561
- end
562
- declare :lightness, [:color]
563
-
564
- # Returns the alpha component (opacity) of a color.
565
- # This is 1 unless otherwise specified.
566
- #
567
- # This function also supports the proprietary Microsoft
568
- # `alpha(opacity=20)` syntax.
569
- #
570
- # @overload def alpha(color)
571
- # @param color [Color]
572
- # @return [Number]
573
- # @see #opacify
574
- # @see #transparentize
575
- # @raise [ArgumentError] If `color` isn't a color
576
- def alpha(*args)
577
- if args.all? do |a|
578
- a.is_a?(Sass::Script::String) && a.type == :identifier &&
579
- a.value =~ /^[a-zA-Z]+\s*=/
580
- end
581
- # Support the proprietary MS alpha() function
582
- return Sass::Script::String.new("alpha(#{args.map {|a| a.to_s}.join(", ")})")
583
- end
584
-
585
- opacity(*args)
586
- end
587
- declare :alpha, [:color]
588
-
589
- # Returns the alpha component (opacity) of a color.
590
- # This is 1 unless otherwise specified.
591
- #
592
- # @param color [Color]
593
- # @return [Number]
594
- # @see #opacify
595
- # @see #transparentize
596
- # @raise [ArgumentError] If `color` isn't a color
597
- def opacity(color)
598
- assert_type color, :Color
599
- Sass::Script::Number.new(color.alpha)
600
- end
601
- declare :opacity, [:color]
602
-
603
- # Makes a color more opaque.
604
- # Takes a color and an amount between 0 and 1,
605
- # and returns a color with the opacity increased by that value.
606
- #
607
- # @example
608
- # opacify(rgba(0, 0, 0, 0.5), 0.1) => rgba(0, 0, 0, 0.6)
609
- # opacify(rgba(0, 0, 17, 0.8), 0.2) => #001
610
- # @param color [Color]
611
- # @param amount [Number]
612
- # @return [Color]
613
- # @see #transparentize
614
- # @raise [ArgumentError] If `color` isn't a color,
615
- # or `number` isn't a number between 0 and 1
616
- def opacify(color, amount)
617
- _adjust(color, amount, :alpha, 0..1, :+)
618
- end
619
- declare :opacify, [:color, :amount]
620
-
621
- alias_method :fade_in, :opacify
622
- declare :fade_in, [:color, :amount]
623
-
624
- # Makes a color more transparent.
625
- # Takes a color and an amount between 0 and 1,
626
- # and returns a color with the opacity decreased by that value.
627
- #
628
- # @example
629
- # transparentize(rgba(0, 0, 0, 0.5), 0.1) => rgba(0, 0, 0, 0.4)
630
- # transparentize(rgba(0, 0, 0, 0.8), 0.2) => rgba(0, 0, 0, 0.6)
631
- # @param color [Color]
632
- # @param amount [Number]
633
- # @return [Color]
634
- # @see #opacify
635
- # @raise [ArgumentError] If `color` isn't a color,
636
- # or `number` isn't a number between 0 and 1
637
- def transparentize(color, amount)
638
- _adjust(color, amount, :alpha, 0..1, :-)
639
- end
640
- declare :transparentize, [:color, :amount]
641
-
642
- alias_method :fade_out, :transparentize
643
- declare :fade_out, [:color, :amount]
644
-
645
- # Makes a color lighter.
646
- # Takes a color and an amount between 0% and 100%,
647
- # and returns a color with the lightness increased by that value.
648
- #
649
- # @example
650
- # lighten(hsl(0, 0%, 0%), 30%) => hsl(0, 0, 30)
651
- # lighten(#800, 20%) => #e00
652
- # @param color [Color]
653
- # @param amount [Number]
654
- # @return [Color]
655
- # @see #darken
656
- # @raise [ArgumentError] If `color` isn't a color,
657
- # or `number` isn't a number between 0% and 100%
658
- def lighten(color, amount)
659
- _adjust(color, amount, :lightness, 0..100, :+, "%")
660
- end
661
- declare :lighten, [:color, :amount]
662
-
663
- # Makes a color darker.
664
- # Takes a color and an amount between 0% and 100%,
665
- # and returns a color with the lightness decreased by that value.
666
- #
667
- # @example
668
- # darken(hsl(25, 100%, 80%), 30%) => hsl(25, 100%, 50%)
669
- # darken(#800, 20%) => #200
670
- # @param color [Color]
671
- # @param amount [Number]
672
- # @return [Color]
673
- # @see #lighten
674
- # @raise [ArgumentError] If `color` isn't a color,
675
- # or `number` isn't a number between 0% and 100%
676
- def darken(color, amount)
677
- _adjust(color, amount, :lightness, 0..100, :-, "%")
678
- end
679
- declare :darken, [:color, :amount]
680
-
681
- # Makes a color more saturated.
682
- # Takes a color and an amount between 0% and 100%,
683
- # and returns a color with the saturation increased by that value.
684
- #
685
- # @example
686
- # saturate(hsl(120, 30%, 90%), 20%) => hsl(120, 50%, 90%)
687
- # saturate(#855, 20%) => #9e3f3f
688
- # @param color [Color]
689
- # @param amount [Number]
690
- # @return [Color]
691
- # @see #desaturate
692
- # @raise [ArgumentError] If `color` isn't a color,
693
- # or `number` isn't a number between 0% and 100%
694
- def saturate(color, amount)
695
- _adjust(color, amount, :saturation, 0..100, :+, "%")
696
- end
697
- declare :saturate, [:color, :amount]
698
-
699
- # Makes a color less saturated.
700
- # Takes a color and an amount between 0% and 100%,
701
- # and returns a color with the saturation decreased by that value.
702
- #
703
- # @example
704
- # desaturate(hsl(120, 30%, 90%), 20%) => hsl(120, 10%, 90%)
705
- # desaturate(#855, 20%) => #726b6b
706
- # @param color [Color]
707
- # @param amount [Number]
708
- # @return [Color]
709
- # @see #saturate
710
- # @raise [ArgumentError] If `color` isn't a color,
711
- # or `number` isn't a number between 0% and 100%
712
- def desaturate(color, amount)
713
- _adjust(color, amount, :saturation, 0..100, :-, "%")
714
- end
715
- declare :desaturate, [:color, :amount]
716
-
717
- # Changes the hue of a color while retaining the lightness and saturation.
718
- # Takes a color and a number of degrees (usually between -360deg and 360deg),
719
- # and returns a color with the hue rotated by that value.
720
- #
721
- # @example
722
- # adjust-hue(hsl(120, 30%, 90%), 60deg) => hsl(180, 30%, 90%)
723
- # adjust-hue(hsl(120, 30%, 90%), 060deg) => hsl(60, 30%, 90%)
724
- # adjust-hue(#811, 45deg) => #886a11
725
- # @param color [Color]
726
- # @param amount [Number]
727
- # @return [Color]
728
- # @raise [ArgumentError] If `color` isn't a color, or `number` isn't a number
729
- def adjust_hue(color, degrees)
730
- assert_type color, :Color
731
- assert_type degrees, :Number
732
- color.with(:hue => color.hue + degrees.value)
733
- end
734
- declare :adjust_hue, [:color, :degrees]
735
-
736
- # Adjusts one or more properties of a color.
737
- # This can change the red, green, blue, hue, saturation, value, and alpha properties.
738
- # The properties are specified as keyword arguments,
739
- # and are added to or subtracted from the color's current value for that property.
740
- #
741
- # `$red`, `$green`, and `$blue` properties should be between 0 and 255.
742
- # `$saturation` and `$lightness` should be between 0% and 100%.
743
- # `$alpha` should be between 0 and 1.
744
- #
745
- # All properties are optional.
746
- # You can't specify both RGB properties (`$red`, `$green`, `$blue`)
747
- # and HSL properties (`$hue`, `$saturation`, `$value`) at the same time.
748
- #
749
- # @example
750
- # adjust-color(#102030, $blue: 5) => #102035
751
- # adjust-color(#102030, $red: -5, $blue: 5) => #0b2035
752
- # adjust-color(hsl(25, 100%, 80%), $lightness: -30%, $alpha: -0.4) => hsla(25, 100%, 50%, 0.6)
753
- # @param color [Color]
754
- # @param red [Number]
755
- # @param green [Number]
756
- # @param blue [Number]
757
- # @param hue [Number]
758
- # @param saturation [Number]
759
- # @param lightness [Number]
760
- # @param alpha [Number]
761
- # @return [Color]
762
- # @raise [ArgumentError] if `color` is not a color,
763
- # if any keyword argument is not a number,
764
- # if any keyword argument is not in the legal range,
765
- # if an unexpected keyword argument is given,
766
- # or if both HSL and RGB properties are given.
767
- def adjust_color(color, kwargs)
768
- assert_type color, :Color
769
- with = Sass::Util.map_hash({
770
- "red" => [-255..255, ""],
771
- "green" => [-255..255, ""],
772
- "blue" => [-255..255, ""],
773
- "hue" => nil,
774
- "saturation" => [-100..100, "%"],
775
- "lightness" => [-100..100, "%"],
776
- "alpha" => [-1..1, ""]
777
- }) do |name, (range, units)|
778
-
779
- next unless val = kwargs.delete(name)
780
- assert_type val, :Number, name
781
- if range && !range.include?(val.value)
782
- raise ArgumentError.new("$#{name}: Amount #{val} must be between #{range.first}#{units} and #{range.last}#{units}")
783
- end
784
- adjusted = color.send(name) + val.value
785
- adjusted = [0, Sass::Util.restrict(adjusted, range)].max if range
786
- [name.to_sym, adjusted]
787
- end
788
-
789
- unless kwargs.empty?
790
- name, val = kwargs.to_a.first
791
- raise ArgumentError.new("Unknown argument $#{name} (#{val})")
792
- end
793
-
794
- color.with(with)
795
- end
796
- declare :adjust_color, [:color], :var_kwargs => true
797
-
798
- # Scales one or more properties of a color by a percentage value.
799
- # Unlike \{#adjust_color adjust-color}, which changes a color's properties by fixed amounts,
800
- # \{#scale_color scale-color} fluidly changes them based on how high or low they already are.
801
- # That means that lightening an already-light color with \{#scale_color scale-color}
802
- # won't change the lightness much,
803
- # but lightening a dark color by the same amount will change it more dramatically.
804
- # This has the benefit of making `scale-color($color, ...)` have a similar effect
805
- # regardless of what `$color` is.
806
- #
807
- # For example, the lightness of a color can be anywhere between 0 and 100.
808
- # If `scale-color($color, $lightness: 40%)` is called, the resulting color's lightness
809
- # will be 40% of the way between its original lightness and 100.
810
- # If `scale-color($color, $lightness: -40%)` is called instead,
811
- # the lightness will be 40% of the way between the original and 0.
812
- #
813
- # This can change the red, green, blue, saturation, value, and alpha properties.
814
- # The properties are specified as keyword arguments.
815
- # All arguments should be percentages between 0% and 100%.
816
- #
817
- # All properties are optional.
818
- # You can't specify both RGB properties (`$red`, `$green`, `$blue`)
819
- # and HSL properties (`$saturation`, `$value`) at the same time.
820
- #
821
- # @example
822
- # scale-color(hsl(120, 70, 80), $lightness: 50%) => hsl(120, 70, 90)
823
- # scale-color(rgb(200, 150, 170), $green: -40%, $blue: 70%) => rgb(200, 90, 229)
824
- # scale-color(hsl(200, 70, 80), $saturation: -90%, $alpha: -30%) => hsla(200, 7, 80, 0.7)
825
- # @param color [Color]
826
- # @param red [Number]
827
- # @param green [Number]
828
- # @param blue [Number]
829
- # @param saturation [Number]
830
- # @param lightness [Number]
831
- # @param alpha [Number]
832
- # @return [Color]
833
- # @raise [ArgumentError] if `color` is not a color,
834
- # if any keyword argument is not a percentage between 0% and 100%,
835
- # if an unexpected keyword argument is given,
836
- # or if both HSL and RGB properties are given.
837
- def scale_color(color, kwargs)
838
- assert_type color, :Color
839
- with = Sass::Util.map_hash({
840
- "red" => 255,
841
- "green" => 255,
842
- "blue" => 255,
843
- "saturation" => 100,
844
- "lightness" => 100,
845
- "alpha" => 1
846
- }) do |name, max|
847
-
848
- next unless val = kwargs.delete(name)
849
- assert_type val, :Number, name
850
- if !(val.numerator_units == ['%'] && val.denominator_units.empty?)
851
- raise ArgumentError.new("$#{name}: Amount #{val} must be a % (e.g. #{val.value}%)")
852
- elsif !(-100..100).include?(val.value)
853
- raise ArgumentError.new("$#{name}: Amount #{val} must be between -100% and 100%")
854
- end
855
-
856
- current = color.send(name)
857
- scale = val.value/100.0
858
- diff = scale > 0 ? max - current : current
859
- [name.to_sym, current + diff*scale]
860
- end
861
-
862
- unless kwargs.empty?
863
- name, val = kwargs.to_a.first
864
- raise ArgumentError.new("Unknown argument $#{name} (#{val})")
865
- end
866
-
867
- color.with(with)
868
- end
869
- declare :scale_color, [:color], :var_kwargs => true
870
-
871
- # Changes one or more properties of a color.
872
- # This can change the red, green, blue, hue, saturation, value, and alpha properties.
873
- # The properties are specified as keyword arguments,
874
- # and replace the color's current value for that property.
875
- #
876
- # `$red`, `$green`, and `$blue` properties should be between 0 and 255.
877
- # `$saturation` and `$lightness` should be between 0% and 100%.
878
- # `$alpha` should be between 0 and 1.
879
- #
880
- # All properties are optional.
881
- # You can't specify both RGB properties (`$red`, `$green`, `$blue`)
882
- # and HSL properties (`$hue`, `$saturation`, `$value`) at the same time.
883
- #
884
- # @example
885
- # change-color(#102030, $blue: 5) => #102005
886
- # change-color(#102030, $red: 120, $blue: 5) => #782005
887
- # change-color(hsl(25, 100%, 80%), $lightness: 40%, $alpha: 0.8) => hsla(25, 100%, 40%, 0.8)
888
- # @param color [Color]
889
- # @param red [Number]
890
- # @param green [Number]
891
- # @param blue [Number]
892
- # @param hue [Number]
893
- # @param saturation [Number]
894
- # @param lightness [Number]
895
- # @param alpha [Number]
896
- # @return [Color]
897
- # @raise [ArgumentError] if `color` is not a color,
898
- # if any keyword argument is not a number,
899
- # if any keyword argument is not in the legal range,
900
- # if an unexpected keyword argument is given,
901
- # or if both HSL and RGB properties are given.
902
- def change_color(color, kwargs)
903
- assert_type color, :Color
904
- with = Sass::Util.map_hash(%w[red green blue hue saturation lightness alpha]) do |name, max|
905
- next unless val = kwargs.delete(name)
906
- assert_type val, :Number, name
907
- [name.to_sym, val.value]
908
- end
909
-
910
- unless kwargs.empty?
911
- name, val = kwargs.to_a.first
912
- raise ArgumentError.new("Unknown argument $#{name} (#{val})")
913
- end
914
-
915
- color.with(with)
916
- end
917
- declare :change_color, [:color], :var_kwargs => true
918
-
919
- # Mixes together two colors.
920
- # Specifically, takes the average of each of the RGB components,
921
- # optionally weighted by the given percentage.
922
- # The opacity of the colors is also considered when weighting the components.
923
- #
924
- # The weight specifies the amount of the first color that should be included
925
- # in the returned color.
926
- # The default, 50%, means that half the first color
927
- # and half the second color should be used.
928
- # 25% means that a quarter of the first color
929
- # and three quarters of the second color should be used.
930
- #
931
- # @example
932
- # mix(#f00, #00f) => #7f007f
933
- # mix(#f00, #00f, 25%) => #3f00bf
934
- # mix(rgba(255, 0, 0, 0.5), #00f) => rgba(63, 0, 191, 0.75)
935
- # @overload mix(color1, color2, weight: 50%)
936
- # @param color1 [Color]
937
- # @param color2 [Color]
938
- # @param weight [Number] between 0% and 100%
939
- # @return [Color]
940
- # @raise [ArgumentError] if `color1` or `color2` aren't colors,
941
- # or `weight` isn't a number between 0% and 100%
942
- def mix(color1, color2, weight = Number.new(50))
943
- assert_type color1, :Color
944
- assert_type color2, :Color
945
- assert_type weight, :Number
946
-
947
- unless (0..100).include?(weight.value)
948
- raise ArgumentError.new("Weight #{weight} must be between 0% and 100%")
949
- end
950
-
951
- # This algorithm factors in both the user-provided weight
952
- # and the difference between the alpha values of the two colors
953
- # to decide how to perform the weighted average of the two RGB values.
954
- #
955
- # It works by first normalizing both parameters to be within [-1, 1],
956
- # where 1 indicates "only use color1", -1 indicates "only use color 0",
957
- # and all values in between indicated a proportionately weighted average.
958
- #
959
- # Once we have the normalized variables w and a,
960
- # we apply the formula (w + a)/(1 + w*a)
961
- # to get the combined weight (in [-1, 1]) of color1.
962
- # This formula has two especially nice properties:
963
- #
964
- # * When either w or a are -1 or 1, the combined weight is also that number
965
- # (cases where w * a == -1 are undefined, and handled as a special case).
966
- #
967
- # * When a is 0, the combined weight is w, and vice versa
968
- #
969
- # Finally, the weight of color1 is renormalized to be within [0, 1]
970
- # and the weight of color2 is given by 1 minus the weight of color1.
971
- p = weight.value/100.0
972
- w = p*2 - 1
973
- a = color1.alpha - color2.alpha
974
-
975
- w1 = (((w * a == -1) ? w : (w + a)/(1 + w*a)) + 1)/2.0
976
- w2 = 1 - w1
977
-
978
- rgb = color1.rgb.zip(color2.rgb).map {|v1, v2| v1*w1 + v2*w2}
979
- alpha = color1.alpha*p + color2.alpha*(1-p)
980
- Color.new(rgb + [alpha])
981
- end
982
- declare :mix, [:color_1, :color_2]
983
- declare :mix, [:color_1, :color_2, :weight]
984
-
985
- # Converts a color to grayscale.
986
- # This is identical to `desaturate(color, 100%)`.
987
- #
988
- # @param color [Color]
989
- # @return [Color]
990
- # @raise [ArgumentError] if `color` isn't a color
991
- # @see #desaturate
992
- def grayscale(color)
993
- desaturate color, Number.new(100)
994
- end
995
- declare :grayscale, [:color]
996
-
997
- # Returns the complement of a color.
998
- # This is identical to `adjust-hue(color, 180deg)`.
999
- #
1000
- # @param color [Color]
1001
- # @return [Color]
1002
- # @raise [ArgumentError] if `color` isn't a color
1003
- # @see #adjust_hue #adjust-hue
1004
- def complement(color)
1005
- adjust_hue color, Number.new(180)
1006
- end
1007
- declare :complement, [:color]
1008
-
1009
- # Returns the inverse (negative) of a color.
1010
- # The red, green, and blue values are inverted, while the opacity is left alone.
1011
- #
1012
- # @param color [Color]
1013
- # @return [Color]
1014
- # @raise [ArgumentError] if `color` isn't a color
1015
- def invert(color)
1016
- assert_type color, :Color
1017
- color.with(
1018
- :red => (255 - color.red),
1019
- :green => (255 - color.green),
1020
- :blue => (255 - color.blue))
1021
- end
1022
-
1023
- # Removes quotes from a string if the string is quoted,
1024
- # or returns the same string if it's not.
1025
- #
1026
- # @param string [String]
1027
- # @return [String]
1028
- # @raise [ArgumentError] if `string` isn't a string
1029
- # @see #quote
1030
- # @example
1031
- # unquote("foo") => foo
1032
- # unquote(foo) => foo
1033
- def unquote(string)
1034
- if string.is_a?(Sass::Script::String)
1035
- Sass::Script::String.new(string.value, :identifier)
1036
- else
1037
- string
1038
- end
1039
- end
1040
- declare :unquote, [:string]
1041
-
1042
- # Add quotes to a string if the string isn't quoted,
1043
- # or returns the same string if it is.
1044
- #
1045
- # @param string [String]
1046
- # @return [String]
1047
- # @raise [ArgumentError] if `string` isn't a string
1048
- # @see #unquote
1049
- # @example
1050
- # quote("foo") => "foo"
1051
- # quote(foo) => "foo"
1052
- def quote(string)
1053
- assert_type string, :String
1054
- Sass::Script::String.new(string.value, :string)
1055
- end
1056
- declare :quote, [:string]
1057
-
1058
- # Inspects the type of the argument, returning it as an unquoted string.
1059
- #
1060
- # @example
1061
- # type-of(100px) => number
1062
- # type-of(asdf) => string
1063
- # type-of("asdf") => string
1064
- # type-of(true) => bool
1065
- # type-of(#fff) => color
1066
- # type-of(blue) => color
1067
- # @param value [Literal] The object to inspect
1068
- # @return [String] The unquoted string name of the literal's type
1069
- def type_of(value)
1070
- Sass::Script::String.new(value.class.name.gsub(/Sass::Script::/,'').downcase)
1071
- end
1072
- declare :type_of, [:value]
1073
-
1074
- # Inspects the unit of the number, returning it as a quoted string.
1075
- # Complex units are sorted in alphabetical order by numerator and denominator.
1076
- #
1077
- # @example
1078
- # unit(100) => ""
1079
- # unit(100px) => "px"
1080
- # unit(3em) => "em"
1081
- # unit(10px * 5em) => "em*px"
1082
- # unit(10px * 5em / 30cm / 1rem) => "em*px/cm*rem"
1083
- # @param number [Literal] The number to inspect
1084
- # @return [String] The unit(s) of the number
1085
- # @raise [ArgumentError] if `number` isn't a number
1086
- def unit(number)
1087
- assert_type number, :Number
1088
- Sass::Script::String.new(number.unit_str, :string)
1089
- end
1090
- declare :unit, [:number]
1091
-
1092
- # Inspects the unit of the number, returning a boolean indicating if it is unitless.
1093
- #
1094
- # @example
1095
- # unitless(100) => true
1096
- # unitless(100px) => false
1097
- # @param number [Literal] The number to inspect
1098
- # @return [Bool] Whether or not the number is unitless
1099
- # @raise [ArgumentError] if `number` isn't a number
1100
- def unitless(number)
1101
- assert_type number, :Number
1102
- Sass::Script::Bool.new(number.unitless?)
1103
- end
1104
- declare :unitless, [:number]
1105
-
1106
- # Returns true if two numbers are similar enough to be added, subtracted, or compared.
1107
- #
1108
- # @example
1109
- # comparable(2px, 1px) => true
1110
- # comparable(100px, 3em) => false
1111
- # comparable(10cm, 3mm) => true
1112
- # @param number_1 [Number]
1113
- # @param number_2 [Number]
1114
- # @return [Bool] indicating if the numbers can be compared.
1115
- # @raise [ArgumentError] if `number_1` or `number_2` aren't numbers
1116
- def comparable(number_1, number_2)
1117
- assert_type number_1, :Number
1118
- assert_type number_2, :Number
1119
- Sass::Script::Bool.new(number_1.comparable_to?(number_2))
1120
- end
1121
- declare :comparable, [:number_1, :number_2]
1122
-
1123
- # Converts a decimal number to a percentage.
1124
- #
1125
- # @example
1126
- # percentage(100px / 50px) => 200%
1127
- # @param value [Number] The decimal number to convert to a percentage
1128
- # @return [Number] The percentage
1129
- # @raise [ArgumentError] If `value` isn't a unitless number
1130
- def percentage(value)
1131
- unless value.is_a?(Sass::Script::Number) && value.unitless?
1132
- raise ArgumentError.new("#{value.inspect} is not a unitless number")
1133
- end
1134
- Sass::Script::Number.new(value.value * 100, ['%'])
1135
- end
1136
- declare :percentage, [:value]
1137
-
1138
- # Rounds a number to the nearest whole number.
1139
- #
1140
- # @example
1141
- # round(10.4px) => 10px
1142
- # round(10.6px) => 11px
1143
- # @param value [Number] The number
1144
- # @return [Number] The rounded number
1145
- # @raise [ArgumentError] if `value` isn't a number
1146
- def round(value)
1147
- numeric_transformation(value) {|n| n.round}
1148
- end
1149
- declare :round, [:value]
1150
-
1151
- # Rounds a number up to the nearest whole number.
1152
- #
1153
- # @example
1154
- # ciel(10.4px) => 11px
1155
- # ciel(10.6px) => 11px
1156
- # @param value [Number] The number
1157
- # @return [Number] The rounded number
1158
- # @raise [ArgumentError] if `value` isn't a number
1159
- def ceil(value)
1160
- numeric_transformation(value) {|n| n.ceil}
1161
- end
1162
- declare :ceil, [:value]
1163
-
1164
- # Rounds down to the nearest whole number.
1165
- #
1166
- # @example
1167
- # floor(10.4px) => 10px
1168
- # floor(10.6px) => 10px
1169
- # @param value [Number] The number
1170
- # @return [Number] The rounded number
1171
- # @raise [ArgumentError] if `value` isn't a number
1172
- def floor(value)
1173
- numeric_transformation(value) {|n| n.floor}
1174
- end
1175
- declare :floor, [:value]
1176
-
1177
- # Finds the absolute value of a number.
1178
- #
1179
- # @example
1180
- # abs(10px) => 10px
1181
- # abs(-10px) => 10px
1182
- # @param value [Number] The number
1183
- # @return [Number] The absolute value
1184
- # @raise [ArgumentError] if `value` isn't a number
1185
- def abs(value)
1186
- numeric_transformation(value) {|n| n.abs}
1187
- end
1188
- declare :abs, [:value]
1189
-
1190
- # Return the length of a list.
1191
- #
1192
- # @example
1193
- # length(10px) => 1
1194
- # length(10px 20px 30px) => 3
1195
- # @param list [Literal] The list
1196
- # @return [Number] The length
1197
- def length(list)
1198
- Sass::Script::Number.new(list.to_a.size)
1199
- end
1200
- declare :length, [:list]
1201
-
1202
- # Gets the nth item in a list.
1203
- #
1204
- # Note that unlike some languages, the first item in a Sass list is number 1,
1205
- # the second number 2, and so forth.
1206
- #
1207
- # @example
1208
- # nth(10px 20px 30px, 1) => 10px
1209
- # nth((Helvetica, Arial, sans-serif), 3) => sans-serif
1210
- # @param list [Literal] The list
1211
- # @param n [Number] The index into the list
1212
- # @return [Literal] The nth item in the list
1213
- # @raise [ArgumentError] If `n` isn't an integer between 1 and the list's length.
1214
- def nth(list, n)
1215
- assert_type n, :Number
1216
- if !n.int?
1217
- raise ArgumentError.new("List index #{n} must be an integer")
1218
- elsif n.to_i < 1
1219
- raise ArgumentError.new("List index #{n} must be greater than or equal to 1")
1220
- elsif list.to_a.size == 0
1221
- raise ArgumentError.new("List index is #{n} but list has no items")
1222
- elsif n.to_i > (size = list.to_a.size)
1223
- raise ArgumentError.new("List index is #{n} but list is only #{size} item#{'s' if size != 1} long")
1224
- end
1225
-
1226
- list.to_a[n.to_i - 1]
1227
- end
1228
- declare :nth, [:list, :n]
1229
-
1230
- # Joins together two lists into a new list.
1231
- #
1232
- # Unless the `$separator` argument is passed,
1233
- # if one list is comma-separated and one is space-separated,
1234
- # the first parameter's separator is used for the resulting list.
1235
- # If the lists have only one item each, spaces are used for the resulting list.
1236
- #
1237
- # @example
1238
- # join(10px 20px, 30px 40px) => 10px 20px 30px 40px
1239
- # join((blue, red), (#abc, #def)) => blue, red, #abc, #def
1240
- # join(10px, 20px) => 10px 20px
1241
- # join(10px, 20px, comma) => 10px, 20px
1242
- # join((blue, red), (#abc, #def), space) => blue red #abc #def
1243
- # @overload join(list1, list2, separator: auto)
1244
- # @param list1 [Literal] The first list to join
1245
- # @param list2 [Literal] The second list to join
1246
- # @param separator [String] How the list separator (comma or space) should be determined.
1247
- # If this is `comma` or `space`, that is always the separator;
1248
- # if this is `auto` (the default), the separator is determined as explained above.
1249
- def join(list1, list2, separator = Sass::Script::String.new("auto"))
1250
- assert_type separator, :String
1251
- unless %w[auto space comma].include?(separator.value)
1252
- raise ArgumentError.new("Separator name must be space, comma, or auto")
1253
- end
1254
- sep1 = list1.separator if list1.is_a?(Sass::Script::List) && !list1.value.empty?
1255
- sep2 = list2.separator if list2.is_a?(Sass::Script::List) && !list2.value.empty?
1256
- Sass::Script::List.new(
1257
- list1.to_a + list2.to_a,
1258
- if separator.value == 'auto'
1259
- sep1 || sep2 || :space
1260
- else
1261
- separator.value.to_sym
1262
- end)
1263
- end
1264
- declare :join, [:list1, :list2]
1265
- declare :join, [:list1, :list2, :separator]
1266
-
1267
- # Appends a single value onto the end of a list.
1268
- #
1269
- # Unless the `$separator` argument is passed,
1270
- # if the list has only one item,
1271
- # the resulting list will be space-separated.
1272
- #
1273
- # @example
1274
- # append(10px 20px, 30px) => 10px 20px 30px
1275
- # append((blue, red), green) => blue, red, green
1276
- # append(10px 20px, 30px 40px) => 10px 20px (30px 40px)
1277
- # join(10px, 20px, comma) => 10px, 20px
1278
- # join((blue, red), green, space) => blue red green
1279
- # @overload join(list, val, separator: auto)
1280
- # @param list1 [Literal] The first list to join
1281
- # @param list2 [Literal] The second list to join
1282
- # @param separator [String] How the list separator (comma or space) should be determined.
1283
- # If this is `comma` or `space`, that is always the separator;
1284
- # if this is `auto` (the default), the separator is determined as explained above.
1285
- def append(list, val, separator = Sass::Script::String.new("auto"))
1286
- assert_type separator, :String
1287
- unless %w[auto space comma].include?(separator.value)
1288
- raise ArgumentError.new("Separator name must be space, comma, or auto")
1289
- end
1290
- sep = list.separator if list.is_a?(Sass::Script::List)
1291
- Sass::Script::List.new(
1292
- list.to_a + [val],
1293
- if separator.value == 'auto'
1294
- sep || :space
1295
- else
1296
- separator.value.to_sym
1297
- end)
1298
- end
1299
- declare :append, [:list, :val]
1300
- declare :append, [:list, :val, :separator]
1301
-
1302
- # Combines several lists into a single comma separated list
1303
- # space separated lists.
1304
- #
1305
- # The length of the resulting list is the length of the
1306
- # shortest list.
1307
- #
1308
- # @example
1309
- # zip(1px 1px 3px, solid dashed solid, red green blue)
1310
- # => 1px solid red, 1px dashed green, 3px solid blue
1311
- def zip(*lists)
1312
- length = nil
1313
- values = []
1314
- lists.each do |list|
1315
- assert_type list, :List
1316
- values << list.value.dup
1317
- length = length.nil? ? list.value.length : [length, list.value.length].min
1318
- end
1319
- values.each do |value|
1320
- value.slice!(length)
1321
- end
1322
- new_list_value = values.first.zip(*values[1..-1])
1323
- List.new(new_list_value.map{|list| List.new(list, :space)}, :comma)
1324
- end
1325
- declare :zip, [], :var_args => true
1326
-
1327
-
1328
- # Returns the position of the given value within the given
1329
- # list. If not found, returns false.
1330
- #
1331
- # @example
1332
- # index(1px solid red, solid) => 2
1333
- # index(1px solid red, dashed) => false
1334
- def index(list, value)
1335
- assert_type list, :List
1336
- index = list.value.index {|e| e.eq(value).to_bool }
1337
- if index
1338
- Number.new(index + 1)
1339
- else
1340
- Bool.new(false)
1341
- end
1342
- end
1343
- declare :index, [:list, :value]
1344
-
1345
- # Returns one of two values based on the truth value of the first argument.
1346
- #
1347
- # @example
1348
- # if(true, 1px, 2px) => 1px
1349
- # if(false, 1px, 2px) => 2px
1350
- # @param condition [Bool] Whether the first or second value will be returned.
1351
- # @param if_true [Literal] The value that will be returned if `$condition` is true.
1352
- # @param if_false [Literal] The value that will be returned if `$condition` is false.
1353
- def if(condition, if_true, if_false)
1354
- if condition.to_bool
1355
- if_true
1356
- else
1357
- if_false
1358
- end
1359
- end
1360
- declare :if, [:condition, :if_true, :if_false]
1361
-
1362
- private
1363
-
1364
- # This method implements the pattern of transforming a numeric value into
1365
- # another numeric value with the same units.
1366
- # It yields a number to a block to perform the operation and return a number
1367
- def numeric_transformation(value)
1368
- assert_type value, :Number
1369
- Sass::Script::Number.new(yield(value.value), value.numerator_units, value.denominator_units)
1370
- end
1371
-
1372
- def _adjust(color, amount, attr, range, op, units = "")
1373
- assert_type color, :Color
1374
- assert_type amount, :Number
1375
- unless range.include?(amount.value)
1376
- raise ArgumentError.new("Amount #{amount} must be between #{range.first}#{units} and #{range.last}#{units}")
1377
- end
1378
-
1379
- # TODO: is it worth restricting here,
1380
- # or should we do so in the Color constructor itself,
1381
- # and allow clipping in rgb() et al?
1382
- color.with(attr => Sass::Util.restrict(
1383
- color.send(attr).send(op, amount.value), range))
1384
- end
1385
- end
1386
- end