A Gem refers to a bundled piece of code managed with RubyGems. Gem is also the name of the command line tool used to manage RubyGems.

learn more… | top users | synonyms (1)

14
votes
3answers
5k views

bundler incorrectly trying to install “development” and “test” group gems in production

I have a small web app, which uses a bunch of gems. Some of them are only used for test and development environments. Now, when I try to start unicorn on the production server using the following ...
13
votes
1answer
3k 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 ...
12
votes
3answers
3k views

Where to place/access config file in gem?

I am writing my first gem and I'd like specific options to be retrieved and set by the user through a config.yml file. Where should this file be placed within my gem file structure and how does ...
7
votes
7answers
1k views

Your favorite lesser-known Rails gems/plugins [closed]

What are your favorite lesser-known gems/plugins for Rails? This question about Rails plugins brought up only the usual suspects (Paperclip, RSpec, Shoulda, Restful Auth, etc). It'd be great to get a ...
4
votes
7answers
4k views

Installing bcrypt-ruby gem on Windows

I'm trying to install bcrypt-ruby on Windows Vista. So far, I have been able to install nmake.exe from a MS knowledge base article and cl.exe from installing Visual Studio 2008 Express. However, I ...
18
votes
2answers
4k views

ruby - list all versions of a gem available at remote site

I'm trying to find out all the remotely available versions of a specified gem I tried with gem list rhc --remote but it shows *** REMOTE GEMS *** rhc (0.84.15) rhcp (0.2.18) rhcp_shell (0.2.12) ...
14
votes
5answers
6k views

is not checked out… bundle install does NOT fix help!

https://github.com/intridea/omniauth.git (at master) is not checked out. Please run `bundle install` (Bundler::GitError) So what do I do? bundle install works on development, but when I push and ...
11
votes
6answers
5k views

Error installing pg gem on osx

I am on osx 10.6.7 trying to run bundle install on a new rails 3.0.7 app and it keeps failing when trying to build the pg gem. It keeps telling me that I have need the developer tools. But as far as I ...
6
votes
2answers
812 views

How to override a rails generator template in a gem?

When you want to override a generator template (without replacing the generator itself), in Rails 3 you can just drop files in appropriately named places in lib/templates and Rails will find them. ...
5
votes
4answers
3k views

Heroku rejecting push in mature application (pre-receive hook declined)

I'm getting FAILED: http://devcenter.heroku.com/articles/bundler ! Heroku push rejected, failed to install gems via Bundler To git@heroku.com:... ! [remote rejected] master -> master ...
14
votes
3answers
6k views

Fresh install of RVM in Ubuntu isn't letting me install gems (zlib error)

Ok, I just created a fresh Ubuntu 11.04 install on Windows 7 using VirtualBox (not sure if this matters or not but just an fyi) listing my rubies I get: aaron@aaron-VirtualBox:~$ rvm list rvm ...
14
votes
7answers
17k views

Installed Rails but the rails command says it's not installed

I'm using Ubuntu 9.10 Karmic Koala and Ruby 1.9.1. I installed Rails using sudo gem install rails, which installed all the libraries for me. When I type rails in the terminal it says. The program ...
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 ...
9
votes
2answers
2k views

Error - ERROR: Error installing capybara-webkit:

Any suggestions on how to fix? gem install capybara-webkit -v '0.11.0' Building native extensions. This could take a while... ERROR: Error installing capybara-webkit: ERROR: Failed to build ...
7
votes
2answers
2k views

Create a simple Rails 3 text helper Gem

I've been working on my first Rails 3 plugin, to package up a simple helper function that I like having in the ApplicationHelper of all my apps. You can see the whole code on Github. Here's my first ...
6
votes
3answers
3k views

RVM, Capistrano and bundler path issues

i seem to have a discrepancy between production's gem path when I installed manually versus by bundler+capistrano. After rvm installing ruby 1.9.2 and creating a gemset "myapp", i did install ...
5
votes
8answers
7k views

Failed to build iconv gem on ruby 1.9.2

I fail to install the 'iconv' gem, because of weird build errors. I have build the 'libiconv' from source and linked the .h and .dylib into the rvm's include and lib directory. When I run gem ...
4
votes
4answers
5k views

Installing mysql2 gem on Mac os x Lion

