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
2answers
55 views

rails bundle error Gem::Installer::ExtensionBuildError: ERROR

I'm trying to install rails, but have some problem: ruby 2.0.0 rvm 1.19.6 gems 2.0.3 bundler 1.2.3 when I run 'bundle install' or 'gem install json -v "1.7.7"', I have: ...
1
vote
1answer
21 views

Bundle install, how to avoid using the library from source

I want to install a library to my rvm gemsets, but this library is not available using in the gem install. I have to install it from source I do bundle install and it went well, except that It does ...
0
votes
1answer
50 views

Error when bundle install-ing - `Bundler could not find compatible versions for gem “rails”`

I'm trying to install a gem, I updated it in the gemfile, then bundle install. I received the following error message: Bundler could not find compatible versions for gem "rails": In Gemfile: ...
0
votes
0answers
98 views

Capistrano: Gem bundler is not installed

Capistrano raises the error "ERROR: Gem bundler is not installed, run gem install bundler first." But when I clone the project to /tmp/project of the targe server bundle runs (as root) smoothly. The ...
0
votes
2answers
35 views

ruby bundle install fails with (Errno::EEXIST)

I'm on Ubuntu 12.10. I installed rvm and ruby 1.9.3 on top of it and gem rails and bundle. trying to run bundle install or better so rvmsudo bundle install both gives me the same error: ...
0
votes
1answer
34 views

make is not recognize as an internal or external command

I am using Windows-7. I installed Ruby 1.9.3p327 and Rails 3.2.9. Now, I create a project then run command in command prompt "rails install json -v 1.7.7" but get error below make 'make' is not ...
2
votes
0answers
1k views

ROR can't fine rake 10.0.4 despite being in vendor/cache

So this is annoying. When I put bundle exec rake db:migrate into terminal, the following error occurs: Could not find rake-10.0.4 in any of the sources Run `bundle install` to install missing ...
0
votes
0answers
56 views

ROR bundle install : git://github.com/Goin/dm-migrations.git (at master) is not checked out. Please run `bundle install` (Bundler::GitError)

I have an existing ROR application I've inherited. I needed to add a GEM file to the Gemfiles list. I then ran a "bundle install". Apache (/phusion/rack) now shows the error ...
0
votes
2answers
62 views

When I runBundle update, I get a (SyntaxError) after setting up a new rails app? Why is this happening

I'm a Rails Newbie, I'm doing the Hartl Rails Tutorial and installed with Railsinstaller C:\Sites\sample_app>bundle update ...
0
votes
1answer
312 views

RoR rake bundle dependencies

Platform: windows 7, running on JRuby 1.6.8. C:\project> rake db:migrate rake aborted! You have already activated rake 10.0.3, but your Gemfile requires rake 0.9.2.2. Using bundle exec may solve ...
0
votes
1answer
260 views

There was an error in your Gemfile, and Bundler cannot continue

So i'm following the Rails Tutorial by Michael Hartl, and have changed my Gemfile to look as such: (only to get "There was an error in your Gemfile, and Bundler cannot continue." after having run ...
0
votes
1answer
684 views

gem install kgio ERROR

I've downloaded a rails open source webapp , and while i was starting it using : C:\Users\admin\Downloads\iCare\icare-develop>rails server ←[31mCould not find kgio-2.8.0 in any of the sources←[0m ...
0
votes
2answers
376 views

Installing RMagick Gem Rails 3

Fetching gem metadata from https://rubygems.org/........... Fetching gem metadata from https://rubygems.org/.. Could not find gem 'rmagick v 2.13.1 (>= 0) x86-mingw32' in the gems available o n ...
1
vote
0answers
283 views

gem install sqlite3 -v '1.3.7'

when i try to install the sqlite3 with this - > gem install sqlite3 -v '1.3.7' this errors appears: Building native extensions. This could take a while... ERROR: Error installing sqlite3: ...
0
votes
2answers
59 views

Ruby : trying to install rubyXL gem from file

