0
votes
0answers
18 views

'bundle install' seem to be failed when deploying by capistrano

trying to deploy my Rails app to a virtual host on VirtualBox. I'm using capistrano to deploy my app, and using vagrant to manage virtual machine. My capistrano setting is OK, because it works ...
0
votes
2answers
40 views

Ruby Gem LoadError

I am getting a ruby error when an app I am running tries to… require "xcodeproj/xcodeproj_ext" (https://github.com/CocoaPods/Xcodeproj) The gem has been installed in ...
0
votes
1answer
47 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. ...
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
37 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
1answer
65 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 ...
1
vote
3answers
122 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
0answers
9 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 ...
5
votes
0answers
112 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
247 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
58 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
0answers
33 views

Cannot “bundle install” in Rails

This is my Gemfile: source 'https://rubygems.org' gem 'rails', '3.2.12' # Bundle edge Rails instead: # gem 'rails', :git => 'git://github.com/rails/rails.git' gem 'sqlite3' gem 'jasmine' gem ...
1
vote
2answers
49 views

Why do I need to run bundle install after I reformatted my computer?

I'm very new to ruby on rails which is why I'm trying to get a basic understanding of how it works. I have just created my very first rails app which is located in my dropbox folder. As I reformatted ...
1
vote
1answer
20 views

Require failing with bundled gem using rails 3

I'm currently trying to include a gem for fuzzy string matching into my Rails project and am getting an error when I actually try and use it, and would love any suggestions as to where to look to ...
1
vote
1answer
111 views

Hosting Ruby gems using Apache

I'm having trouble figuring out how to host a Ruby gem of my own creation using Apache. I was wondering if somebody could help me figure out the problem. Here's what I've done so far. I began by ...
2
votes
2answers
165 views

Bundler doesn't load gem in production rails app

I'm having a problem where a single gem is not being loaded by bundler in a rails app, but only in production - there's no problem using the gem in development mode. The gem is country_select, and ...
1
vote
1answer
61 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?
0
votes
0answers
22 views

Read Included Files in a Gem

I'm using bundler to manage my Gem. One of my classes reads template files from [root_dir]/templates/, and I'm having trouble reading those files in a way that doesn't make me feel dirty. The ...
0
votes
0answers
15 views

Bundler: Handling Gem dependency on Ruby version

Just now I got a bundle update error, which turned out to be due to Ruby version. (Linguistics requires 1.9.3.) Is there any way to deal with this using Bundler? So that it would install the latest ...
2
votes
0answers
66 views

Updating Gemfile from Gemfile.lock, to freeze gems

After generating a Gemfile.lock from Gemfile, is there any tool to round-trip back to freeze versions in the Gemfile. I'd rather avoid doing it manually. Background: It's good practice to freeze ...
3
votes
2answers
202 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
0answers
36 views

Heroku is ignoring bundle configuration

I'm trying to install the gem 'taglib-ruby' on Heroku. This gem compiles as a native extension which requires a system dependency called taglib, so after compiling and uploading it through heroku ...
0
votes
1answer
301 views

How to install json gem - Failed to build gem native extension

I'm trying to deploy a rails app to my ubuntu linux server. I'm using capistrano and bundler and when it gets to installing gems it fails with this error: Installing json (1.7.7) with native ...
0
votes
2answers
61 views

how can I resolve this gemfile conflict

I'm getting this error after bundle install. How can I fix it? Bundler could not find compatible versions for gem "excon": In Gemfile: locomotive-heroku (~> 0.0.2) ruby depends on ...
0
votes
1answer
32 views

Why can't Rails on Passenger find formtastic/bootstrap.rb?

Well, I can't find it in $RUBYLIB/gems/formtastic-2.2.1/lib/formtastic I also have this directory I don't understand: /home/web/.bundler/ruby/1.9.1/formtastic-bootstrap-3428fef4f787 which doesn't ...
1
vote
1answer
3k views

What can I do about a Bundler::GemfileNotFound error?

I just installed bundler-1.3.3 successfully. However, when I try to run bundle install I get Bundler::GemfileNotFound What is wrong here?
0
votes
1answer
87 views

What can I do to resolve this error when trying to install bundler?

I am trying to run this command gem install bundler but I am always getting this error: ERROR: Loading command: install (LoadError) cannot load such file -- openssl ERROR: While ...
1
vote
1answer
4k views

Bundler::GemfileNotFound while trying to install cms [closed]

There is an error when I'm trying to install a CMS. It says Bundler::GemfileNotFound Besides, when I run bundle it also says Bundler::GemfileNotFound How do I fix this?
0
votes
2answers
163 views

Stop asking for password when installing gems

Whenever I bundle my rails 3.2 gems, it asks me for my password: Enter your password to install the bundled RubyGems to your system This gets really annoying, especially when bundling several ...
0
votes
0answers
205 views

Cannot install pg gem

I finally managed to get the 'pg' gem install after spending hours trying to figure out why it's not working... at the end I entered sudo env ARCHFLAGS="-arch x86_64" gem install pg -v 0.12.2 -- ...
0
votes
1answer
52 views

Installing redcar caused gem issues. Invalid gemspec and

I installed redcar, then installed railsinstaller for my Mac. I also updated my gems using, noticed things got hairy so ran: gem update --system I am getting the following errors when I type rails -v ...
0
votes
1answer
48 views

installing ffi gem manually

I am trying to install the ffi gem. it is a dependency for one of my apps. I have been trying for hours to get this to work. I am receiving this error: #error "Use of <stdbool.h> is valid only ...
0
votes
2answers
159 views

`bundler install --deployment` missing `to_yaml`?

I am not a ruby expert, but I have managed to gather enough information to setup a Gemfile and install required Gemfiles. Lately, however, I've had some problems. For whatever reason, I am now ...
1
vote
2answers
2k views

Bundle Install could not fetch specs from https://rubygems.org/

I'm attempting to follow the Hartl Rails Tutorial, and having trouble with the bundler gem. When using the commands 'bundle install' or 'bundle update' I get the following output: Fetching ...
0
votes
1answer
35 views

I don't want to install gems to ./vendor anymore

I uninstalled the bundler gem and reinstalled it, cleaned out all my gems, removed the vendor/ directory and ran another bundle command. All my gems still went into vendor even though I didn't specify ...
0
votes
1answer
35 views

Cannot find file or constant when using a gem locally in a Rails app

I have a gem that I am making and it is located at the same level as a rails app. I am trying to use the gem in the rails app, but am not able to make it work - the constant I am trying to use, which ...
1
vote
1answer
94 views

the case of the missing gems and bundler conflict

Outside of my rails application directory I accidentally ran bundle install _a_gem_ when I meant gem install _a_gem. It has been some long hours. After this I haven't been able to get my environment ...
1
vote
1answer
125 views

How do I find out which gem has a specific dependency?

I commented out a gem, but 'bundle install' still won't run. How do I find out which gem has a dependency on sys-proctable? $ bundle install Fetching gem metadata from https://rubygems.org/......... ...
12
votes
5answers
2k views

NameError: uninitialized constant Gem::SourceIndex

This error appears for a new rails app, with nothing modified, when visiting the homepage (after successfully running bundle install). Here are the version numbers: ruby: 1.9.3p392 (2013-02-22 ...
0
votes
1answer
202 views

Trying to deploy using capistrano - keep getting pg bundle error - but I'm not using pg

Hi guys I've been trying to deploy my application using capistrano. However I'm getting the following error consistently and have no idea on how to resolve it. * executing "cd ...
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
2answers
63 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
0answers
87 views

RVM issue with not using default gemset

I am new to RVM. I have already run this command to set 'global' as my default gemset: rvm use ruby-1.9.3-head@global --default When I start up a fresh terminal and run rvm gemset list I get this ...
0
votes
0answers
108 views

Ruby 1.8.7, bundler, :path, and '/usr/lib/ruby/gems/1.8/specifications/bin/rake'

Ruby 1.8.7, Bundler version 1.0.21. I'm trying to construct my Gemfile so that my Rails app running under mod_passenger will find some of its gems bundled with the app (like verionomy), and others ...
0
votes
1answer
58 views

how would I get this Gemfile conflict resolved

Have used Rails a bit but am a bit confused as to this problem that I'm having. I have two depdencies for xpath, one for 0.1.4 and one for 1.0 if I just run the following, it errors out: Thu Feb ...
1
vote
1answer
309 views

Bundler won't let me install gems

I'm trying to eliminate these annoying DEPRECATION WARNINGS whenever I try to run rspec tests (I'm trudging through the Rails tutorial). I tried following the suggestion here: rspec triggers ...
0
votes
1answer
151 views

Deploying Rails App to a VPS using Capistrano from Windows to Linux

I'm trying to deploy my first rails application to a VPS. So far I have configured it all with ubuntu, postgresql, node, ruby etc and have run the cap deploy:setup command without errors. When I try ...
9
votes
1answer
667 views

How can I use rdiscount on Heroku?

I am trying to push a small test app to Heroku. Here is the App and the Gem file: App: require 'sinatra' require 'haml' require 'rdiscount' set :markdown, :layout_engine => :haml, :layout => ...
0
votes
1answer
34 views

with bundler install --deployment do i put the files in git?

So I understand that if i run bundler install --deployment it puts the gems in the vendor folder in my application, which is useful for things like shared hosting where I can't install system wide ...
1
vote
1answer
319 views

“Please install the mysql2 adapter”

I am attempting to follow this Redmine setup tutorial. When I get to the point of starting the server, I type sudo rails server and I get the following error: Please install the mysql2 adapter: `gem ...

1 2 3 4 5 7