Skip to content

mileswilson/gsp-resources

 
 

Repository files navigation

#GSP Resources Plugin# This plugin allows you to reference GSP-generated files as cacheable static resources. Consider the following: ###fibonacci.js.gsp###

<% fib = {n -> return n <= 1 ? n : fib(n-1) + fib(n-2)} %>
var fibonacci = [<%= (0..10).collect{ fib.call(it) }.join(',') %>];

This is then cacheable and serveable as a javascript file: ###fibonacci.js###

var fibonacci = [0,1,1,2,3,5,8,13,21,34,55];

##User Guide## Full documentation here

##Special Thanks## Stefan Kendall for creating the original gsp-resources plugin