views:

222

answers:

2

Hello,

I've just worked through the Rail example supplied by Apple: http://developer.apple.com/Tools/developonrailsleopard.html

Now that I'm done, I'd like to clean this up and remove the web service, database etc. Obviously I still want the RoR stack in place.

How? Can I do this using rake?

+4  A: 

Just delete it; the whole folder that was created by the rails command you started with, in this case the expenses folder. It's all self-contained.

The rails command creates a copy of the framework, so it'll still be installed.

Jarrod
A: 

Thanks for the link. I was looking for that for a while.

alby1481