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.

link|improve this question

2  
Yehuda Katz has a great article about using bundler today: yehudakatz.com/2009/11/03/using-the-new-gem-bundler-today – Damien MATHIEU Nov 10 '09 at 8:37
Also, the bundler documentation itself has a good example of how to setup a sinatra application gembundler.com/sinatra.html and it is current. – christophercotton Nov 17 '10 at 3:51
feedback

4 Answers

Inside your Sinatra app, you just have to require the bundler setup:

require "bundler/setup"
require "sinatra"

get "/" do
  "Hello world!"
end

Alternatively, if you don't want to add the additional require "bundler/setup" at the top of your app, you can instead invoke sinatra via bundle exec (e.g. bundle exec ruby myapp.rb)

This assumes that you have a Gemfile in the root of your application. It might look like this:

source "http://rubygems.org"

gem "sinatra"

This also assumes that you've already installed bundler (gem install bundler) and that you ran bundle install to install all the gem dependencies.

link|improve this answer
feedback
up vote 6 down vote accepted

I believe the best way is described here on EngineYard blog.

link|improve this answer
feedback

There's a simple guide on the bundler website.

link|improve this answer
feedback

+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):

gem 'sinatra', :require => false

and in the app's file (explicitly require sinatra):

require 'rubygems'
require 'bundler'
Bundler.require
require 'sinatra'

get '/' do
  'hello world'
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.