Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在使用 ScoutApp 编译我的 Sass 文件时,我收到以下错误消息:
ArgumentError on line 2104 of org/jruby/RubyKernel.java: wrong number of arguments (4 for 3)
这只是突然发生的。我没有改变我的系统上的任何东西,我真的不知道该怎么做。重新安装 Scout 会导致相同的结果。有什么解决方案的建议吗?
问候,尼尔斯
在尝试了几件事后,我自己找到了答案。如果有人遇到同样的问题,这就是给我带来麻烦的原因:
在我的 sass 文件的某个地方,我有以下声明
background: rgb(0,0,0,0.75);
这当然是无效的,必须是:
background: rgba(0,0,0,0.75);
丢失的信确实让我有些头疼。特别是因为我期待一个错误消息 sass 通常在我犯标记错误时在编译的 css 文件中抛出。