Tagged Questions
Bundler is a system that attempts to manage a ruby application's gem dependencies across multiple developers and environments.
59
votes
4answers
8k views
Should Gemfile.lock be included in .gitignore?
I'm sort of new to bundler and the files it generates. I have a copy of a git repo from github that is being contributed to by many people so I was surprised to find that bundler created a file that ...
50
votes
13answers
16k views
Invalid gemspec because of the date format in specification
When I include a gem that I made, thanks to Bundler (version 1.0.12), in a Gemfile and then I try to bundle or to rake just like that:
$ rake
I've got this error message:
Invalid gemspec in ...
44
votes
10answers
33k views
Problem with mysql2 and rails3 (bundler)
`establish_connection': Please install the mysql2 adapter: `gem install activerecord-mysql2-adapter` (no such file to load -- active_record/connection_adapters/mysql2_adapter) (RuntimeError)
from ...
35
votes
8answers
8k views
Bundler throws uninitialized constant Gem::SilentUI (NameError) error after upgrading to Rubygems 1.5.0
I ran gem update --system to update to Rubygems 1.5.0 and after every time I run any bundle commands I get:
rvm/gems/ruby-1.8.7-p249/gems/bundler-1.0.9/lib/bundler/ui.rb:56: uninitialized constant ...
26
votes
9answers
9k views
Make bundler use different gems for different platforms
I'm working on upgrading one of our Rails 2.3.8 apps to Rails 3, and have run into an annoying problem with bundler and deployment. I develop the application on a Windows machine, but the production ...
20
votes
4answers
6k views
How do I vendorize gems for Rails3/Bundler
In Rails 2.X, I could simply copy gems into vendor/gems/gem_name, or use the rake command rake gems:unpack. Since Rails3 uses bundler, it doesn't appear to work anymore. I have found the command ...
19
votes
2answers
3k views
Restoring Rails 3's Bundle Install Path… It's now install in my root
I did something while trying to install the vestal_versions plug-in that ended up creating a vestal_versions directory in my app's root with the following:
- Application
- APP
- DB
- ...
18
votes
11answers
4k views
strange bundler error: tar_input.rb:49:in `initialize': not in gzip format (Zlib::GzipFile::Error) on bundle pack
i am getting a strange bundler error when running
bundle pack
with bundler 0.9.12
any ideas? (see pastie for a better formatted code: http://pastie.org/881328 )
...
17
votes
2answers
3k views
Rails 3 app deployment, Bundler & Rake issues
Deploying a Rails3 app, and am having some issues getting rake to find the gems installed by 'bundle install --deployment':
$ rake db:migrate
(in /home/jrdev/rails/testapp)
rake aborted!
!!! Missing ...
16
votes
3answers
2k views
Rails 3 app server startup time is long
UPDATE 2 This is a known bug/feature with the way Ruby 1.9.2 loads files. http://twitter.com/#!/rails/status/72801149769621504
update: This started out as a question, but after working on this for a ...
15
votes
5answers
3k views
Using npm to install or update required packages just like bundler for rubygems
I love Bundler, it's great at dependency management. I love npm, installing node packages is easy! I have a nodejs app and would love to be able to specify my apps dependencies and easily install / ...
15
votes
5answers
12k views
bundle: command not found
I'm hosting on a vps,ubuntu 10.04, rails3, ruby and mysql installed correctly by following tutorials. If I run 'bundle check' or 'bundle install' I get the error '-bash: bundle: command not found'. ...
15
votes
2answers
13k views
Could not locate Gemfile
I'm certainly no Ruby developer but I have an application on my server using Ruby, Gems, and Bundler. I am trying to install another Ruby on under a different user account but on the same VPS. When I ...
14
votes
4answers
4k views
Gemfile.lock not checked in - Heroku
While trying to "git push heroku master", I keep getting the error :
Counting objects: 266, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (239/239), done.
Writing objects: ...
14
votes
2answers
948 views
Bundler Gemfile syntax highlight in Text Mate
Hello I'm learning Rails3 so I start to use gem Bundler (http://github.com/carlhuda/bundler)
Does anybody know, how to setup TextMate to highlight Gemfile syntax?
Thanks!
14
votes
4answers
6k views
Sinatra + Bundler?
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.
13
votes
5answers
9k views
Rails 3 — Bundler/Capistrano Errors
I have a basic Rails 3 app working locally on my development box, but want to test out deploying early on to make sure everything works. I'm using Capistrano to deploy.
When I run cap deploy (after ...
13
votes
12answers
5k views
How do I freeze gems into a Rails 3 application?
I want to freeze a specific gem into my Rails application.
In rails 2 there was this command:
rake gems:unpack
I can't find that command in Rails 3.
12
votes
3answers
2k views
Bundler: What is the :require => false on the gemfile means?
The line is this one:
gem 'whenever', :require => false
Does it means that the gem needs to be installed or is not required?
12
votes
3answers
4k views
What is the best way to uninstall gems from a rails3 project?
I installed all of my gems using bundler via the Gemfile. I thought (mistakenly) that if I deleted a gem from my Gemfile and ran 'bundle install' that the deleted gems would be uninstalled. I've ...
12
votes
3answers
3k views
Rails 3: Passenger can't find git gems installed by bundler
Rails 3.0.0, Passenger 2.2.15:
Create a new Rails project
Add gem 'paperclip', :git => 'git://github.com/lmumar/paperclip.git', :branch => 'rails3'
to your Gemfile
Do bundle install
Everything ...
11
votes
6answers
672 views
How to customize Gemfile per developer?
It is a common pattern: there are many developers working on one project. The project shares the Gemfile(.lock) via SCM but the developers want to use different tools for testing and development. How ...
10
votes
3answers
628 views
Why should I care about RVM's Gemset feature when I use Bundler?
I just don't get it. I thought, Bundler was developed to resolve version conflicts between gems. So that I just have to require "bundler/setup" and everything is fine, knowing that Bundler will load ...
10
votes
4answers
4k views
Heroku push rejected, failed to install gems via Bundler
I am struggling to push my code to Heroku. And after searching on Google and Stack Overflow questions, I have not been able to find the solution. Here is What I get when I try "git push heroku master" ...
10
votes
3answers
3k views
RVM and thin, root vs. local user
So I'm trying to get thin to run as a service with RVM. After a thin install I manually updated /etc/init.d/thin to use an su - user when running the config command so that thin was running as a local ...
9
votes
3answers
187 views
How should I manage binary dependencies for my gems in production?
Bundler does an awesome job of making sure all the right gems are installed when I deploy.
However, some gems depend on binaries (eg Paperclip depends on ImageMagick, PDFKit depends on wkhtmltopdf) ...
9
votes
2answers
6k views
Errors Installing mysql2 gem via the Bundler
I am trying to install the mysql2 gem via the Bundler, but it keeps dying with the following error:
** executing command
...
8
votes
4answers
2k views
Ruby gems, bundler and RVM confusion
I read this question on stackoverflow, before asking it again. Relationships between Rubygems, Bundler, and RVM
well, there are many questions like this, but people who answered pretty tell the way ...
8
votes
1answer
1k views
How can I specify a local gem in my Gemfile?
I'd like Bundler to load a local gem. Is there an option for that? Or do I have to move the gem folder into the .bundle directory?
7
votes
2answers
693 views
error installing nokogiri 1.5.0 with rails 3.1.0 and ubuntu
Here is the error running bundle install vendor/gems on server:
Installing nokogiri (1.5.0) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
...
7
votes
2answers
3k views
How do I keep all gems in Gemfile compatible after an update
My question has already been asked here, but I am trying to understand the reasons behind it as opposed to how to work around it.
The error I got was;
You have already activated rspec-core 2.7.1, ...
7
votes
3answers
546 views
Can Bundler be configured to install gems rdoc?
I use bdoc (with hanna for formatting) as a quick way of looking at the rdoc documentation for the gems installed on my system. However, because bundler does not install rdoc when installing gems, I'm ...
7
votes
5answers
6k views
How to use bundler behind a proxy?
I get the following output from the sudo bundle install command:
Fetching source index for `http://rubygems.org/`
Could not reach rubygems repository `http://rubygems.org/`
Could not find gem ...
7
votes
1answer
1k views
Bundler puts my gems in my project directory
I have a Rails 3rc app on Ruby 1.9.2 that works fine, but Bundler keeps making a folder named "bandsintown" (bandsintown is a gem I use) in my project directory. From what I can tell, the folder has ...
7
votes
2answers
1k views
Do I still need source :gemcutter in Gemfile?
I have a file "Gemfile" in my Rails project root.
It says source :gemcutter in the very first line.
Do I still need the line? If I'm correct, http://rubygems.org/ is the official source, and Gem ...
6
votes
1answer
953 views
Bundler + RVM + Passenger + Capistrano deployment & missing gems
I got the server with the configuration above.
This is the important part of my deploy.rb recipe:
$:.unshift(File.expand_path('./lib', ENV['rvm_path']))
require 'rvm/capistrano'
require ...
6
votes
0answers
141 views
Avoiding redundant Bundler dependency declarations for Rack
Imagine a Rack application that, on startup, creates instances of some other Ruby applications and maps routes to those applications. This application has a Rack dependency of 1.2.2.
Now imagine ...
6
votes
7answers
3k views
nokogiri - ERROR: Failed to build gem native extension
I updated to the developer release of Lion and noticed I couldn't start rails apps anymore..! I might be an absolute idiot but thought I'd check here first (I usually find out pretty quick), whenever ...
6
votes
2answers
3k views
How can I remove a gem from my Rails 3 project without getting this really strange Bundle error?
The error is:
You have modified your Gemfile in development but did not check
the resulting snapshot (Gemfile.lock) into version control
WHAT VERSION CONTROL? Why/how does Bundle know anything about ...
6
votes
1answer
2k views
Ruby on Rails. Bundler. Cucumber. rake aborted! Command failed with status (1)
I have a problem using Bundler and Cucumber with Rails 3.
When I run $ rake cucumber I get the following output:
bundle exec /usr/local/bin/ruby -I "/usr/local/lib/ruby/gems/1.9.1/gems/cucumber-
...
6
votes
3answers
1k views
Textmate Rails3 no such file to load — bundler
When I try to run tests from TextMate in Rails3 i get an error that I trace back to boot.rb. When I try to run boot.rb via textmate I get this error:
LoadError: no such file to load — bundler
method ...
6
votes
2answers
2k views
Rails 3 / Bundler gem: 'undefined method `setup' for Bundler:Module (NoMethodError)'
It can be traced back to config/boot.rb, line 7:
require 'rubygems'
require 'bundler'
Bundler.setup
This is with Bundler 0.8.1 supposedly installed:
../Users/ashley$ sudo gem install bundler
...
5
votes
1answer
92 views
Why Rails preloads all of its dependencies (gems) during boot time?
When Rails starts it preloads all of its dependencies (gems), which results in very slow startup time. In a medium sized project I'm working on, the start time of Rails is 10-15 seconds depends on the ...
5
votes
2answers
511 views
Bundler error on deployment
I'm currently using guard i.e. guard-coffeescript gem to compile my javascript (and in the future I'll probably add some more guard tasks) on my OSX dev system. I added the rb-fsevent gem to my ...
5
votes
3answers
1k views
Omniauth in Rails 3.1.rc4
I'm using the latest release of rails, starting a new app that I will be deploying in 3.1 once its out, and I cannot get omniauth to work. If I just add omniauth to my Gemfile, it bundles up, but when ...
5
votes
2answers
914 views
Platform specific gems for autotest with bundler
In the rails project I'm working on I inserted support for rspec, cucumber and autotest with this Gemfile (partial)
gem 'rspec-rails'
gem 'cucumber-rails'
gem 'autotest-standalone'
gem ...
5
votes
3answers
1k views
How can I pass a paramater for gem installation when I run bundle install?
I added the pg gem to my gemfile
gem 'pg'
When I run bundle install, I get this error:
Installing pg (0.10.1) with native extensions ...
5
votes
1answer
531 views
Deploying Ruby on rails on Deamhost fails
I'm trying to deploy a simple Ruby on Rails app to dreamhost but I'm getting an error related to the bundle command. Here is the error:
servers: ["bullseye.dreamhost.com"]
...
5
votes
2answers
299 views
How does Bundler know what environment to use?
Here's probably a very "newbieish" question on Bundler, but I'm wondering how bundle install knows what environment to use or how to set it? Or do I even need to? My problem is that I've grouped my ...
5
votes
2answers
897 views
Relationships between Rubygems, Bundler, and RVM
Following current best practices, what is the proper role for each of these?
Based on my limited understanding of Bundler and RVM, it seems that they--like Rubygems--have their own install locations ...