Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks.
Prior to Rails 3, you could modify the script/server file to add in SSL parameters and tell the server command …
ruby-on-rails ruby ssl rack webrickI found this great blog post on how to use Rack::Proxy as a separate proxy app. The article explains …
ruby-on-rails-3.1 proxy rack reverse-proxy routesI'm in the process of refactoring some logic built into a Rails application into middleware, and one annoyance I've run …
ruby-on-rails conventions rack middlewareI wanted to implement CORS in my rails application, so I googled rack-cors gem for it. And I did everything …
ruby-on-rails ruby rack corsI have an api written in rails which on each request responds with a JSON response. The response could be …
ruby-on-rails json ruby-on-rails-3 gzip rackWhen I run the curl command curl -v -H "Content-type: application/json" -X POST -d '{"name":"abc", "id":"12", "subject":"…
ruby rackI know a Rack middleware filter is a Ruby class with an initialize and a call method. I know the …
ruby-on-rails rack middleware