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)

139
votes
7answers
43k views

How to install gem from GitHub source?

I would like to install gem from the latest GitHub source. How do I do this?
120
votes
13answers
55k views

Ubuntu noob rails install fails on zlib

I've just moved over to Ubuntu 8.10 as my dev box; it's my first serious foray into Linux as a daily-use OS, and I'm having a hard time getting Rails going. I have followed a number of tutorials ...
83
votes
11answers
56k views

How do I update Ruby Gems from behind a Proxy (ISA-NTLM)

Firewall I'm behind is running Microsoft ISA server (NTLM only mode), anyone have success getting their Ruby gems to install/update via Ruby SSPI gem or other method? ... or am I just being lazy? ...
74
votes
4answers
28k views

cannot load such file — zlib even after using rvm pkg install zlib

I installed zlib package and ruby 1.9.3 using rvm, but whenever I try to install gems it says cannot load such file -- zlib. The commands I used to install are: $ rvm install 1.9.3 . $ rvm pkg ...
67
votes
3answers
11k views

Setup RSpec to test a gem (not Rails)

It is pretty easy with the added generator of rspec-rails to setup RSpec for testing a Rails application. But how about adding RSpec for testing a gem in development? I am not using jeweler or such ...
60
votes
5answers
20k views

already activated rake error (when not using bundle exec)

This is kinda weird - i do not think i changed any code in this particular application (but i was working on another app and performing some gem updates there) When i started running the rake cron on ...
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: ...
43
votes
4answers
15k views

Uninstall old ruby gem's versions

I have several versions of a ruby gem: $ gem list rjb (1.3.4, 1.3.3, 1.2.5, 1.1.9) How to remove some of this versions ?
40
votes
7answers
9k views

Error installing debugger-linecache in Ruby 1.9.3

I need version 1.0.1 of debugger-linecache for a project, and I am facing the following error when trying to install. trunk ☺ gem install debugger-linecache -v '1.0.1' Building native extensions. ...
36
votes
3answers
45k 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 ...
33
votes
5answers
20k views

therubyracer gem on windows

I've been peacefully developing on Windows without adding any gems for a few weeks now and today I decided to to a bundle update, but I cannot get through this gem called therubyracer. I have the ...
33
votes
4answers
19k views

uninitialized constant Rake::DSL in Ruby Gem

I have been working on updating my gem (whm_xml at https://github.com/ivanoats/whm_xml_api_ruby ) to make it work with ruby 1.9.2, latest rubygems, latest bundler, latest rdoc, latest rake. It works ...
32
votes
12answers
32k views

Why can't I install the sqlite gem? [closed]

I'm try to install the sqlite gem on a Fedora 9 Linux box with ruby 1.8.6, Rails 2.2.2, gem 1.3, and sqlite-3.5.9. Here's the command I'm running and its results: sudo gem install sqlite3-ruby ...
31
votes
16answers
4k views

What are the “Must Have” Ruby Gems [closed]

I am relatively new to ruby, and I've been amazed with some of the Gems available. Sinatra comes to mind (one of the simplest ways to create working RESTful interfaces I've ever seen). So I was ...
29
votes
2answers
4k views

How to get a specific “commit” of a gem from github?

I'm using rails_admin, and since it is in (very) active development, bugs turn up every now and then. There are no versions for the gem as far as I can tell, for the gem in github, so I can't use the ...
29
votes
5answers
11k views

Is Cassandra production ready for Ruby on Rails?

I'm working on a project that is considering using Cassandra as a database. We would like to eventually migrate to Cassandra even if we use MySQL to start with, given its scalability. I know that ...
26
votes
3answers
7k views

including rake tasks in gems

1) Is there a 'best' place for rake tasks inside of gems? I've seen them in /tasks, /lib/tasks, and I've seen them written as *.rb and *.rake -- not sure which (if any) is 'correct' 2) How do I ...
24
votes
4answers
8k views

