Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Ruby On Rails itself a Rack app?

So I deduced from Rack documentation, but maybe I am wrong...

like image 972
collimarco Avatar asked Aug 03 '09 14:08

collimarco


1 Answers

It sure is. You can write rack middleware to add additional routing handlers before the request hits the rails application.

http://guides.rubyonrails.org/rails_on_rack.html

like image 76
knuckolls Avatar answered Sep 30 '22 16:09

knuckolls