RubyGems is a package management tool for the Ruby programming language. It allows users to download and update Ruby libraries, and provides automatic dependency resolution.

learn more… | top users | synonyms

110
votes
16answers
48k views

Library not loaded: libmysqlclient.16.dylib error when trying to run 'rails server' on OS X 10.6 with mysql2 gem

I've been struggling with this for some time. I've installed Rails 3, gem, mysql on my Snow Leopard machine. All was going well until I created my first project and tried to run rails server Upon ...
197
votes
11answers
86k views

Uninitialized constant ActiveSupport::Dependencies::Mutex (NameError)

When I want to create a Ruby on Rails project, I get the message below. /usr/lib/ruby/gems/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:55: uninitialized constant ...
114
votes
15answers
79k views

Installing mysql2 gem for Rails 3

I am having some problems when trying to install mysql2 gem for Rails 3. When I try to install it by issuing "bundle install" command or "gem install mysql2" it gives me following error "Error ...
220
votes
5answers
49k views

How to remove rvm (ruby version manager) from my system?

How can I remove rvm (ruby version manager) from my system?
87
votes
15answers
32k views

Invalid gemspec because of the date format in specification

When I include a gem that I made, thanks to Bundler (version 1.0.12), in a Gemfile and then I try to bundle or to rake just like that: $ rake I've got this error message: Invalid gemspec in ...
340
votes
7answers
54k views

How to make --no-ri --no-rdoc the default for gem install?

I don't use RI or RDoc from the gems I install in my machine or in the servers I handle (I use other means of documentation), but every gem I install comes with RI and RDoc by default and I forget to ...
8
votes
6answers
4k views

Extending controllers of a Rails 3 Engine in the main app

I am using a Rails engine as a gem in my app. The engine has PostsController with a number of methods and I would like to extend the controller logic in my main app, e.g. to add some methods. If I ...
44
votes
7answers
24k views

How to handle Ruby on Rails error: “Please install the postgresql adapter: `gem install activerecord-postgresql-adapter'”

Running a Ruby on Rails (RoR) app or Ruby code which uses the ActiveRecord framework, you get the error message: Please install the postgresql adapter: gem install ...
12
votes
2answers
2k views

Why are we installing Ruby 1.9.2/1.9.3 gems into a 1.9.1 folder?

This comes about because the Gem installation directory used by the gem command, seen when using gem env, is set to something like: <base_ruby_dir>/lib/ruby/gems/1.9.1 My question is why? ...
26
votes
9answers
37k views

no such file to load — rubygems (LoadError)

I recently installed rails in fedora 12. I'm new to linux as well. Everything works fine on Windows 7. But I'm facing lot of problems in linux. Help please! I've installed all the essentials to my ...
12
votes
2answers
2k views

Why are gems installed in a 1.9.1 directory when my Ruby version is different than 1.9.1?

When I install a gem, it gets installed in a directory named 1.9.1, despite that not being the version of Ruby I have installed: $ ruby -v ruby 1.9.3p327 (2012-11-10 revision 37606) ...
16
votes
2answers
1k views

Meaning of tilde-greater-than (~>) in version requirement?

What's the meaning of ~> version requirement in gem specs? hanna-0.1.12 depends on [haml (~> 2.2.8)]
57
votes
5answers
35k views

How do I use gems with Ubuntu?

I recently upgraded to Ubuntu 9.04 and I have issues using gems. I installed Ruby, Rubygems and Rails using apt-get. The rails command does work. I then installed capistrano and other gems, such as ...
109
votes
5answers
17k views

Ruby : How to write a gem?

I'd like to write a package for Ruby and make it available as a gem. What are the tools, steps and pitfalls ? Are there any good tutorials, screencasts, etc., which helped you learning how to do it ? ...
72
votes
4answers
28k views

How do you downgrade rubygems?

I have rubygems 1.3.1 installed but I want to go back to 1.2.0. What's the command to downgrade rubygems?
39
votes
10answers
54k views

MySQL Install: ERROR: Failed to build gem native extension

I'm trying to get MySQL installed to the latest version due to some installation going wrong somewhere along the line. I run the command gem install mysql and I receive the following: Building ...
22
votes
8answers
24k views

Ruby gem mysql2 install failing

When I try to install the mysql2 gem, it fails with no apparent errors. Does anyone know what to do to work around this so mysql2 installs? I am installing this on OS X. ...
29
votes
3answers
9k views

Ruby: problem installing EventMachine under Windows 7

I am trying to install the gem EventMachine on Windows 7 (using Ruby 1.9.2 with RubyInstaller) via bundle, but I get the following error. I also installed DevKit and it is working, but I still can't ...
103
votes
18answers
35k views

Invalid date format specification in gemspec

I am getting the following error when I try to use gems in windows, and I also referred to this stackoverflow post and updated rubygems and rails. But nothing could solve the problem. The following ...
50
votes
8answers
26k views

RVM Ruby 1.9.1 install can't locate zlib but its runtime and dev library are there

Trying to get Ruby 1.9.1 up and running with RVM on a fresh install (fedora). After doing rvm install 1.9.1, the rubygems error logs show that zlib can't be located no such file to load -- zlib ...
24
votes
5answers
10k views

Check for Ruby Gem availability

Is there a way to check if some gem is currently installed, via the Gem module? From ruby code, not by executing 'gem list'... To clarify - I don't want to load the library. I just want to check if ...
36
votes
4answers
5k views

What does tilde-greater-than (~>) mean in Ruby gem dependencies?

What does ~> mean in the context of Ruby gem depenedencies? For example, when opening a legacy project in the RubyMine IDE, I get this message: Gems required for project are not attached: arel ...
40
votes
8answers
15k views

Ruby 1.9.2 and Rails 3 cannot open rails console

[gkaykck@main myApplication]$ rails console /usr/local/lib/ruby/1.9.1/irb/completion.rb:9:in `require': no such file to load -- readline (LoadError) from ...
17
votes
10answers
7k views