Error installing gem capybara-webkit

I am new to ruby, but while trying to install capybara to run test on my system I get the following error. Im running OSX my_app$ gem install capybara-webkit Building native extensions. This could ...
23
votes
1answer
3k views

Failed to build json (1.6.3) with native extension after I installed Xcode 4.2

Are you familiar with this error? I have no idea how to fix this: Installing json (1.6.3) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. ...
23
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 ...
22
votes
7answers
14k views

Rubygems do not install on OS X Lion

I used to have no problems at all with ruby, gems and all related stuff. But after installing X Code Developer Tools and upgrading to Lion the gems do not install. I get the following error for ...
22
votes
4answers
3k views

How do I extract Rails view helpers into a gem?

I have a set of rails view helpers that I use regularly, and would like to package them up into a gem, such that I could just put a line in my Gemfile, and have the helpers accessible from my views. ...
22
votes
2answers
2k views

Forking a gem for a Rails project

I've found myself twice in this situation: I install a gem on my system and start using it from my Rails project. Eventually I need to make some changes to that gem. How should I proceed? Ideally I'd ...
20
votes
2answers
4k views

Using --no-rdoc and --no-ri with bundler

When using gem install gem_name I can pass --no-rdoc and --no-ri switches to skip generating RDoc/RI documentation for the gem on install. Is there a similar way to do this with bundle install?
20
votes
2answers
11k views

How to use ActiveAdmin on models using has_many through association?

I am using ActiveAdmin gem in my project. I have 2 models using has_many through association. The database schema looks exactly the same as the example in RailsGuide. ...
20
votes
4answers
15k views

Import Excel into Rails app

I am creating a small rails app for personal use and would like to be able to upload excel files to later be validated and added to the database. I had this working previously with csv files, but this ...
20
votes
3answers
8k views

Cannot use ruby-debug19 with 1.9.3-p0? [duplicate]

Possible Duplicate: Rails 3.1 and Ruby 1.9.3p125: ruby-debug19 still crashes with “Symbol not found: _ruby_threadptr_data_type” I run this: gem install ruby-debug19 And in my ...
19
votes
16answers
11k views

Can't install pg gem on Windows

I've got 2 Ruby versions: 1.8.7 and 1.9.2 and PostgreSQL 8.3. I cant install pg gem on any of them. Getting this error: C:/Development/Ruby187/bin/ruby.exe extconf.rb checking for pg_config... yes ...
19
votes
11answers
5k views

