Vagabond is proud to present you this little tip:

Recompiling template elements without a restart

Tags: elements

Fed up of ctrl-Cing webrick everytime you edit a Element template? Well, no more!

Simply define a controller method to do it for you:

def recompile
  Nitro::Element.compile_template_elements
  redirect '/'
end

Then simply call it when you've changed an Element's template.