質問

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
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top