Skip to content

Instantly share code, notes, and snippets.

<% def obj=tour as grails.converters.JSON; println obj.toString(true).replace("\n","<br>").replace(" ","&nbsp;") %>
@winkler1
winkler1 / gist:3624024
Created September 4, 2012 17:44
Grails TagLib assertAttribute
/**
* Renders the body if none of the specified roles are granted to the user. Roles are
* specified in the 'roles' attribute which is a comma-delimited string.
*
* @attr roles REQUIRED the role name(s)
*/
def ifNotGranted = { attrs, body ->
String roles = assertAttribute('roles', attrs, 'ifNotGranted')
/**
* Renders the body if none of the specified roles are granted to the user. Roles are
* specified in the 'roles' attribute which is a comma-delimited string.
*
* @attr roles REQUIRED the role name(s)
*/
def ifNotGranted = { attrs, body ->
String roles = assertAttribute('roles', attrs, 'ifNotGranted')
@winkler1
winkler1 / gist:3351223
Created August 14, 2012 17:51
Unit-testing Grok assertions
require 'rubygems'
require 'solid_assert' # http://jorgemanrubia.net/2011/09/19/solid_assert-a-simple-ruby-assertion-utility/
require 'grok-pure'
SolidAssert.enable_assertions
# Grok Docs: http://rubydoc.info/gems/jls-grok/Grok
g = Grok.new
# Test SU Patterns.
g.add_patterns_from_file("E:/downloads/logstash/SUPatterns/SU")