The other day I updated to Mac OSX Lion. It broke my rails install as I had to re complie mysql. While I have got that working reinstalling the mysql2 gem has become problematic. I was perviously ...
3
votes
5answers
472 views

In depth Ruby Gem development resources (book, video, sites)

I'm writing my first Gem for a Rails project, and looking for in depth information about this topic i have found nothing at all. I'm not looking "how to build a gem", but a relevant developer guide ...
2
votes
3answers
3k views

How to safely fix “invalid date format in specification” for webrobots-0.0.10.gemspec

For every gem execution I am receiving the following error: Invalid gemspec in [...rvm/gems/ruby-1.9.2-p136/specifications/webrobots-0.0.10.gemspec]: invalid date format in specification: "2011-07-01 ...
38
votes
3answers
47k 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 ...
8
votes
1answer
1k views

Is it possible to directly install a gem from a git repository?

Using bundler, you can do something like this in the Gemfile: gem 'my_gem', :git => 'git@github:me/my_gem.git' That builds the gem in that repo and installs it. Works great. Is it possible to do ...
6
votes
2answers
972 views

Uninstalling all gems Ruby 2.0.0

It seems that ruby 2.0.0 has added "default" gems to the mix and makes them non removable by gem uninstall. How can you remove all non default gems?
5
votes
2answers
1k views

Attemping to vendorize a gem into bundler with Rails 3, but Gem has no Gemspec

Following these easy steps: gem unpack spree_easy_contact -v 1.0.2 --target vendor/gems Unpacked gem: '../vendor/gems/spree_easy_contact-1.0.2' And then in my Gemfile I add this line : gem ...
4
votes
2answers
1k views

Is there any way to change gcc compilation options for a gem?

I'm struggling to install the RedCloth gem. When I type gem install RedCloth I get : […] ragel/redcloth_attributes.c.rl: In function ‘redcloth_attribute_parser’: ...
3
votes
1answer
392 views

What happens when modifying Gemfile.lock directly?

Since the second time of bundle install execution, dependencies are loaded from Gemfile.lock as long as Gemfile isn't changed. But I wonder how detection of changes is made between those two files. ...
2
votes
2answers
3k views

Password encryption problem in Rails Devise gem

I am now currently changed to use the Gem Devise for user authentication. But I don't know how to match the encryption! I knew that we could write a new encryptor and assign it in initializers, but ...
1
vote
1answer
3k views

How to install Nokogiri Gem for Windows

I'm having this problem with nokogiri's gem: Could not open library 'C:\Ruby187\lib\ruby\gems\1.8\gems\nokogiri-1.4.6-x86-mingw32\ext\nokogiri\libxml2.dll' : unknown I read that I had to try the ...
8
votes
4answers
3k views

Why won't bundler install the json 1.7.4 gem on OS X 10.8?

I'm on OS X 10.8 with XCode 4.4, Ruby 1.9.3, and Rails 3.2. When I clone my rails project from git and run: bundle install I get: Installing json (1.7.4) Errno::EPERM: Operation not permitted - ...
7
votes
4answers
3k views

mysql2 gem Can't build native extensions

Our intern's computer is having problems installing the mysql2 gem. We just upgraded his computer from OS X 10.6 to 10.8 (Mountain Lion). I have tried installing mysql through homebrew and through ...
7
votes
2answers
1k views

rubyonrails error when update to gem 1.8.1

I update gem to the latest 1.8.1 and now when i use rails command i got errors as below NOTE: Gem::Specification#default_executable= is deprecated with no replacement. It will be removed on or after ...
7
votes
5answers
1k views

How do I make --no-ri --no-rdoc the default for gem install? [duplicate]

Possible Duplicate: How to make --no-ri --no-rdoc the default for gem install? I never use ri nor rdoc and they take too long to install. Is there a config file somewhere that will let me ...
7
votes
2answers
9k views

What are the Conventional GEM PATHS for Ruby under OS X 10.5?