How do I fix Rubygems recent deprecation warning?

I have recently run updates: gem update --system gem update Now, I come with a lot of deprecation warnings each time I load a gem. For example, rails console: NOTE: ...
10
votes
7answers
19k views

Ruby gem mysql2 install error

I have the Ruby version ruby 1.9.2p0 (2010-08-18) [i386-mingw32] installed in Windows7. and the gem vesion 1.3.7 When i tried to install mysql gem, it is showing Failed to build gem native extension ...
10
votes
6answers
9k views

Cannot install mysql2 gem

I'm unable to install the mysql2 gem in my Windows7 x64 system. I tried using both the 32-bit and 64-bit versions of MySQL server but none got me any further. I installed Ruby 1.8, the development ...
8
votes
9answers
15k views

Bypassing rack version error using Rails 2.3.5

I'm currently on Dreamhost attempting to run a Rails 2.3.5 app. Here is the situation, Dreamhost's servers have Rails 2.2.2 installed. Of course, I can't update a shared host's rails version, so I ...
18
votes
5answers
20k views

How can I get past “http://gems.rubyforge.org/ does not appear to be a repository” error message

Question 828421 asked similar question, but received only one real answer (update rubygems) and that attempt results in the same error. Ruby version 1.9.1.p243 on Windows. Included Gem, version ...
11
votes
3answers
2k views

How to avoid deprecation messages from RubyGems?

After gem update --system, when I do something related to rubygems, I receive this message: NOTE: Gem::Specification#default_executable= is deprecated with no replacement. It will be removed on or ...
30
votes
8answers
11k views

Can't find the PostgreSQL client library (libpq)

I'm trying to install PostgreSQL for Rails on Mac OS X 10.6. First I tried the MacPorts install but that didn't go well so I did the one-click DMG install. That seemed to work. I suspect I need to ...
9
votes
5answers
22k views

gem install mysql failure in Snow Leopard

I successfully installed MySql x86_64 in Snow Leopard and Ruby and Ruby Gems seems to be installed properly: $ which mysql /usr/local/mysql/bin/mysql $ which ruby /usr/bin/ruby $ which gem ...
29
votes
43answers
6k views

Most useful Rails plugins, Ruby libraries and Ruby gems? [closed]

I have seen many sites which provide the whole list of Rails plugins, Ruby libraries and Ruby gems, but we hardly use few of them and some may not suit our requirement and we spend a whole lot of time ...
36
votes
4answers
23k views

Adding a directory to $LOAD_PATH (Ruby)

I have seen two commonly used techniques for adding the directory of the file currently being executed to the $LOAD_PATH (or $:). I see the advantages of doing this in case you're not working with a ...
26
votes
4answers
16k views

