egervari wrote:
> What is the best way to learn rails 3.0 with no prior rails or ruby
> experience? I'm just curious about it and want to get started.
> 

Get ruby 1.9.2/rails 3/gems installed - tons of tutorials out there for 
a basic setup.

Buy the Pickaxe book (is it still a pickaxe for Ruby 1.9.x)

mkdir rails
cd rails
rails new testapp
cd testapp
rails g scaffold person first_name:string last_name:string

now sit down and read through the generated code to see how rails WANTS 
to work.

You wouldn't use a generated app for a real production application, but 
as an educational tool, it's a great way to get started.

Heck, I still scaffold a basic proof of concept when users come to me 
for the "next great addition" to our system.  They even expect the 
initial forms to be ugly but workable...
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to