I have a performance problem with my ruby on my machine, which I think I have isolated to loading libraries (when #require is called), so I'm trying to work out whether ruby is searching too many ...
7
votes
5answers
3k views

How do I install the mysql ruby gem under OS X 10.5.4

Here is the deal. $ gem --version 1.1.0 $ sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config Bulk updating Gem source index for: http://gems.rubyforge.org/ ...
5
votes
1answer
2k views

How to install and run compass with rvm and gem?

OS: Mint Linux 11 64bit I know nothing about ruby, I just want Compass. I've installed rvm and ruby 1.9.3, and set the default ruby $ rvm list rvm rubies =* ruby-1.9.3-p125 [ x86_64 ] # => - ...
5
votes
2answers
14k views

Pull is not possible because you have unmerged files, git stash doesn't work. Don't want to commit

I just want to pull. I have changes to disregard, my Gemfile and Gemlock files and I'd be happy to just overwrite them and just pull. I tried stashing my changes away, this didn't work out for me. ...
4
votes
0answers
1k views

Best rails plugin for comments? [closed]

What is the best plugin or gem for adding comments to the ActiveRecord models in rails? Maybe there is one with ability to rate each comments with votes +1/-1 (like on youtube for example) and a cool ...
2
votes
3answers
571 views

Trouble installing gitlab-5.0. I can't finish the installation

I am installing gitlab-5.0 on Unbuntu 10, when I execute the 'sudo gem install bundler' command on section Ruby of the gitlab instalation guide, It shows me the next conflict: ...
2
votes
2answers
2k views

GitLab sidekiq failing test

I am following the instructions here: https://github.com/gitlabhq/gitlabhq/blob/4-1-stable/doc/install/databases.md When I try to run the tests: sudo -u gitlab -H bundle exec rake gitlab:env:info ...
1
vote
1answer
396 views

Forem gem: how to link a forum to other models

I have groups (Group model) in my app, which represent groups of people. I want each group to have its own forum. Should I just have the forum id in the groups table? It doesn't feel right. If I did ...
1
vote
2answers
2k views

irb loading wrong ruby and gem path, using rbenv

I started using rbenv for ruby version management and I'm finding that irb not loading the correct ruby version and gem version. Here are the details. irb Gem.path says: `>> Gem.path => ...
9
votes
4answers
2k views

Custom Ruby Gem in Gemfile on Heroku

I've modified a Gem that I use in my Rails app, and need to use it on Heroku. Is there a way to upload the modified Gem to Heroku within my app and specify a custom path in my Gemfile?
7
votes
7answers
6k views

ERROR: Error installing ffi: ERROR: Failed to build gem native extension

Got the DevKit installed and re-ran the ffi install….got this as an output: C:\Documents and Settings\******>gem install ffi Temporarily enhancing PATH to include DevKit... Building native ...
7
votes
3answers
1k views

Is it possible to download a Ruby gem without installing it automatically?

When I download something using gem I'd like to be able to just download the gem, and then choose whether or not I want to install it. I'm asking this because I'd like to install a particular gem on ...
6
votes
3answers
6k views

Deactivate a Gem - “you have already activated rake 0.9.3.beta.1, but my Gemfile requires rake 0.9.2”

Please help! I'm new to rails. I'm tring to run a migration but I keep getting the error message that rake aborted! undefined method 'prerequisite' for nil:NilClass It seems that somehow I activated ...
6
votes
2answers
7k views

Rails Script Segmentation Fault with RVM

I am getting a segmentation fault. Should which ruby return /usr/local/bin? rpi-wl-757:ellisberner maletor$ rails generate mailer ContactMailer ...
6
votes
2answers
241 views

Proper way of testing gems

If a gem has rails dependencies, do you think it is better to write the gem tests in a way they can be run standalone or run them under a rails project?
5
votes
2answers
117 views

Rails: How to override single files from gem assets for assets:precompile? [Solved]

Situation I use a gem that brings its own JavaScript and stylesheet assets. This gem uses a standard application.js and application.css manifest to require all its assets: ...
5
votes
7answers
4k views

How do you uninstall RVM gem?

Strange... but this is what I got : $ gem list | grep rvm >> rvm (1.11.3.3) $ gem uninstall rvm >> INFO: gem "rvm" is not installed How can that be possible? The root of this problem ...
5
votes
1answer
3k views

How to downgrade bundler or upgrade rails?

I added omniauth gem to my gemfile and tried to run bundle install, but got a message about incompatibility of rails and bundler versions. I tried to update rails, but got messages about ...

1 2 3 4 5 7