Wondering if Ramaze has hooks like Sinatra. Does anyone know? Thanks!
Their documentation tells you that it does. For instance:
before(:index, :other) do
puts 'Executed before specific actions only.'
end
after(:index, :other) do
puts 'Executed after specific actions only.'
end