I'm wondering how a one can use Bundler with Sinatra. The idea is to use the gems that Bundler downloads inside the .gems folder.
|
|
Inside your Sinatra app, you just have to require the bundler setup:
Alternatively, if you don't want to add the additional This assumes that you have a
This also assumes that you've already installed bundler ( |
||||
|
|
|
There's a simple guide on the bundler website. |
|||
|
|
|
+1 for the guide on the bundler website, but if you have a simple app and use Sinatra's dsl at the top level, then you need to do the following: in your Gemfile (tell bundler not require sinatra):
and in the app's file (explicitly require sinatra):
|
|||
|
|