Thanks to the code:
get '/interviews/:slug/?' do |slug| @interview = Interview.first(:slug => slug) raise not_found unless @interview haml :'interviews/show' end
Thanks to the code: