I've done a little work in ruby and I was looking into rails and found this starter guide from Apple: http://developer.apple.com/tools/developonrailsleopard.html
Everything worked for me so far, but In the section "Jump-Starting the Application" it has you create event scaffolding by doing
script/generate scaffold event name:string budget:decimal
But it complains that I don't have the RubyGems, but I ran all the updates, and it tells me my current version is 1.1.1? Anyone possibly know how to fix this? Thanks
thrasher:expenses thrasher$ script/generate scaffold event name:string budget:decimal
Rails requires RubyGems >= 0.9.4. Please install RubyGems and try again: http://rubygems.rubyforge.org
thrasher:expenses thrasher$ gem --version
1.1.1
thrasher:expenses thrasher$
Everything worked for me so far, but In the section "Jump-Starting the Application" it has you create event scaffolding by doing
script/generate scaffold event name:string budget:decimal
But it complains that I don't have the RubyGems, but I ran all the updates, and it tells me my current version is 1.1.1? Anyone possibly know how to fix this? Thanks
thrasher:expenses thrasher$ script/generate scaffold event name:string budget:decimal
Rails requires RubyGems >= 0.9.4. Please install RubyGems and try again: http://rubygems.rubyforge.org
thrasher:expenses thrasher$ gem --version
1.1.1
thrasher:expenses thrasher$