Search code examples
rubyramaze

Does Ramaze have a Sinatra like "before/after" hooks?


Wondering if Ramaze has hooks like Sinatra. Does anyone know? Thanks!


Solution

  • 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