I am just starting with Ruby on Rails and need to use the RubyXL gem (https://github.com/gilt/rubyXL). I was told by one of the other devs to use bundle install. I cannot seem to get the syntax ...
0
votes
2answers
124 views

mysql2 gem install error

im trying to install mysql2 gem after it failed to install on a bundle install. when i run $ sudo gem install mysql2 -- --with-mysql-config=/usr/local/mysql/bin/mysql_config i get the ...
0
votes
0answers
634 views

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension

when am running bundle after forking my own project in my home pc. Am getting this error, what is wrong going on?? I forgot what i did in my office pc, it is working fine there. Using coffee-rails ...
4
votes
1answer
2k views

Errno::EACCES: Permission denied

I'm trying to setup gitlab and thus install some gems from another user account using sudo, but I'm constantly getting Permission denied error. sudo -u gitlab -H bundle install --deployment --without ...
0
votes
2answers
250 views

Installing pg gem on ubuntu

I'm developing a rails app using sqlite3. I want to push it to Heroku. In Heroku tutorial it says that I have to first change: gem 'sqlite3' to gem 'pg' and run bundle install I got this ...
10
votes
3answers
1k views

First ever bundle install, stack level too deep

I have created a brand new rails project using the command 'rails new qbc --database=mysql'. It creates all the files perfectly fine, but at the bundle install it errors out: $ bundle install ...
0
votes
0answers
112 views

need nokogiri 1.5.3 install via homebrew

I'm trying to install Nokogiri gem at version 1.5.3 using instructions from main website: http://nokogiri.org/tutorials/installing_nokogiri.html I'm on Homebrew 0.9.3 I need something like this: ...
0
votes
1answer
86 views

gem installation ok but not with bundle

I am trying to install the pusher-client gem. I've put this in my Gemfile: gem "pusher-client",:git=>"git://github.com/logankoester/pusher-client.git" bundle install is ok But when I start ...
0
votes
1answer
1k views

Ruby on Rails - Carrierwave get the image dimension width and height

I need to know the width and height of the current instance of carrierwave For example: image_tag image.photo_url,:width => image.photo.width, :height => image.photo.height But the problem ...
1
vote
1answer
84 views

Do unused gems in Gemfile take memory in Rails?

This might be a stupid question: If I add a gem in Gemfile (and bundle install) and don't use it in the rails application, does it affect the consumed memory size? Usually I use my application ...
0
votes
0answers
154 views

bundle gem got error

I tried to create a new gem, so I do just like this said: http://asciicasts.com/episodes/245-new-gem-with-bundler But when I use command bundle gem test, but I just got some error message: ...
1
vote
0answers
2k views

Psych::SyntaxError when trying to run obtvse on Mac OS X

What am i doing wrong? bundle install runs fine, ruby is at 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin12.0.0]. Tried to replace psych with syck already but it throws the exact same errors. ...
0
votes
0answers
461 views

Eclipse juno(4.x) - ubuntu 12 > can't install RadRails throws error for a gem i have installed allready

The thing is I installed ubuntu 12, java(for eclipse), eclipse, ruby, ruby gems, rails. Everything went smooth. When I tried to prepare eclipse for ruby on rails i installed ruby dev kit plugin. This ...
0
votes
1answer
1k views

Bundler: Hey, where does this gem version suddenly come from?

I was told to use v0.6.5 of the rails-i18n gem, so I first checked whether I was already up to date, which I wasn't (v0.6.0). So I tried gem update rails-i18n (which doesn't seem to be the correct ...
2
votes
2answers
168 views

Longer bundle update install time

Well, i took a break from RoR for studies, now I am back, I have noticed that it takes much longer to install gems, bundle update/install. Before I could complete the installation of a new gem in ...
1
vote
1answer
314 views

Error with gem pg shouldn't happen locally, only in production, why is bundle installing it?

I have a Ruby on Rails application and am just starting to deploy it to Heroku. The Heroku quick start guide says to include the pg gem for your database on production. OK, this came up the last ...
2
votes
4answers
720 views

Rake aborted ! Issue installing Octopress

I m trying to install the Octopress on my windows. As per their Tutorial on their website. But when I type the command rake install It gives me the following error C:\Documents and ...
1
vote
2answers
1k views

Yet another “installing pg gem” issue on Mac

So, I've just spent the best part of the day trying to get Rails (and required gems) to install correctly. After hours with line cache and nokogiri I'm just starting to feel drained and have now ...
3
votes
1answer
266 views

Creating gems with app assets

