vote up 14 vote down star
12

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 wondering, what are some of the coolest or most amazing Gems my fellow programmers have found, that a newbie Ruby guy should look at. Im not looking to solve a specific problem I am having, it more about getting answers to a problem I never knew I had (if you follow my meaning).

What are your suggestions?

flag

15 Answers

vote up 5 vote down check

I'm of the "don't get it until you need it" philosophy.

That said, there are a couple gems that I keep using:

link|flag
2  
Hpricot (and Nokogiri) are fantastic. Definitely my first choice for any HTML scraping/manipulation. – overthink May 13 at 18:55
vote up 0 vote down

[whenever] - define cron tasks in ruby DSL

link|flag
vote up 0 vote down

Friendly_id It allows you to create pretty URL’s and work with human-friendly strings as if they were numeric ids for ActiveRecord models.

link|flag
vote up 3 vote down

Check out http://ruby-toolbox.com/. They categorize ruby projects and break them down by most watched projects on GitHub. Pretty useful for finding good gems within each problem domain.

link|flag
vote up 2 vote down

Sinatra is the simplest way to make a web app with Ruby.

EDIT: Code sample:

require "sinatra"
get '/' do
    "Hello, world!"
end
get '/:name/?' do
    "Hello, #{params[:name]}!"
end

In this case, running your program and then going to / will output Hello, world and /dave, with or without a trailing slash, would output Hello, dave!

link|flag
easier than camping? (haven't used either, yet, so I'm actually curious) – jess May 21 at 22:04
I'm not sure. I can't tell from any of the samples on the site. I'll add a sampling here. – Lucas Jones May 22 at 15:38
vote up 0 vote down
  • shoulda
  • zentest
  • redgreen
  • rcov
  • passenger

and of course:

  • json
link|flag
vote up 1 vote down
  • rak: search for a string pattern in your code
  • rcov: code coverage statistics for your tests, in nice html
  • flay and flog: to see which parts of your code suck the most
link|flag
vote up 5 vote down
General
  • Rake — This should come pre-installed with rubygems, must have tool
  • DaemonsRun ruby code as a daemon
  • HamlAwesome alternative to raw HTML
  • HpricotHTML parser
  • RdiscountMarkdown parser
  • CapistranoVery nice deployment tool
Testing
  • RspecTesting framework
  • CucumberIntegration testing
  • Factory-girlFixtures replacement
  • Autotest — Runs your tests in the background
Rails plugins
link|flag
vote up 2 vote down

The ones the READMEs of the projects you're using tells you to install.

link|flag
vote up 6 vote down

Ramaze is ramazing. If you like Sinatra, you may like Ramaze even more. Sinatra gets all the press these days but Ramaze has actually been around longer.

link|flag
I found Ramaze strange when looking at it... so I'll stick with Sinatra, thanks. – The Wicked Flea May 13 at 18:00
Sure but, out of curiosity, what do you mean by 'strange'? – emo May 13 at 19:18
vote up 1 vote down
  • rake
  • autotest (zentest)
  • rspec
  • shoulda
  • cucumber
  • webrat
  • machinist
link|flag
vote up 1 vote down

I've been using Mechanize a lot lately. It comes in handy more often than you might realize initially. Wirble is also amazing.

link|flag
vote up 0 vote down

fastthread, rails, sinatra, my own gem, rspec all come to mind.

link|flag
vote up 6 vote down

Here are some of my favorites:

link|flag
vote up 2 vote down

I tend to use ActiveMerchant and Paperclip a lot in my Rails apps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.