This article is completely out of date. Fortunately, there are much better ways to work with Rails on Windows now, and so this Eclipse-based solution is no longer supported.
Last updated on December 2, 2007 6:41 PM
I've updated all of the broken links and tested this against the new Eclipse 3.2 and Web Tools 1.5. This is the most stable, most responsive version ever!
This latest updated goes hand in hand with the release of Eclipse for Rails , a pre-packaged version for developers looking to try Eclipse. If you're already using Eclipse for development in other areas such as Flex or Java, then you should follow the steps in this tutorial.
I also added a Downloads section where I'll be placing some templates and helper files to speed up the process.
Please, as always, provide some feedback. I can't answer emails about issues not directly related to the setup of this plugin.
This is a quick yet detailed guide on how to set up a very easy-to-use development environment for Ruby On Rails. This guide is for Windows users but there's no reason that it couldn't be adapted for Linux users as well. The guide assumes that you already have a working database installed or available and that you have Ruby installed to c:\ruby .
Lastly, this is not a guide on how to get started with Ruby on Rails! This is simply one method to create a useful IDE for Rails development.
I am operating under the assumption that you're going to use the One-Click Ruby Installer created by Curt Hibbs. If you don't, then you're going to have to modify these instructions yourself.
Eclipse is going to need the Sun Java JRE in order to run. A lot of developers already have this. However, if you are one of the few that doesn't have this installed already, you need to grab it from here . Install it with all of the defaults and then continue with this guide.
Install the Ruby Developer Tools package
The Ruby Developer Tools plugin is a great set of tools that turn Eclipse into a nice Ruby IDE. It's actually part of the Aptana project now.
- Launch Eclipse
- Choose Help->Software Updates->Find and Install
- Choose "Search for new features to install" and select Next
- Select "New Remote Site" ,
- Use the name “ Ruby Developer Tools ”
- Use http://updatesite.rubypeople.org/release for the URL
- You can use http://updatesite.rubypeople.org/nightly if you wish to use the most current nightly build.
- Press OK .and ensure that Ruby Developer Tools is checked.
- Select New Remote Site again
- Use the name " Mylen "
- Use http://download.eclipse.org/tools/mylyn/update/e3.3/ for the URL
- Press OK and ensure that Mylen is checked
- Press Finish to start scanning for updates.
- Check Ruby Developer Tools on the Search Results page and push Next
- Select the features Mylen and Ruby Developer Tools and push Next . You should confirm any messages relating to installing unsigned plugins. The plugins will be installed and be available after you restart Eclipse.
Configure the RDT plugin
- Select Windows > Prefrences > Ruby
- Select Installed Interpreters
- Click Add
- Enter Ruby as the interpreter name (You might want to include the version number if you know it)
- Enter the path to your ruby.exe file (usually c:\ruby\bin\rubyw.exe )
- Select OK
- Configure the rest of your Ruby settings and then select OK to save the settings.
You should know that hese settings are tied to your workspace. If you change workspaces then you will need to reconfigure these options. Hopefully the fine developers of RDT will build these into the plugin at some point so they appear on the context menus.
At this point, you're going to want to open the Ruby perspective. To do this, go to Window -> Open Perspective -> Other and choose Ruby
If you don't want to go through the trouble of creating these external tools, you can download this file and unzip it to the root of your c: drive. The files should then extact to C:\rails\workspace\ (assuming you've followed along so far). The archive contains a .metadata folder and you can safely overwrite the existing one without any problems. Be sure to set up the favorites once you import these settings!
Configure Eclipse to Create Rails Projects
- Select Run -> External Tools -> External Tools
- Select "Program" from the configuration tree
- Select New to create a new program
- Enter “ Create Rails Application in Project ” as the name
- Enter C:\ruby\bin\rails.cmd for the Location
- Enter ${project_loc} for the Working Directory
- Enter ../ ${project_name} for the Arguments
- Select the refresh tab and check Refresh Resources Upon Completion
- Select the Common tab
- Find the section for Display in Favorites Menu
- Check the box next to External Tools
- Select Apply
Configure Eclipse to Launch the web server
- Select Run -> External Tools -> External Tools
- Select "Program" from the configuration tree
- Select New to create a new program
- Enter “ Start Server on port 3000 ” as the name
- Enter c:\windows\system32\cmd.exe for the Location
- For the Working Directory, use
${project_loc}- Enter /C start cmd.exe /C C:\ruby\bin\mongrel_rails.cmd start for the Arguments
- Select the refresh tab and check Refresh Resources Upon Completion
- Select the Common tab
- Find the section for Display in Favorites Menu
- Check the box next to External Tools
- Select Apply
Configure Eclipse to Create Rails Models
- Select Run -> External Tools -> External Tools
- Select "Program" from the configuration tree
- Select New to create a new program
- Enter “ Generate Model ” as the name
- Enter C:\ruby\bin\ruby.exe for the Location
- For the Working Directory, use
${project_loc}- Enter for the arguments
- script/generate model ${string_prompt:Model name} -f
- Select the refresh tab and check Refresh Resources Upon Completion
- Select the Common tab
- Find the section for Display in Favorites Menu
- Check the box next to External Tools
- Select Apply
Configure Eclipse to Create Rails Controllers
As many have noted, you could simply duplicate the previous entry and simply change the arguments
- Select Run -> External Tools -> External Tools
- Select "Program" from the configuration tree
- Select New to create a new program
- Enter “ Generate Controller ” as the name
- Enter C:\ruby\bin\ruby.exe for the Location
- For the Working Directory, use
${project_loc}- Enter for the arguments
- script/generate controller ${string_prompt:Controller name} -f
- Select the refresh tab and check Refresh Resources Upon Completion
- Select the Common tab
- Find the section for Display in Favorites Menu
- Check the box next to External Tools
- Select Apply
- (You could just copy the "generate model" example above and change the argument).
Configure Eclipse to Generate Scaffold for Controllers and Views
As many have noted, you could simply duplicate the previous entry and simply change the arguments
- Select Run -> External Tools -> External Tools
- Select "Program" from the configuration tree
- Select New to create a new program
- Enter “ Generate Scaffold ” as the name
- Enter C:\ruby\bin\ruby.exe for the Location
- For the Working Directory, use
${project_loc}- Enter for the arguments
script/generate scaffold ${string_prompt:Model name} ${string_prompt:Controller name} ${string_prompt:Actions separated with spaces} -f
- Select the refresh tab and check Refresh Resources Upon Completion
- Select the Common tab
- Find the section for Display in Favorites Menu
- Check the box next to External Tools
- Select Apply
Setting Up the Favorites
Sometimes, all of these external commands won't show up under the External Commands icon. We can fix that by making them "Favorites".
- Select Run > External Tools > Organize Favorites
- Add each external tool that you want to appear on your menu of External Tools
- Select Add...
- Select the tools you wish to add to your menu and press OK
- Use the Up and Down buttons to change the order of the items in the menu
- Select OK to save the items
Create a new Rails Project
- Select File > New > Other : Ruby > Ruby Project
- Enter a name for your project.
- This name will be the name you'll use for your Rails project name when you generate the Rails application files
- Make sure to use the Eclipse Workspace for the project contents!
- Select the project in the Ruby Resources view
- Go to Run -> External Tools and choose Create Rails Project. A few seconds later, your Eclipse Console should show the results of the file creation and your file project tree should be populated with your ruby files.
- At this point, you'll want to edit your config/database.yml file with your database properties.
Show All Files
Under Ruby Resources , select the down arrow icon and deselect Show Ruby Files Only so you can see all the files in your project and not just the .rb files ( If you don't see Ruby Resources , it's most likely because you didn't change to the Ruby perspective. (Eclipse defaults to the Java perspective!)
The DBEdit plugin for Eclipse will allow you to view and edit your database tables from Eclipse as well as run various SQL statements against your database.
Connecting to a database is pretty straight-forward. I'll use MySQL for an example. In this article, I assume you're using MySQL 4.1 and that you have installed the appropriate driver.
Eclipse can handle your rhtml files with syntax highlighting! All you have to do is associate the .rhtml extention with the JSP editor. Once you do that, you can add templates for all of the ActionView helper functions to make development even easier.
Now, let's add the Rails Link_to tag to the templates library
Create a new .rhtml file and press CTRL+Spacebar
Your Link_to tag should be in that list. When you type the < character, your list of options should appear. Type link to filter the list of results.
When the template is first inserted, the cursor is placed at the url variable, if you hit tab, it will cycle to the next variable in the list.
You can repeat these steps with other helper tags to speed up development. To get you started, I've provided this starter template . Import this into the JSP Templates section via the Import button.
Ruby on Rails has some interesting techniques to debug projects. One technique is the Breakpointer script. The Breakpointer connects an IRB session to your running web application.
If you use Subversion (and you should if you're serious about Rails development) then you can install the SubClipse SubVersion client plugin.
Visit http://subclipse.tigris.org/install.html and follow their directions, or simply follow the same process as RDT and use their update site at http://subclipse.tigris.org/update
That about does it. I'll keep looking for other things to add to this procedure since this is the method I am now using for my development environment. If anyone has any feedback that I should add, please send it to ror_dev (at) napcs.com
Thanks to Tom Davies for his comments regarding project locations and his tips about the Rails templates.
Thanks to Chris Williams for the information about WEBrick's output.
Thanks to everyone on the RDT team for working so hard on a great plugin.