I followed http://railscasts.com/episodes/245-new-gem-with-bundler to make a gem with bundler and this is great for gems where i only need a lib, is there a standard practice for gems where i need to ...
4
votes
1answer
954 views

Unable to install autotest-fsevent gem with Xcode 4.3

I've been unable to install the autotest-fsevent gem after updating to Xcode 4.3 (removed old versions of Xcode). Command line tools were installed via Preferences > Downloads > Components tab. osx ...
2
votes
1answer
2k views

Deploying a Rails 3.1 app on Heroku error : Could not find libv8-3.3.10.3 in any of the sources

I have troubles to push my rails app on heroku. In my local server, I have no problem to execute "bundle install" and my app works well. When I run "git push heroku master", I have this error Could ...
2
votes
2answers
3k views

what's the difference between bundle.setup and bundle.require

From the gemfile man page, I learned there are two ways to import the gems you specified in the Gemfile. The bundle.setup will "setup adds gems to Ruby's load path" while bundle.require will require ...
0
votes
1answer
847 views

Bundle install doesn't work

I'm trying to install all gems in a gemFile of a project, but when i typed: sudo bundle install but i got this error: Could not find gem 'llrp_connector (>= 0)' ruby in any of the gem sources ...
2
votes
1answer
251 views

Why is rails installing a newer version when I run bundle?

I am trying to start a new rails project and I would like to stick with rails 3.1.3. However, when I run the command rails new projectname I get the following output: create create README.rdoc ...
1
vote
1answer
352 views

Bundle Install Fail- Rails Tutorial

bundle install Fetching source index for http://rubygems.org/ Could not find gem 'annotate-models (= 1.0.4) ruby' in any of the gem sources listed in your Gemfile. But clearly its in my gemfile, ...
4
votes
2answers
2k views

Is it possible to bundle / install gems from a local cache?

I have bunch of gems on my computer that I want to use in a chef recipe. I know it is possible to put them in a directory like /tmp/gems and just: cd /tmp/gems gem install *.gem Is it possible to ...
1
vote
2answers
2k views

Error when bundle install on windows

When i try to run bundle install, i got this error : Installing hiredis (0.3.2) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. ...
3
votes
1answer
273 views

Install gem from forked git - looks like it's installed ok but it's not in gem list and and i can't require it

Sorry if this is a duplicate, i've seen a couple of questions about bundler and git but don't quite get it. I forked a gem that's on github - my fork is https://github.com/toastkid/contentapi-ruby ...
0
votes
2answers
444 views

Could not find gem 'rubytree (~> 0.5.2) ruby' while installing ChiliProject on Debian

I am trying to install chiliproject on a server, following the -well done- documentation I am hitting this error Could not find gem 'rubytree (~> 0.5.2) ruby' in any of the gem sources listed in ...
0
votes
1answer
295 views

bundle install error : character-encodings

I am getting an error while bundle install $ vi Gemfile source 'http://rubygems.org' gem 'daemons' gem 'rfeedparser' $ ruby -v ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux] $ bundle ...
1
vote
1answer
152 views

Install Gems Into a Project Bundle Using Another Bundle or Installed Gem Folder as The Source

I've got dozens of Ruby projects using Bundler, each with their own gem bundle in ./vendor. I'd like to be able to do something like this at the top of my Gemfile: source ...
1
vote
1answer
2k views

How to remove “bundle install” command during the project creation in Rails 3.1?

I am creating a new project: rails new ggg --database=mysql and get following output: create create README create Rakefile create config.ru create .gitignore ...
1
vote
3answers
171 views

How can you preview the updates that a “Bundle Update” will make?

Sometimes I want to run bundle update but only to see which gems need updating. I don't necessarily want to deal with the issues associated with updating all of them but I want to do a quick check to ...
0
votes
3answers
49 views

What do we mean by this code if written in Gemfile

If I write the following code for example in 'Gemfile': group :development do gem 'xyz' end group:test do gem 'xyz' end What does that mean? Thanks.
6
votes
6answers
7k views

“sh: make: command not found” when running “$ bundle” after adding redcarpet gem to Rails app

I'm getting the following when running "$ bundle" after adding "gem 'redcarpet'" to Gemfile: $ bundle ... Using paperclip (2.3.11) Using passenger (3.0.7) Installing redcarpet (1.17.2) with native ...

1 2