Skip to content

Instantly share code, notes, and snippets.

@bigtoast
Created February 24, 2011 00:55
Show Gist options
  • Save bigtoast/841537 to your computer and use it in GitHub Desktop.
Save bigtoast/841537 to your computer and use it in GitHub Desktop.
random notes on grails n groovy
v. 1.2.2 plugin dependencies are declared in application.properties
v. 1.3.7 plugin dependencies are declared in BuildConfig.groovy
null safe object navigation obj?.value
condensed ternary operator obj.value ?: "else this"
comparison <=>
call method on all objects in list listofobjs*.method
add items to list lst << "new item"
ranges .. ..<
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment