Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Just curious, as I've been digging deeper in Rails I've found there are often routine things that I originally learned to do in a verbose way, and as I begin to understand the framework and the ruby language better I find much nicer and/or shorter and/or faster ways to do the same things.

So, I thought it would be great to hear tips from the rest of you. What things have you learned that have really boosted your productivity using ruby in general or the rails framework specifically? If you could teach a new rails developer (like me) one time-saving habit or tool or coding convention you wish you'd learned sooner, what would it be?

share|improve this question
I don't think there are really any valid answers to this question that wouldn't apply to any productivity question. Buy a book, learn the language and do things right the first time instead of stumbling around in the dark. – meagar Jan 26 '11 at 14:29
@Meagar: It's true that you should buy a book, I have bought and used three (Beginning Rails 3, The Rails 3 Way, and The Rspec Book). But, when you're new there are still things that you read the way it is in a book and maybe it doesn't click right away, or maybe the way the author works isn't the most efficient possible for your particular program. The point is, even after reading these books there are still many "Aha!" moments. What I'm asking is, share your "Aha!" moments with me :) – Andrew Jan 26 '11 at 14:40
PS: Those interested in this question might want to upvote it so it doesn't get closed. – Andrew Jan 26 '11 at 14:41
2  
I'm not sure this should be an answer or just a comment. Time saver for me is when I check stuffs at ruby-toolbox.com and see how things are implemented. – Ed_ Jan 27 '11 at 2:59
2  
@Andrew For the record, a high up vote count does not prevent a question from getting closed. Moderators do not look at the popularity of a question when they decide what is not on topic. This raised actually raised a meta discussion here. The sole criteria for the decision to close a question is based on the requirements for the site stated in the FAQ. Questions with 100's of up votes has been closed in the past because they are off topic. – Diago Oct 27 '11 at 7:23
show 1 more comment

closed as not constructive by jonsca, Bill the Lizard Oct 27 '11 at 5:13

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

9 Answers

up vote 9 down vote accepted

RVM with per project Gemsets plus Bundler => Awesome

Just create a .rvmrc in your rails app; like this:

rvm --rvmrc --create 1.9.3@name_for_the_gemset

It is a very real time saver because combined with bundler you eliminate any of conflict between gems.

share|improve this answer
  • Go to user groups if any are in your area. Your development will be turbocharged 1000% more than you thought possible.

  • Tailor your learning to your background. If you come from C, Java, etc. focus on your front end skills, if you come from a database background, learn the 'rails' ways of doing queries and focus on Ruby, if you come from the front end, focus on Ruby and Rails.

  • Learn about Rails versions. Even with bundler, finding out what goes with what is key, even more so since rails3 came out! When searching the web and using examples pay close attention to the version and/or date of the article. If you are looking at any articles before 2010/2011 (when Rails 3 came out), make sure the code/approach is still relevant and hasn't been supplanted by changes in newer versions.
    [*Update (Dec 9th 2012) - This continues to be true with rails 4 which is soon to be released.

  • Use RVM to manage ruby and rails versions for your gemsets.

  • For a basic editor, o Mac's use Textmate. More advanced users should get into vi/vim. On Ubuntu, gedit is usable. On Mac's textmate is very common. Some use emacs.

  • For application development, consider an IDE, at least initially -in addition to your regular editor and don't be intimidated by vi/vim or textmate devotee's. That (which editor or editor vs IDE) is a subject with passion!

  • If using an IDE, try rubyMine. vi/vim skills are really handy and often essential for editing on a server or to make a quick code change but for full-bore development many folks find a good IDE is very helpful. This is paticular true for a) New users b) Users new to an existing complex project. Many people have gone through Eclipse then netBeans then rubyMine as a progression.

  • Pick the right platform. Don't bother with windows other than for a week or two. Mac's are the de-facto standard (over 95%). However Linux (Ubuntu for desktop) is a great choice too and very low cost. If you already have a windows machine you can probably dual-boot it for free!

  • Watch Ryan Bates Railscasts. EVERYONE knows and loves these!!!

  • USE A FORM GENERATOR! Maybe formtastic - but even BETTER (despite) the name... simple_form - built on top of formtastic! Follow Jose Valim! And others!

  • Read the Agile web development book!

  • Use Chrome for your browser testing as it has the best deeloper tools.

  • Use git over svn and others. If forced to use svn use the git-svn product! Don't be nervous about git. its just making a backup of your file(s) and then you carry on editing and 'committing' them (to get started anyway). Also use github.

  • Consider 'deploying to the cloud' using 'Heroku' or 'EngineYard' for deployment, both of these are cloud solutions for hosting your rails app, starting at no or minimal cost (but scalable). This means that you will not need to host the site from your location or us a regular ISP. These solutions both use Amazon EC2 for storage. Heroku is more pre-configured. With heroku you set up a git remote and git push to it to deploy. It couldn;t be much easier. EngineYard is more customizable with more access.

  • Use a management/software/development/bug tracking products like Pivotal Tracker (my favorite) or JIRA and/or Trello.

  • Use Sun's Virtual Box for ie7 / ie8 / ie9 testing (works on both Mac's and Linux).

  • Feel free to also use my links at http://www.railslinks.com All links have been entered since January 2010, so most will still be valid. Please post comments here if you have any suggested changes.

