It seems that in Sinatra all route handlers are being written into a single file, if I understand right it acts as a one large/small controller. Is there any way to split it into separate independent files, so when let's say somebody calls "/" - one action is executed, and if smth like "/posts/2" is received then another action - similar logic that is applied in PHP?
|
Here is a basic template for Sinatra apps that I use. (My larger apps have 200+ files broken out like this, not counting vendor'd gems, covering 75-100 explicit routes. Some of these routes are Regexp routes covering an additional 50+ route patterns.) When using Thin, you run an app like this using: Edit: I'm now maintaining my own Monk skeleton based on the below called Riblits. To use it to copy my template as the basis for your own projects:
File Layout: config.ru app.rb helpers/ init.rb partials.rb models/ init.rb user.rb routes/ init.rb login.rb main.rb views/ layout.haml login.haml main.haml
|
|||||||||||||||
|
|
Absolutely. To see an example of this I recommend downloading the Monk gem, described here: https://github.com/monkrb/monk You can 'gem install' it via rubygems.org. Once you have the gem, generate a sample app using the instructions linked above. Note that you don't have to use Monk for your actual development unless you want to (in fact I think it may not be current). The point is to see how you can easily structure your app in the MVC style (with separate controller-like route files) if you want to. It's pretty simple if you look at how Monk handles it, mostly a matter of requiring files in separate directories, something like (you'll have to define root_path):
|
|||||
|
|
Do a Google search for "Sinatra boilerplate" to get some ideas for how others are laying out their Sinatra applications. From that you can probably find one that suits your needs or simply make your own. It's not too hard to do. As you develop more Sinatra apps, you can add to your boilerplate. Here's what I made and use for all of my projects: |
|||||
|
|
|
I know this is an old query but I still can't believe no one mentioned Padrino You can use it as a framework on top of Sinatra, or piecemeal adding only the gems that interest you. It kicks ten buttloads of ass! |
|||
|
|
|
Reading the docs here: It appears that Sinatra allows you to decompose your application into Ruby Modules, which can be pulled in through the Sinatra "register" method or "helpers" methods, like so: helpers.rb
routing/foos.rb
app.rb
|
|||
|
|
|
When Monk didn't work for me, I started working on templates myself. If you think about it, there is nothing special about tying up a set of files. The monk philosophy was explained to me early in 2011 and they have specifically told me that it's really optional to use it especially now that it's hardly maintained. This is a good start for those who want to use ActiveRecord: Simple Sinatra MVC |
|||
|
|