Search code examples
rubyramaze

What's Ramaze's equivalent to Sinatra's Sinatra::NotFound?


In other words, how do I throw a "404 - not found" in Ramaze?


Solution

  • You can use the Innate::Helper::Redirect#respond (source) method which gets included into your controller to return any response:

    def my_action    
      respond("Response body", 404)
    end