我想在一个类中使用 Sass 颜色函数,而不使用 Sass 引擎。我已经在项目中使用了 sass gem,所以我认为捎带会很简单:
class Rectangle
include Sass::Script::Functions
def color
Sass::Script::Color.new([0x82, 0x39, 0x06])
end
def render
#haml engine executed with context of self
#so that within temlate i could call
# %stop{offset: '0%', stop: {color: lighten(color)}}
end
end
更新:见#render
上文,我想从实例lighten(color)
上下文中呈现的 haml 模板中调用Rectangle
但我得到一个未定义的方法assert_type
错误。该assert_type
方法在Sass::Script::Functions::EvaluationContext
类中定义。(github文件)
在 中玩耍irb
,只是为了得到接近我想要的东西,如下所示:
require 'sass'
eval_context = Sass::Script::Functions::EvaluationContext.new({})
#yes the Sass::Script::Number.new(10) is requried, a simple 10 will not work
color = eval_context.rgb(Sass::Script::Number.new(10), Sass::Script::Number.new(10), Sass::Script::Number.new(10))
eval_context.lighten(color, Sass::Script::Number.new(10))
这太疯狂了——我错过了什么吗?