vote up 5 vote down star
11

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 searching for useful plugins which suits our requirement.

I have created this poll, people can post useful libraries, gems and plugins which they have come across. It would be great help for newbies like me and to the entire Ruby on Rails community.

Note: to keep this poll as useful as possible, please remember:

  • Post only one library, gem, or plugin per answer
  • Mention the name of the library, gem, or plugin which you find it useful.
  • URL of the location of the resource
  • We don't want duplicate answers, so before posting check if the library has been mentioned already.

Thanks

flag
6  
Wiki this, please! – Mr. Matt Jul 17 at 8:35
Sure Matt will wiki it ,Thanks for your postings – Srinivas Iyer Jul 21 at 5:40

26 Answers

vote up 4 vote down

Formtastic - Awsome form helpers.

It lets you do things like this:

<% semantic_form_for @user do |f| %>
    <% f.inputs do %>
    	<%= f.input :email %>
    	<%= f.input :password %>
    	<%= f.input :password_confirmation %>
    <% end %>

    <% f.buttons do %>
    	<%= f.commit_button 'Sign Up' %>
    <% end %>
<% end %>

and get decent, semantic HTML:

link|flag
Never seen this before - I'll have to take a look through! – Reuben Mallaby Jul 17 at 12:51
I stumbled across this the other day in a thoughtbot blog post, figured I'd see if anyone had mentioned it on SO. This really is one of the best plugins I've ever used. It is so awesome it hurts. – jonnii Aug 11 at 18:02
vote up 8 vote down

Will Paginate - essential for pagination.

link|flag
vote up 3 vote down

Rspec - for BDD.

link|flag
vote up 6 vote down

Paperclip - Simple file uploads

link|flag
vote up 7 vote down

HAML and SASS http://haml.hamptoncatlin.com/

link|flag
1  
disagree with this, I think most people (especially on large projects) would rather have their html as html. – Omar Qureshi Jul 17 at 12:37
The question didn't say large projects 8) And most people I know working on large Rails based projects ten to use HAML and SASS. – Reuben Mallaby Jul 17 at 12:41
How many of the people who work on these projects are people who come from a completely front end background. JUST XHTML and CSS? Even if its 1, the benefits(?) of HAML and SASS are negated by that person who spent their entire career learning CSS and XHTML because of the differences in Syntax. – Omar Qureshi Jul 17 at 13:23
Luckily this question was tagged "subjective" as in your opionion it's not good, but in mine it is very good. Vote up the gems/plugins that you do like 8) – Reuben Mallaby Jul 17 at 13:48
2  
I love HAML and SASS. You get much more readable views with it. You also can't miss closing your tags while using it over (X)HTML, since it does it for you. All in all, it's worth the extra 20 minutes it'll take a designer to learn. – Robert Rouse Jul 17 at 14:36
show 2 more comments
vote up 8 vote down

Authlogic - Easy Authentication

link|flag
1  
+1 for Authlogic .Please provide the link to the Resource , so that i would be helpful for users ,Thanks – Srinivas Iyer Jul 20 at 10:22
vote up 1 vote down

grosser-rpx_now - Interface into RPXNow.com, which provides an interface into OpenID, Facebook, MySpace, Twitter, and much more in terms of authentication. A great companion for Authlogic.

link|flag
vote up 4 vote down

Nokogiri - for all your XML and HTML parsing and searching needs.

link|flag
vote up 3 vote down

Capistrano - for easy deployment.

link|flag
vote up 1 vote down

Capistrano-ext - allows you to setup separate deploy recipes for staging / production / whatever other environment you have

link|flag
vote up 1 vote down

Backup-fu - in conjuction with capistrano, we always backup before a deploy to Amazon S3, and set cron jobs that periodically backup the database and asset directories.

link|flag
vote up 2 vote down

Seed-Fu - Easy database seeding gem. Please don't use migrations to seed your database! :)

link|flag
We use a combination of populator and faker for this. Need to take a closer look at Seed-Fu. – Mr. Matt Jul 17 at 15:29
vote up 2 vote down

Faker - for creating valid, fake data. Great for populating an empty dev DB / testing.

link|flag
vote up 3 vote down

Populator - for pushing data into the DB when populating it. Used in conjunction with Faker. More info here.

link|flag
vote up 0 vote down

Mofo gem - A ruby microformat parser , Helps to import Profile data from networking sites which implements microformats using hResume,hCard . ex LinkedIn , Xing ,Twitter etc .

Very useful gem .

link|flag
vote up 2 vote down

soap4r: A must have for making soap calls!

Source: http://rubyforge.org/projects/soap4r/

link|flag
Please provide the link to the Resource , so that it would be helpful for users ,Thanks – Srinivas Iyer Jul 21 at 5:27
vote up 4 vote down

Thinking Sphinx - for integrating with Sphinx for dead-simple text-searching in your app.

link|flag
vote up 1 vote down

Validation Reflection - when used with formtastic, it frees you from having to specify which fields of a form are required, as it infers it from your model validations.

link|flag
vote up 0 vote down

Nested Layouts - Great when you have sections of your site that sit inside their own wrappers. My account (in many apps) has a series of controllers that may have a common navigation header. Nested layouts allows you to use a my_account layout that sits inside your application layout, preventing the need for duplicate layout code or spurious navigation partials.

link|flag
vote up 1 vote down

Contacts is a universal interface to grab contact list information from various providers including Hotmail, Gmail and Yahoo.

link|flag
vote up 1 vote down

I really enjoy harsh for syntax highlighting. It gives you access to all of the TextMate themes also, which I love.

link|flag
vote up 3 vote down

Clearance for authentication.

link|flag
Clearance needs more love. – jonnii Oct 24 at 18:51
vote up 1 vote down

More, the rails plugin for Less, the CSS extension. I prefer Less to Haml; there's no learning curve for Less.

link|flag
vote up 1 vote down

jRails is a drop-in jQuery replacement for the Rails Prototype/script.aculo.us helpers.

link|flag
vote up 1 vote down

Delayed Job for background processing.

link|flag
vote up 1 vote down

state_machine: adds support for creating state machines with a lot of very useful features. It has great ActiveRecord integration and even supports automatic named scope for states.

link|flag

Your Answer

Get an OpenID
or

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