Bundler is a system that attempts to manage a ruby application's gem dependencies across multiple developers and environments.
3
votes
1answer
34 views
Cannot use locally installed gems
I am trying to run a Ruby on Rails website on a shared hosting. When I get to rake db:create (or rake at all) following this tutorial http://guides.rubyonrails.org/v2.3.8/getting_started.html I get
...
0
votes
1answer
29 views
bundle install giving Net::HTTPServerException: 403 “Forbidden”
Guys getting this error any clue, the rubygems.org is up and when i download single gem it does.
bundle install
Fetching gem metadata from https://rubygems.org/........
Fetching gem metadata from ...
0
votes
1answer
9 views
“file too short” on bundle install
I'm getting occasional "file too short" messages when running bundle exec rake:
rake aborted!
/var/lib/jenkins/.rvm/gems/ruby-1.9.3-p327/bundler/gems/amatch-0f95f4ce269f/lib/amatch_ext.so: file ...
1
vote
1answer
29 views
Get a list of all gems bundled from source
Is there a way to detect which gems in your environment have been loaded from source, via the path options?
ie:
# Gemfile
source 'rubygems.org'
gem 'rails'
gem 'rails-extension', path: ...
1
vote
2answers
22 views
Reverse bundle install --without env through bundler
I've inherited a project that used to have a build script that bundle installed with the --without env flag. Now I need that env.
I removed the --without flag from the build script, but those ...
0
votes
0answers
15 views
Bundler can't find torquebox-web gem when runing script/console
I'm trying to get a Rails 2.3 application working with Bundler/Torquebox on a Linux (Redhat) server. The application works correctly through JBoss, but won't let me start up a console. I get the ...
0
votes
1answer
23 views
'bundle show' results in different paths depending on user, but on same system and Gemfile.lock
I have multiple users using a CLI app on the same system. In order to use a unreleased patch, the Gemfile points to a specific commit on github of the grit gem. The app has a Gemfile.lock. All users ...
0
votes
1answer
41 views
Error while bundling Rails application (missing gems?)
Note: this is my first attempt with Ruby and Rails!
Once I've installed everything I tried to create a new app with
rails new rubyapp
the command created everything and then the bundler started. ...
0
votes
4answers
45 views
Why do I need to “bundle install” before pushing a rails app to heroku?
I suppose the bundling is going to happen on the heroku servers anyway. What is the purpose of doing it on the local machine?
1
vote
1answer
34 views
Rails 4.0rc1 app not running due to missing sqlite3 gem
First time I've tried installing Rails 4.0. On Windows 8 with Ruby 2.0 x64. Ran:
gem install rails --version 4.0.0.rc1 --no-ri --no-rdoc
Then I run:
rails new test_app
cd test_app
rails s
But ...
0
votes
3answers
47 views
Devise with Rails 4
The team behind Devise announced via blogpost
http://blog.plataformatec.com.br/2013/05/devise-and-rails-4/ that it was releasing a version that is compatible with Rails 4, calling it '3.0 rc'. In ...
1
vote
1answer
33 views
Is there a public rubygems.org mirror?
Is there a working public mirror for http://rubygems.org? It's not working now for me, http://isup.me/rubygems.org says that it doesn't work too.
0
votes
1answer
30 views
Bundler HTTP works but not HTTPS; Network error
Upon running bundler with Gemfile source:
source 'https://rubygems.org'
I am getting this error:
Resolving dependencies...
Network error while fetching
...
1
vote
4answers
58 views
Uninstall all gems which are not in a specified list of Gemfile.lock files
I'd like to clean a little system-house. Essentially,
(Gem.all_system_gems - Bundler.referenced_gems(array_of_gemfile_locks)).each do |gem, ver|
`gem uninstall #{gem} -v #{ver}
end
Any such ...
0
votes
1answer
16 views
How to use a local gem in console with bundled environment
I want to customize my development environment with a few extra gems. I am using bundler with rails 3.0.x. I have those extra gems in my local system and i dont want to add them into my Gemfile. How ...
1
vote
1answer
41 views
rspec require spec_helper in .rspec file
I've noticed that projects such as bundler do a require spec_helper in each spec file
I've also noticed that rspec takes the option --require, which allows you to require a file when rspec is ...
0
votes
1answer
28 views
EC2 - Gem bundler is not installed, run `gem install bundler` first
I am deploying a rails app to EC2 with using Capistrano, but within the deployment process, I got
...
ERROR: Gem bundler is not installed, run `gem install bundler` first.
command finished in ...
0
votes
2answers
36 views
Why does bundler update gems when it knows the gemfile requires a specific version
This seems to happen a lot. I run bundle update or bundle install and for one reason or another I often get something like this:
You have already activated kgio 2.8.0, but your Gemfile requires ...
1
vote
0answers
25 views
Call Bundler from Ruby specifying the path
I can call bundler using this code:
require 'bundler/cli'
begin
Bundler::CLI.start
rescue Bundler::GemfileNotFound
puts 'CIRUNNER could not find the Gemfile'
rescue Exception => e
puts ...
0
votes
1answer
30 views
Running Bundler on Windows - permission denied on /dev/null
I'm trying to set up a Ruby dev environment on Windows. So far it's fairly "vanilla", that is, it pretty much only consists of Ruby (1.9.1), Bundler (1.3.5) and a few random gems.
Now, whenever I ...
1
vote
1answer
68 views
Bundler cannot install any gems without sudo
I'm trying to install a rails app and every time I use bundle it fails without sudo. My current situation is that everything works as long as use sudo for everything, including rails. I don't think ...
0
votes
0answers
9 views
Problems using 'bundle --standalone' and 'gem install' together
I'm able to use bundle --standalone just fine for a gem I'm ready to deploy.
git clone cli_app.git
cd cli_app
bundle package --all
bundle --standalone
git add bundle
git commit -m "adding bundle/ in ...
0
votes
1answer
32 views
Why does bundler always fail on my University's network?
When I try bundle install in my University I always get:
/usr/local/lib/ruby/site_ruby/1.9.1/rubygems/remote_fetcher.rb:239:in `rescue in
fetch_path': SocketError: getaddrinfo: Name or service not ...
0
votes
3answers
37 views
Check if Gemfile.lock matches Gemfile
I want to write a unit test to check if the Gemfile.lock in my project matches the Gemfile in case I forget to call bundle before committing.
Is there an option for the bundle command (or another ...
0
votes
1answer
49 views
Gemfile and Bundler error in foreman when doing bundle install
I'm trying to install foreman hooks but I get There was an error in your Gemfile, and Bundler cannot continue. when running bundle install
foreman version 1.1
[root@foreman foreman]# bundle update
...
0
votes
1answer
41 views
Setting up env, OSX rbenv and bundle battle
So i have just swapped over to mac from ubuntu and setting up the env has not been as easy as promised.
this is the process i followed.
installed xcode - then went into the prefrences and ...
-2
votes
2answers
29 views
Rails -v is giving me errors and the only solution I find gives different error
I'm trying to get up and running following a tutorial but I had tried using the Hartl book about 2 years ago unsuccessfully so now I have all these different things installed that I have no idea where ...
0
votes
1answer
37 views
JRuby: Nokogiri 1.6 Failing To Install & Bundler Attempting To Install Already Met Dependency
I am getting an error on jruby (linux) when installing the
"trinidad_diagnostics_extension" gem (though this question is not about trinidad). A chain of dependencies is
generating the error:
...
1
vote
1answer
13 views
Slash in branch name in Gemfile causing error
I have this in my Gemfile (using a branch with a slash):
gem 'ice_cube', github: 'seejohnrun/ice_cube', branch: 'issues/50-from_ical'
Which produces this error:
$ bundle
Updating ...
0
votes
1answer
27 views
Bundler halts on json install, even though there's no json in Gemfile
Project bundle is stopping with error on json installation. But I'm not asking for json in Gemfile. Current Ruby in RVM is 1.9.2-p290, strict.
Have no idea to workaround this. Any helps, maybe?
...
0
votes
0answers
44 views
chef-solo rails bundle install when having separate Gemfiles
Am trying out chef solo based rails app deploy
I do have two git repos, one is rails-app and another one is chef-solo where I have recipes, roles all chef related stuff, and each one has their own ...
0
votes
0answers
6 views
Unable to load sunspot_mogoid
My Rakefile contains:
require 'sunspot_mongoid'
which on a new server is suddenly giving me:
$ LIMITED_ENV="true" QUEUE=* RAILS_ENV=production rake -f /opt/ShopApp/Rakefile resque:work --trace
...
1
vote
3answers
108 views
I can't push my Rails project to heroku, can't find bootstrap-sass
When I try to push my project to Heroku I get this error:
-----> Deleting 3 files matching .slugignore patterns.
-----> Ruby/Rails app detected
-----> Using Ruby version: ruby-1.9.3
...
0
votes
1answer
41 views
Bundler error while installing factory_girl gem
HI Guys I am using bundler to install the following ruby gems in my Gemfile:
group :test do
gem 'capybara', '1.1.2'
gem 'factory_girl_rails', '4.1.0'
gem 'database_cleaner', '0.7.0'
gem ...
1
vote
1answer
23 views
Bundle fails, undefined method `ruby' when deploying to heroku
I'm trying to deploy a Rack app to heroku and it's failing on the bundle step:
-----> Fetching custom git buildpack... done
-----> Ruby/Rack app detected
-----> Using RUBY_VERSION: ...
5
votes
3answers
408 views
“Could not find bootstrap-sass-2.3.1.1 in any of the sources” on Heroku push
I am trying to deploy to Heroku (rails 3 app) and keep getting this error:
Checking in `vendor/bundle` is not supported. Please remove this directory
and add it to your .gitignore. To vendor ...
0
votes
1answer
15 views
How to remove bundler on a mac
I am getting a whole bunch of these errors:
bundle exec rake db:migrate
/Users/robpaulo/gems/gems/bcrypt-ruby-3.0.1/lib/bcrypt_ext.bundle: [BUG] Segmentation fault
ruby 1.9.3p327 (2012-11-10 revision ...
0
votes
0answers
8 views
bycrypt 3.0.1 wont install through bundler
I am getting the error: undefined local variable or methodhas_secure_password'` which can only mean that bcrypt is not installed as a gem, how evr in my gem file I have:
gem 'jquery-rails'
gem ...
0
votes
0answers
43 views
Bundle Install not installing gems on server
I'm having trouble with Bundler on my QA (:staging as referred to here) server. Bundle Install is running but it fails to install any new gems. I verified that I can install the gem successfully on ...
0
votes
1answer
17 views
How can I handle StdLib dependencies with Bundler + Gems?
When I put all my gems in a Gemfile I can just use
require 'bundler'
Bundler.require :default
to load all gems. Now I want to use modules from Ruby's StdLib. Of course I can do
require ...
1
vote
1answer
59 views
“NameError: uninitialized constant Guard::Haml::Bundler”
On my OSX system, I'm trying to use Guard-Haml to auto compile my HAML down to HTML. However, when guard is running, and tries to compile, I get the error below, in fig.1. I've installed Bunder and ...
1
vote
1answer
59 views
ruby server “Bundler couldnt find some gems” bundler will not install
I have cloned a 1.8.7 rails app locally and I am trying to run the ruby server, but when i type "ruby server" i receive the following error:
./../config/../config/preinitializer.rb:18: Bundler ...
0
votes
0answers
9 views
bundle update FileOverflow - file too large
I don't have a lot of experience building gems (the workflow, etc).
Anyway, when I try to reinstall a local gem, I get this error:
Gem::Package::TarWriter::FileOverflow: You tried to feed more data ...
0
votes
0answers
8 views
How to only require sinatra/base using Bundler?
I'm only need sinatra/base, but I don't know how to do it by using bundler. Because in the Gemfile I can't give it 'sinatra/base', but the gem name sinatra instead.
Any idea?
0
votes
1answer
34 views
Commands in the “system” block works in console but NOT inside application
It has been 12 hours since I've been trying to solve this problem... Here it is:
Inside my controller, I have a method like this:
def restart_workers
system("cd /var/www/sts/current ...
1
vote
0answers
47 views
When running Chef, RubyGems throws a System Stack Error
I'm running Ruby 1.9.3p392 and I've installed the latest chef gem (11.4.2). When I try to run any of the chef command line utilities, I get the following error:
bin/ruby_noexec_wrapper:14: stack ...
4
votes
1answer
89 views
Disable rdoc and ri from gemspec / Gemfile
I have a client gem which I will distribute business clients via rubygems. Gem client has cca. dozen gem dependencies and when it is being installed it takes a long time to install it due to ...
0
votes
2answers
184 views
Why does bundle ignore “gem 'pg'”? [closed]
Currently Working
Not sure what happened.
Built gemfile.lock on a linux box and moved it over. Had missing things, ran bundle install, worked.
Bundle is ignoring my inclusion of the "pg" gem in my ...
0
votes
2answers
57 views
Use ruby gem from git repo via Bundler
I have created a custom gem using bundler and checked it in a git repo.
custom_gem.rb
require "custom_gem/version"
require "custom_gem/custom_class"
module CustomGem
# Your code goes here...
end
...
0
votes
2answers
64 views
What's wrong with my Gemfile?
I tried to bundle install, but here is what I got:
/home/dcaclab/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/site_ruby/1.9.1/rubygems/version.rb:187:in `initialize': Malformed version number string = 1.0.3 ...



