Contents 

Ruby on Rails:
Table of Contents
Preface
Zero to Sixty: Introducing Rails
1.1. Rails Strengths
1.2. Putting Rails into Action
1.3. Organization
1.4. The Web Server
1.5. Creating a Controller
1.6. Building a View
1.7. Tying the Controller to the View
1.8. Under the Hood
1.9. What's Next?
Active Record Basics
2.1. Active Record Basics
2.2. Introducing Photo Share
2.3. Schema Migrations
2.4. Basic Active Record Classes
2.5. Attributes
2.6. Complex Classes
2.7. Behavior
2.8. Moving Forward
Active Record Relationships
3.1. belongs_to
3.2. has_many
3.3. has_one
3.4. What You Haven't Seen
3.5. Looking Ahead
Scaffolding
4.1. Using the Scaffold Method
4.2. Replacing Scaffolding
4.3. Generating Scaffolding Code
4.4. Moving Forward
Extending Views
5.1. The Big Picture
5.2. Seeing Real Photos
5.3. View Templates
5.4. Setting the Default Root
5.5. Stylesheets
5.6. Hierarchical Categories
5.7. Styling the Slideshows
Ajax
6.1. How Rails Implements Ajax
6.2. Playing a Slideshow
6.3. Using Drag-and-Drop to Reorder Slides
6.4. Drag and Drop Everything (Almost Everything)
6.5. Filtering by Category
Testing
7.1. Background
7.2. Ruby's Test::Unit
7.3. Testing in Rails
7.4. Wrapping Up
Installing Rails
1.1. Windows
2.1. OS X
3.1. Linux
Quick Reference
5.1. General
5.2. Testing
5.3. RJS (Ruby JavaScript)
5.4. Active Record
5.5. Controllers
5.6. Views
5.7. Ajax
5.8. Configuring Your Application
About the Authors
Colophon
Index
A
B
C
D
E
F
G
H
I
J
L
M
N
O
P
R
S
T
U
V
W
X
Y
Z

Ruby on Rails manual

Prev Page Next Page
Previous Page
Next Page

2.1. OS X

The easiest way to get started on OS X is to use Locomotive ( "#rubyrails-app-a-fig-3">Figure A-3), which is very similar to Instant Rails on Windows, except that it uses the Lighttpd for the web server (instead of Apache) and SQLite for the database (instead of MySQL). For more details about Locomotive, go to its home page at http://locomotive.raaum.org.

Figure A-3. RadRails

  1. Download Locomotive from http://sourceforge.net/project/showfiles.php?group_id=146941 (you can also download the "Bundle" version that contains extra libraries, like Rmagick).

  2. Simply drag and drop the file you just downloaded to your Applications folder.

  3. This site uses MySQL for the development database, so we recommend that you install and use MySQL instead of the SQLite included in Locomotive. Download the latest MySQL packages from http://dev.mysql.com/downloads/ and run the installer.

  4. To start Locomotive, double-click Locomotive.app.

That's all there is to it!

2.1.1. TextMate and RadRails

The commercial text-editor-on-steroids TextMate ("#rubyrails-app-a-fig-4">Figure A-4) is very popular with Rails developers on OS X. Locomotive provides some minimal built-in support for TextMate. You can right-click a Rails app in Locomotive and choose to open its directory in TextMate.

Figure A-4. TextMate

TextMate is inexpensive, but not free. You can find out more about TextMate here: http://macromates.com.

If you want more than a pumped-up text editor, you'll be happy to know that the excellent RadRails IDE also runs on OS X. See the " "rubyrails-app-a-sect-1.html#rubyrails-app-a-sect-1.2">RadRails," earlier in this chapter.

Once installed, you can configure RadRails to work with your Locomotive installation by following the same steps shown in the Windows of this appendix.


Previous Page
Next Page