Ken Geis

Results 49 comments of Ken Geis

> @kgeis Thanks - what do I do with that information? @laurenz That's up to you! 🙂 You said you wanted to "let this pull request sit until someone knowledgable...

The compiler doesn't complain when I set the description in a singular test's config block, but when the docs are rendered, it says "This test is not currently documented". 🤔...

It looks like this would be addressed by [CAM-12816](https://jira.camunda.com/browse/CAM-12816), tentatively scheduled for 7.16.

This could help with transitioning to newer versions of Grails that use ehcache 3. Version 2 allows null values, but 3 does not. I think that Grails' `Cacheable` should try...

@puneetbehl I have sent a pull request, #31 to support Grails 5. Unfortunately, I can't figure out what the Gradle scripts should look like around publishing the plugin. Please take...

@dylankolson Sorry, I stopped using this plugin.

@dylankolson I took what I needed from [SpringSecurityCasGrailsPlugin.groovy](https://github.com/grails/grails-spring-security-cas/blob/4.0.x/plugin/src/main/groovy/grails/plugin/springsecurity/cas/SpringSecurityCasGrailsPlugin.groovy) and inlined it into my `resources.groovy`.

Same thing with 1.2.3. I found that 1.2.3 existed through commit logs. It's not listed in the Gradle plugin registry.

build.gradle: ``` plugins { id 'org.kravemir.gradle.sass' version '1.2.3' } sass { main { srcDir = file("$projectDir/src/main/sass") outDir = file("$buildDir/css") } } ``` src/main/sass/style.sass: `body { color: red; } ` I...

@kravemir, sorry, I switched to using [Asset Pipeline](http://www.asset-pipeline.com/) and am happy with it. As far as I'm concerned, you can close this issue. It would be nice if you comment...