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)

78
votes
13answers
35k 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 ...
51
votes
5answers
14k views

Bundle / Rake error

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 ...
46
votes
7answers
28k 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? ...
44
votes
4answers
12k views

How to install gem from GitHub source?

I know this is probably kind of noob question, but I never tried this before and I'm not sure how to do this. So when I installed my gem with gem utility it installed too old version. I want latest ...
31
votes
4answers
14k 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 ...
23
votes
5answers
8k 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 ...
22
votes
12answers
20k 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 ...
21
votes
2answers
3k 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 ...
18
votes
11answers
4k 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 ) ...
16
votes
5answers
38k 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. ...
15
votes
2answers
13k 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 ...
14
votes
18answers
10k 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 ...
13
votes
3answers
3k 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 ...
13
votes
9answers
10k views

WYSIWYG editor gem for Rails?

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

Installing Ruby on Ubuntu 10.10 using RVM, problem with gem

I've decided to start fresh with ubuntu 10.10. I started with installing git and then installing rvm from the git repo. everything worked fine and I compiled and install ruby 1.8.7 and ruby 1.9.2 ...
11
votes
3answers
1k 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 ...
11
votes
5answers
4k views

How do I fix this error? config.gem: Unpacked gem authlogic-2.1.3 in vendor/gems has no specification file

I get this error when launching my Mongrel server... $ script/server --debugger => Booting Mongrel => Rails 2.3.5 application starting on http://0.0.0.0:3000 config.gem: Unpacked gem ...
10
votes
4answers
381 views

Should I host gems in GitHub or RubyGems?

I've read that RubyGems is de-facto hosting for gems. I host all my Rails projects on GitHub. So my questions are: Are there any reasons for hosting my gems on GitHub and not RubyGems? Does ...
10
votes
3answers
5k 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 ...
10
votes
4answers
4k 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 ...
10
votes
4answers
5k views

Installing RMagick on Mac OS X with MacPorts

With the MacPorts version of ImageMagick 6.4.4 installed, I'm getting an error installing the RMagick gem. /opt/local/bin/ruby extconf.rb update rmagick checking for Ruby version >= 1.8.2... yes ...
9
votes
3answers
401 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?
9
votes
3answers
3k views

Building a ruby gem for Rails applications

As a Rails developer I feel a bit stupid asking this question but hopefully I will learn something new and someone can put me out of my misery! In my rails applications I use (other peoples) gems all ...
8
votes
3answers
3k 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 ...
8
votes
13answers
6k 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 ...
8
votes
6answers
2k 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?
8
votes
1answer
188 views

Gem dependencies versions meaning

Gem dependency version can be specified with prefixes =, <, >, <=, >= and ~>. I understand all except last one, what does ~> mean?
7
votes
4answers
252 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
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
3answers
2k views

sqlite3 gem fails to install

I'm trying to install the "sqlite3-ruby" gem (or the "sqlite3" gem) on OS X 10.6. I'm using ruby-1.9.2 and I currently get the following: $ sqlite3 --version 3.7.4 $ sudo gem install sqlite3 ...
7
votes
1answer
805 views

Is there a Facebook Credits Ruby On Rails gem out there yet? Or ruby version of their Facebook Credits sample app?

I am wanting to implement Facebook Credits in my Facebook app. Does anyone know of a version of the Facebook Credits sample app available in Ruby on Rails? Has anybody made a gem for this yet? If I ...
7
votes
1answer
1k 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 ...
7
votes
7answers
2k views

Best YouTube gem for Ruby?

Is there a definitive gem for the YouTube API? I'm trying to use youtube_g, but it seems to break on some basic stuff.
7
votes
2answers
783 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 ...
7
votes
4answers
2k views

256 color terminal library for Ruby?

Is there a gem like 'Term::ANSIColor' which works with 256 color terminals? The perl script 256colors2.pl works great in my terminal, and I'd like to use some of these colors in my ruby scripts ...
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/ ...
6
votes
3answers
128 views

Where can I install gems from when rubygems.org is down?

Currently Rubygems.org is down - the website reports an error, and a few gem install tasks are returning 500 errors. Is there a mirror / backup source of gem files, or is rubygems.org essentially a ...
6
votes
1answer
80 views

Rails sms_fu error

brendan lims instructions for setting up the sms_fu gem say run either sms_fu = SMSFu::Client.configure(:delivery => :action_mailer) or sms_fu = SMSFu::Client.configure(:delivery => :pony, ...
6
votes
2answers
716 views

Error instaling holidays gem

I'm receiving the following error when trying to install the holidays gem: # gem install holidays Fetching: holidays-1.0.4.gem (100%) ERROR: Error installing holidays: holidays requires ...
6
votes
6answers
2k 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 ...
6
votes
1answer
99 views

Want to learn how to write a gem that integrates with rails, what is the best gem to learn from?

I want to learn how to write a gem that integrates with rails (3) at some level. I'm learning towards something that hooks into activerecord as I would love to learn that, but not sure how advanced ...
6
votes
1answer
234 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 ...
6
votes
2answers
2k 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 ...
6
votes
1answer
208 views

Jeweler adds circular dependency to my gem

Gem's(gemfoo) jeweler declaration in Rakefile looks like that: Jeweler::Tasks.new do |gem| #truncated gem.add_runtime_dependency 'nokogiri', '~> 1.4.1' gem.add_development_dependency ...
6
votes
3answers
745 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. ...
6
votes
3answers
575 views

Ruby: Experience with Gems for recurring calendar events?

I want to find a ruby gem for my project to work with reccuring events that matches following requirements: can process patterns like "Weekly on Tuesday and Wednessday", or "Monthly on the last ...
6
votes
2answers
3k views

String.force_encoding() in Ruby 1.8.7 (or Rails 2.x)

Is there a solution to use String.force_encoding() in Ruby 1.8.7 (or Rails 2.x) so that it works like in Ruby 1.9? I read something about require active_support, but this does not work $> gem list ...
6
votes
3answers
1k views

Rails 3: define plugin gem dependency

I wrote a plugin that requires a gem as a dependency. Where I define this dependency ? I have tried to create gemfile in vendor/plugins/my_plugin/, but 'bundle install' don't find this file.
6
votes
3answers
228 views

Have you replaced makefiles with ruby scripts?

I appreciate makefiles and make in all their glory, but I wonder if there isn't a more intuitive way to maintain my c/c++ builds. Has anyone tried replacing their makefiles with ruby scripts to allow ...
6
votes
2answers
150 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?

1 2 3 4 5 31