Blankman
Blankman

Reputation: 267370

Is rails considered a rack application?

I'm confused as to what is a rack application.

Is rails built on top of rack?

Upvotes: 2

Views: 142

Answers (1)

Chris Cherry
Chris Cherry

Reputation: 28574

Rails is built on top of the Rack interface.

More information about what makes a Rack application a Rack application can be found here: http://rack.rubyforge.org/doc/SPEC.html

Upvotes: 4

Related Questions