strange bundler error: tar_input.rb:49:in `initialize': not in gzip format (Zlib::GzipFile::Error) on bundle pack

i am getting a strange bundler error when running bundle pack with bundler 0.9.12 any ideas? (see pastie for a better formatted code: http://pastie.org/881328 ) ...
19
votes
2answers
20k views

gem install permission problem

qichunren@zhaobak:~> gem install hpricot ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions into the /opt/ruby-enterprise-1.8.7/lib/ruby/gems/1.8 ...
19
votes
9answers
9k views

Installing linecache19 for Ruby 1.9.2 via rvm

I am having a problem with installing linecache19(dependency of ruby-debug19) for ruby 1.9.2 Here is my term output $ rvm use 1.9.2 Using /home/bogdan/.rvm/gems/ruby-1.9.2-p180 $ ruby -v ruby ...
19
votes
3answers
6k views

Invalid gemspec -Illformed requirement [“#<YAML::Syck::DefaultKey:0xb5f9c990> 3.2.0”]

Invalid gemspec in [/usr/lib/ruby/gems/1.8/specifications/activemodel-3.2.0.gemspec]: Illformed requirement ["#<YAML::Syck::DefaultKey:0xb5f9c990> 3.2.0"] From trying to do a sudo gem update ...
19
votes
3answers
11k views

Why is bundler unable to reach http://rubygems.org? [closed]

Bundle install was working perfectly yesterday but now it's returning this output in the CL: ~/dev/rails/sample_app$ bundle install Fetching gem metadata from https://rubygems.org/. Error ...
18
votes
3answers
2k views

Difference between plugins and Ruby gems?

What is the difference between plugins and gems? What are the different uses of each? Where and why would you use one over the other?
17
votes
9answers
14k views

WYSIWYG editor gem for Rails?

Is there a good ruby gem for a WYSIWYG editor that will easily work with a rails app?
17
votes
6answers
4k views

Ruby on Rails: Switch from test_unit to rspec

I'm going through a tutorial that has suggested using rspec, but I have already gone through a lot of default rails installation. I really don't want to have to redo the installation at all. Anyway, ...
17
votes
5answers
43k views

sqlite3-ruby gem: Failed to build gem native extension

Update: Check out this follow-up question: Gem Update on Windows - is it broken? On Windows, when I do this: gem install sqlite3-ruby I get the following error: Building native extensions. ...
16
votes
3answers
3k views

An error occurred while installing debugger-linecache (1.1.1), and Bundler cannot continue

Any idea how to fix this? Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. /home/durrantm/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb checking for vm_core.h... ...
16
votes
6answers
6k views

Simple Rails 3 CMS Gem/Plugin?

Can anyone recommend a simple, lightweight CMS gem or plugin for Rails 3 that can easily be embedded into an existing app?
16
votes
3answers
3k views

Rails Engine - Gems dependencies, how to load them into the application?

I'm doing an engine here, it works alright in stand alone. When I transform it into a gem, and load it inside another application, I get a lot of undefined errors, coming from my engine gem's ...
16
votes
2answers
3k 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) ...
16
votes
1answer
5k views

Ruby Gemspec Dependency: Is possible have a git branch dependency?

Is possible have a git branch dependency, inside mygem.gemspec ? I'm thinking something similar to the following: gem.add_runtime_dependency 'oauth2', :git => 'git@github.com:lgs/oauth2.git' ...
15
votes
4answers
10k views

ERROR: Gem bundler is not installed, run `gem install bundler` first

Hi I've been having a probably trying to install the Ruby gem bundle. I follow the directions gem install bundle after I receive this message, but it still doesn't work when I type bundle -v. I also ...
15
votes
7answers
7k views

annotate command not working, added it to my gemfile

My gem file looks like: group :development, :test do gem 'rspec-rails' gem 'annotate-models', '1.0.4' end I ran 'bundle install' and it installed the annotate-models bundle. If I type: ...
15
votes
18answers
11k views

Problem installing mysql gem on Snow Leopard: uninitialized constant MysqlCompat::MysqlRes

I've got a problem trying to install the Ruby mysql gem driver. I recently upgraded to Snow Leopard and did the Hivelogic manual install of MySQL. This all seems to work fine as I can access mysql ...
15
votes
2answers
3k views

Rails 3.1 plugin gem, dummy test app, rspec

So Rails 3.1 comes with a little-known handy "rails g plugin new" generator, which gives you a skeleton suitable for a rails gem plugin. ...
15
votes
2answers
6k views

fastercsv error with ruby 1.9.2

I have an existing rails application I'm running on ruby 1.9.2 and linux its rails version is rails 2.3.8 and it has a GEMFILE as well, in its vendor/gems directory it has 'fastercsv-1.5.4' gem ...
14
votes
6answers
10k views

Ruby: mysql2-Gem not working (Mac OS X Snow Leopard, Ruby 1.9.2)

I just compiled ruby and installes rubygems, mysql2 and rails, which worked quite well. But I get the following error message, whenever I try to start the rails server: ...
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
4answers
8k views

Ruby 1.9.2 how to install RMagick on Windows?

I'm currently upgrading an old rails app to use Rails 3 and Ruby 1.9.2, and RMagick is the last gem I need to install. However there doesn't seem to be any 1.9.2 downloads for Windows and the ...

1 2 3 4 5 68