Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting started with rails? Must have gems?

I'm starting work on a project using Rails, but I'm waiting for the 3rd edition of the pragmatic rails book to come out before I purchase a book.

Anyway, my question is a bit more pointed than how do I get started...

What are some of the must have gems that everyone uses?

I need basic authentication, so I have the restful authentication gem, but beyond that, I don't know what I don't know. Is there a run down of this information somewhere? Some basic setup that 99% of the people start with when starting a new rails application?

Thanks in advance.

like image 339
scubabbl Avatar asked Sep 22 '08 19:09

scubabbl


People also ask

Is Ruby on Rails still relevant 2022?

As of 2022, both Ruby and Rails are still relevant in software engineering, powering thousands of websites. Is the framework really obsolete?

What are gems in Ruby on Rails?

Gems in Rails are libraries that allow any Ruby on Rails developer to add functionalities without writing code. You can also call Ruby on Rails gems as plugins for adding features. A Ruby gem enables adding features without creating the code again and again.

Is Ruby required for Ruby on Rails?

Well, given that Ruby on Rails is just Ruby written in a particular fashion (read: framework) yes you will need to learn Ruby.


1 Answers

The gems and plugins that I tend to use on most of my projects are:

  • Restful Authentication -- For authentication
  • Will Paginate -- For pagination
  • Attachment Fu -- For image and file attachments
  • RedCloth -- For textile rendering
  • Capistrano -- For deployment
like image 158
guitsaru Avatar answered Oct 12 '22 01:10

guitsaru