Tagged Questions
0
votes
1answer
42 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 ...
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
24 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 ...
1
vote
1answer
34 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
35 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
64 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
0answers
10 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
0answers
15 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 ...
1
vote
0answers
51 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 ...
5
votes
0answers
107 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 ...
1
vote
0answers
27 views
Drawbacks to using rubygems s3 source?
When using the following versions, installing new gems was painfully slow.
$ ruby -v
ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-darwin12.3.0]
$ gem -v
2.0.3
$ bundle -v
Bundler version 1.3.5
...
1
vote
1answer
60 views
Does Capistrano need to be in the development group in the Gemfile?
In a rails Gemfile, does gem 'capistrano' need to be inside the :development group or this there any advantage in putting it inside an arbitrary group like :tools?
2
votes
1answer
62 views
config.ru if statement for production
in my config.ru i would like to setup a code block that will run specific code depending on the environment. I tried some code but i am not having any success. Any suggestions?
if ...
3
votes
2answers
193 views
bundler vs RVM vs gems vs RubyGems vs gemsets vs system ruby [closed]
I am new to Ruby and trying to wrap my head around following concepts: bundler vs RVM vs gems vs RubyGems vs gemsets vs system rub and I'm confused.
Can someone please describe a 'best practice' of ...
0
votes
1answer
12 views
Need to bundle a gem from a Fork, How can I do it for Rails 3.2?
I've been following the Bundler Guides in order to bundle a Gem from a Fork; The reason for doing this, is that the fork has commits to master that allow for compatibility with Ruby 1.9.x
So far I ...
0
votes
0answers
18 views
Load rubygems from specific path(inside project folder) while starting application
I am trying to load rubygems from a specific path inside the application. For this, I have mentioned the path in GemFile like
gem 'rubygems-update', '1.3.7',:path => ...
3
votes
1answer
345 views
Zurb Foundation + Bundler Setup Dependencies
Following these instructions for running multiple versions of Foundation with Bundler, I was able to create a new project with a dependency of 3.2.5
Here's my Gemfile:
source "https://rubygems.org"
...
1
vote
1answer
383 views
RVM bundler installed ERROR: Gem bundler is not installed, run `gem install bundler` first
I get to work with a new project and it's based on ruby 1.8.7, I'm using rvm to manage my ruby versions and I have installed 1.8.7 and 1.9.2.
The thing is when I do:
rvm use 1.8.7
and try to run:
...
0
votes
1answer
315 views
custom_require.rb load error in eventmachine installation
I'm having a problem with my gems dependencies: the content of the Gemfile is
source :gemcutter
gem "sinatra"
gem "koala"
gem "json", "1.5.5"
gem "httparty"
gem "thin"
gem "rack", "1.3.10"
And a ...
0
votes
0answers
59 views
goto_definition in Sublime text 3 for methods from gems?
In Sublime Text 3 i can not use goto definition for methods from gems
i do like that:
bundle install --path vendor/bundle
But something tells me that I'm doing something wrong
2
votes
1answer
473 views
ruby - bundle install/update too slow
I just installed RVM, Ruby, Rails etc. on my virtual ubuntu 12.04 32bit running in a virtualbox. Now I encounter the problem that for my first rails project bundle install or bundle update takes very ...
2
votes
2answers
868 views
An error occurred while installing pg (0.12.2), and Bundler cannot continue
I'm following the Michael Hartl Ruby on Rails Tutorial & there is a part where he is he he instructs you to update your Gemfile to include:
group :production do
gem 'pg', '0.12.2'
end
And ...
0
votes
0answers
45 views
Ruby on rails application fails to run on one machine but runs on another (same setup)
I have problem with moving Ruby on Rails app between two machines,
Both of them have exactly the same OS and setup (Arch linux x86_64 updated today),
(well, this can not be true, because this problem ...
0
votes
0answers
63 views
bundler rails 2.3, json not recognized
I am using this as my guide to add new gems on my rails version 2.3.8: http://gembundler.com/v1.2/rails23.html
This is what I have in my gemfile
source :gemcutter
gem "rails", "2.3.11"
gem "rake", ...
6
votes
2answers
631 views
Rails bundler: “Could not find tilt-1.3.5 in any of the sources”
I have never encountered this problem before so I really don't know where to start looking for answers... despite Google ofcourse which seems to be an empty road concerning this topic.
When I try to ...
1
vote
2answers
87 views
How can I keep bundler from comlaining about sys-proctable gem?
I can't install sys-proctable with bundle. It won't stop complaining even though it's installed:
$ gem install sys-proctable --platform universal-linux
Fetching: ...
3
votes
1answer
622 views
Can't install bundler 1.3.0 with ruby 2.0
I installed Ruby 2.0.0 and the compilation went fine but when I use bundle install it gives me this error:
Bundler is not compatible with Ruby 2.0 or Rubygems 2.0.
Please upgrade to Bundler 1.3 or ...
0
votes
0answers
18 views
Getting error about 'man:clean' when building bundler
I've tried git cloning and then building the bundler gem manually, but it says
$ rake1.9.1 build --trace
** Invoke build (first_time)
rake aborted!
Don't know how to build task 'man:clean'
...
11
votes
3answers
1k views
Bundler is not compatible with Rubygems 2.0. Please upgrade to Bundler 1.3 or higher
I am deploying a Ruby on Rails application and part of the startup script that I have when provisioning a new box is gem update --system.
This happened to upgrade Rubygems to version 2.0. however, it ...
1
vote
1answer
66 views
Is this the right way to require ruby gems?
Hi so i stumbled upon a new way to require my ruby gems in my sinatra app using bundler and i was wondering if this is how i should do it:
My gem file looks like:
source 'https://rubygems.org'
gem ...
0
votes
0answers
16 views
Bundler uses wrong platform
I have a Gemfile which contains no platform information. I'm developing on a Mac and deploying to Ubuntu. However, Bundler seems to want to look for gems for platform x86-mingw32. How does Bundler ...
0
votes
1answer
461 views
Gem dependency conflict
I have run into a similar issue as a previous question, that was posted over a year ago.
How do I fix this gem dependency problem in Rails 3 (bundler)?
I am new to ROR. When trying to run bundle ...
0
votes
0answers
168 views
Failed to install mysql2 gem on RHEL 5.8 through bundler
Here is my stack:
RHEL 5.8 x86_64
MySQL 5.5 x86_64
Ruby 1.9.3p345
Rails 3.2.8
I am installing mysql2 0.3.11 gem through bundler and got the error, and the problem seems not to be the same with the ...
0
votes
2answers
112 views
How to tell Bundler to use gems installed systemwide (production deployment)?
When deploying a Rails app with Capistrano, I want Bundler to install gems to shared/bundles dir ONLY IF it can't find gems installed systemwide already. How do I do it?
For example, if I have a pg ...
1
vote
1answer
93 views
Not able to uninstall bundler 1.2.3
I am using ruby 1.9.3 and rails version 3.0.0. and i have bundler version 1.2.3. but while running bundle install its showing "This Gemfile requires a different version of Bundler".. I am trying to ...
1
vote
0answers
38 views
Why does bundler think it needs a specific version when the gemspec specifies a pessimistic constraint?
My gemspec clearly requires active_support ~> 3.0, but bundler is failing to bundle install saying that my gem requires active_support = 3.0. WTF bundler? Can anyone explain this?
$ gem install ...
2
votes
2answers
25 views
Check presence of loaded Gemfile
How can you check for the presence of both Bundler as well as a Gemfile?
My initial guess was defined?(Bundler) && File.exist?('Gemfile'), but since you can have a Gemfile with a different ...
1
vote
0answers
36 views
What does the 'ruby' mean in bundler output like so: “Could not find gem 'gem_name (= 1.1.0) ruby' in the gems available on this machine.”?
So when gem info shows up, either in gem list output like so:
gem_name (1.1.0 ruby)
or in a bundler message like in the title:
Could not find gem 'gem_name (= 1.1.0) ruby' in the gems available ...
2
votes
1answer
107 views
Bundler stuck while installing or updating gems
recently I just tried to do bundle update and wondered why one of my cores was stuck at 100%. I tried to reset everything, deleted my rvm gemset but nothing helped. I used bundle install --verbose to ...
0
votes
0answers
236 views
Could not find mysql2-0.3.11 in any of the source
I have a Ruby-on-Rails app the needs to use mysql2. When I try to run the app, I get the following error:
Could not find mysql2-0.3.11 in any of the sources
If I run bundle install I get the ...
1
vote
1answer
44 views
Including the bundler gem itself in my Rails app
Bundler is great. But there's one gem that it won't work for, and that's the bundler gem itself, which still needs to be installed manually:
Could not load the bundler gem. Install it with `gem ...
0
votes
1answer
391 views
can't install most recent version of rspec
So I'm working on a gem... I type bundle, and it installs rspec 2.0.1 which, as I'm sure you'll understand, is simply unacceptable in this day and age of rspec 2.12.2 .
I'd be OK with it, except when ...
1
vote
0answers
52 views
how do I require 'rake' to be able to use FileList in .gemspec?
I am using :path => '/path/to/gem' functionality of bundler to build and use a modified upstream gem, which uses Rake::FileList in its .gemspec.
At this stage, the bundle I'm installing is not yet ...
0
votes
0answers
65 views
How to resolve invalid gemspec with c++ extended ruby?
I followed this guide…
http://guides.rubygems.org/c-extensions/
…to create a c++-extension, but i have a problem whith getting the gemspec right. of course, when installing it with bundler, i want ...
0
votes
0answers
18 views
bundler does not see my just pushed gem to rubygems.org
whatever I look at I see different results
http://rubygems.org/gems/ixtlan-remote
shows all versions.
$ gem list -r ixtlan-remote --source https://rubygems.org
*** REMOTE GEMS ***
ixtlan-remote ...
0
votes
1answer
83 views
Passenger can't find bundler
I am desperatly trying to set up Redmine on my debian server. I managed almost everything (the interface works with webrick), but I want it to be accessable via dev.kaleydra.de, I wanted to solve this ...
0
votes
3answers
325 views
Rails server not running when using Rails gem version 3.2.9
I have created a new Rails project. And used the gem file used in the famous Michael Hartl tutorial
source 'https://rubygems.org'
gem 'rails', '3.2.9'
group :development, :test do
gem ...
1
vote
2answers
167 views
How do I check that RVM + Bundler are working correctly (and that I can avoid “bundle exec”)? I'm slightly confused over wording in the docs
I'm following this Rails tutorial section and this RVM doc page . My installation is all brand new (RVM 1.17.3), so, if I understand the tutorial and the RVM docs correctly:
RVM and Bundler should ...
0
votes
1answer
112 views
No Method Error on Sinatra
After setting up my config.ru and gemfile, my post no longer wants to work.
First, I have to have my DataMapper.setup in my main.rb and I cannot run any DataMapper methods in my irb.
Second, ...
0
votes
2answers
241 views
Issues installing gems when using Bundler's binstubs
Bundler v1.2.3
RubyGems v1.8.24
RVM (latest)
Rails v3.2.9
I'm using binstubs for my Rails application with those defaults (~/bundle/config):
---
BUNDLE_PATH: .bundle
BUNDLE_BIN: .bundle/bin
Then ...