Errors Installing mysql2 gem via the Bundler

I am trying to install the mysql2 gem via the Bundler, but it keeps dying with the following error: ** executing command ...
10
votes
9answers
10k views

Snow Leopard + Ruby 1.9.1 + MySQL Gem = Huge problems

I tried for about 3-4 hours trying to get the mysql gem to install for ruby 1.9.1 on snow leopard. The mysql gem used to work just fine on 1.9.1 before I upgraded to snow leopard. I uninstalled ...
26
votes
6answers
10k views

`gem install therubyracer` fails on Mac OS X Lion

I would appreciate some help in getting gem install therubyracer to work. Here is the error: $ gem install therubyracer Building native extensions. This could take a while... ERROR: Error ...
18
votes
6answers
8k views

How do I use RVM and create globally available gems?

I'm running Mac OSX 10.6.4 and have installed RVM. Its been great so far, I really love the way it lets me manage having multiple versions of rails and ruby on the same machine without headaches! ...
14
votes
3answers
2k views

Rubygems: How do I add platform-specific dependency?

I've a ruby gem that has different dependencies for each OS. I have to explicitly write all of them down: On Mac OS X: gem install livereload on Linux: gem install rb-inotify livereload ...
25
votes
16answers
6k views

Rails 3 install error: “invalid value for @cert_chain”

I'm trying to install Rails 3 on a new OS X Snow Leopard machine (with dev tools installed), and when I sudo gem install rails, I get the following error: ERROR: While executing gem ... ...
10
votes
4answers
2k views

What's the point of freezing your Rails version/gems?

What does that mean? In the instructions for a project, it said to "freeze the Rails gems". Is that different from freezing the Rails version? What's freezing about?
9
votes
4answers
12k views

Unable to install mysql2 gem on windows 7

I am getting the following error message while installing, let me know if any one needs some more details. I followed instruction from ...
7
votes
6answers
9k views

ruby-debug19 on ruby-1.9.3-preview1 [duplicate]

Possible Duplicate: Rails 3.1 and Ruby 1.9.3p125: ruby-debug19 still crashes with “Symbol not found: _ruby_threadptr_data_type” I'm having some problems getting debugging ...
3
votes
3answers
5k views

issue in installing mysql2 gem with rails3 on mac

Installing mysql2 (0.2.6) with native extensions /Library/Ruby/Site/1.8/rubygems/installer.rb:483:in `build_extensions': ERROR: Failed to build gem native extension. ...
1
vote
4answers
5k views

I get this error when installing a gem: “ERROR: While executing gem … (Zlib::GzipFile::Error)” [duplicate]

Possible Duplicate: ERROR: While executing gem … (Zlib::GzipFile::Error) not in gzip format When installing a gem on my system, I get the following error: gem install blackbook --version ...
0
votes
1answer
232 views

error saying “autocomplete method doesn't exist” with rails3-autocomplete gem

In my rails application I am trying to use rails3-jquery-autocomplete gem. I included the following line in Gemfile. 'gem rails3-jquery-autocomplete' and gave bundle install and its listed in the ...
33
votes
7answers
6k views

Uninstall all installed gems, in OSX?

There are instances where I would like to revert and uninstall all previous gem installations. For instance, I needed to assist a friend migrate their rails development machine to use RVM. As they ...
30
votes
5answers
10k views

Ruby Geolocation Gem/Plugins

What are the available (best) ruby IP-based geolocation gem/plugins? How do they compare to one another in terms of functionality, performance and ease of use (e.g. do they interact with a web ...
50
votes
6answers
14k views

bundle install fails with SSL certificate verification error

When I run bundle install for my Rails 3 project on Centos 5.5 it fails with an error: Gem::RemoteFetcher::FetchError: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: ...
15
votes
8answers
6k views

BUG Bus Error ruby 1.8.7

I'm getting an error after compiling Ruby 1.8.7 using RVM on Lion 10.7.1 with Xcode 4.2 GM (new MacBook). It compiles fine but when I try to install any gem I get the following: gem install bundler ...
11
votes
3answers
9k views

Install Gem from Github Branch?

In my gemfile I have this: gem "authlogic", :git => "git://github.com/odorcicd/authlogic.git", :branch => "rails3" How do I install that as a gem so I can test it?

1 2 3 4 5 10