You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plugins {
id "com.github.robfletcher.compass" version "2.0.6"
}
repositories {
mavenCentral()
}
compass {
cssDir = file("build/css")
sassDir = file("sass")
}
When I try gradlew compassCompile, here's what I get:
(a bunch of downloads)
Download http://rubygems-proxy.torquebox.org/releases/rubygems/ffi/1.9.10/ffi-1.9.10.gem
ERROR: Loading command: install (LoadError)
Could not load FFI Provider: (NotImplementedError) FFI not available: null
See http://jira.codehaus.org/browse/JRUBY-4583
ERROR: While executing gem ... (NoMethodError)
undefined method `invoke_with_build_args' for nil:NilClass
By looking at #37, I was able to fix this by prefixing my buildscript with this snippet:
It would be cool if the plugin worked out of the box. Also, jruby-gradle-plugin:0.1.17 is from June 2015. Since then they've made it to 1.2.0 in December 2015. Might be worth updating to the latest version.
The text was updated successfully, but these errors were encountered:
Hi, is there any chance that somebody could fix this issue. When we changed jruby to the old version compass tasks are not failing but compass does not see any changes in scss files in runtime
I am also only able to get the gradle-compass plugin to work using jruby-gradle-plugin version 0.1.17, no higher versions. I tried 1.3.+, 1.2.+, and 1.+.
I've got a really simple
build.gradle
.When I try
gradlew compassCompile
, here's what I get:By looking at #37, I was able to fix this by prefixing my buildscript with this snippet:
It would be cool if the plugin worked out of the box. Also,
jruby-gradle-plugin:0.1.17
is from June 2015. Since then they've made it to1.2.0
in December 2015. Might be worth updating to the latest version.The text was updated successfully, but these errors were encountered: