Scorched icon indicating copy to clipboard operation
Scorched copied to clipboard

Light-weight, DRY as a desert, web framework for Ruby.

Results 6 Scorched issues
Sort by recently updated
recently updated
newest added

```ruby require 'scorched' class App < Scorched::Controller get '/' do 'root' end self

You updated this file for URI.unescape() obsolescence to CGI.unescape() but didn't update the require. I believe you need to update lib/scorched/request.rb to require 'cgi' instead of require 'uri'. It took...

I'm writing a gem that has to use a mini web framework to load up a git webhook receiver, I've tried a few other frameworks, namely * Sinatra * Hangs...

What do you think about extracting the private compile method in controller.rb to a public helper method? The reason I ask is that I need an "except" before filter that...

My intention is to make it easy to define routes in one controller, which refer to methods (actions) in another controller. This may involve considerable refactoring. For the sake of...

enhancement

If I have a `get /foo/:bar do |bar|` in the root controller and send it something like "test%2Bcall" then `bar` will correctly equal "test+call". However, if I have a `target`...