Stay humble 'n keep learning ;) It's just gonna get faster from here :)

share|improve this answer

Deploy with agility:

http://heroku.com/

$ gem install heroku 
$ heroku create sushi 
Created http://sushi.heroku.com/ 
git@heroku.com:sushi.git

$ git push heroku master

Done; It cannot get simpler.

I think this kind of agile deployment is some of the most interesting things in the Ruby on Rails world.

It is a very real time saver because you can test your application in a third party server (i.e not your development machine) very easily, fast and free.

share|improve this answer
That's a great tip, I actually have discovered Heroku already but I definitely second your recommendation for anyone else browsing this question! – Andrew Jan 26 '11 at 14:38
@Andrew: I started to use Heroku last week. I was searching for a hosting solution for my startup and Heroku it is just amazing. And free at the start. It also has MongoHQ integration, which gives you a database of 5 mb for free. So double kudos. :) – Nerian Jan 26 '11 at 14:46

And finally: Set up a local DNS server on your development machine.

Why is this useful?

One of my projects uses a lot of subdomains. I could set up an entry for every subdomains, or I could use a DNS server with a wildcard. The second is best :)

# Installing BIND on Mac OS X
http://intridea.com/2010/6/2/using-bind-locally-on-os-x-for-easy-access-to-subdomains?blog=company

This is very useful and real time saver. An alternative is to use Ghost, which is a gem.

https://github.com/bjeanes/ghost
share|improve this answer
That is really an interesting idea, I had never thought of either option. – Andrew Jan 26 '11 at 15:00
Thanks for the link love Nerian! When I have time, I have plans to have ghost gem actually run a mini-DNS server with wildcard support. It'll probably sit on DNSMasq because it's lightweight and much nicer than Bind for simple setups needed for local development... – bjeanes Jan 27 '11 at 7:20
@bjeanes: That would be awesome, I would love to use that :) – Nerian Jan 27 '11 at 14:20
So thanks for all the answers Nerian! Now we just need to get a few different people to post on this question :) – Andrew Jan 28 '11 at 16:00

One more, using puts to display certain debugging info in the logs has been very helpful. A random example:

def index
    @article = Article.all
    puts "Total articles found: #{@article.size}"
end

# Shows "Total articles found: ###" in the log

Obviously this is a simplistic example, but it can be very helpful when you're deployed on Heroku and sometimes have unexpected results from PostgreSQL and the Read-Only file system.

This is also useful if you have any API for your app where you're posting XML or similar directly to a controller, it's much cleaner to read some log info and render :text than it is to read HTML code in a terminal window :)

share|improve this answer

Dealing with many web apps in your development machine:

It is a hassle to have to open a new tab on the terminal just to do a 'rails s' to start the server. Passenger and Nginx make this automatic. When you set up everything you just need to open your browser and write the url. Like http://davinci.local.dev:8081/ and that app is started automatically; on demand.

Install Passenger and Nginx

MacOS
http://shapeshed.com/journal/installing-passenger-3-with-rvm-and-nginx-on-osx/

You may think that passenger is a thing for production servers, but it is just incredibly time saver in your dev machine too.

share|improve this answer

Pick the editor you want to use and master it. Whether it's TextMate, Vim, Emacs, RubyMine, etc. doesn't really matter. Most available editors have a LOT of neat features/shortcuts which will save you a lot of time.

Edit: I should have said to master your whole tool set rather than just your editor. Preferred testing frameworks, plugins/gems, etc. I used to find that I actually spent more time messing around with my tools than actually coding until I picked my favorites and stuck with them.

There will always be some new tool/framework/gem tempting you to try it. I'm not saying it's not worth checking them out, because there really is some cool stuff coming out almost every day, but don't let yourself get sucked into always having to be using the latest thing in your projects.

share|improve this answer
1  
"don't let yourself get sucked into always having to be using the latest thing in your projects." --- Well said. Oh it's tempting, isn't it? – Andrew Jan 28 '11 at 17:49
Yep. I think I've gone through 3 different authentication frameworks in one of my projects and in the end, it still functions pretty much the way it did in the first place! – Dylan Markow Jan 28 '11 at 17:50

Well, one that I found recently that has helped me a lot is the debug() method. Coming from PHP I was used to having print_r() available, but debug() is even better (since it preformats the html for you!).

This is so very helpful if you're having a really unexpected outcome once things have moved from the controller to the view. It's nice to sometimes be able to get a quick, easily readable print of what is actually inside the instance variable when it arrives in the view.

share|improve this answer

If you're on MacOS use Pow as a development server for your rack/rails based apps. With .rvmrc in your project directory and powder gem it really saves a lot of time for development.

share|improve this answer

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