Truely nubie - Just installed Rails 3.1.0. What next?

5 views
Skip to first unread message

Ruby Student

unread,
Oct 5, 2011, 10:35:41 AM10/5/11
to rubyonra...@googlegroups.com
Hello team,

I just installed Rails 3.1.0 on my LINUX (Red Hat) box.
I also installed Apache2 and IBM DB2 9.7.

I searched the web for a beginner's tutorials for Rails. Found a few, although some conflicting.
One tutorial said that I could run: rails demo. I tried but it did not work.

Another tutorial calls for running: rails new /opt/rails_3.1.0/Code/Ruby/weblog ......, which I did. But then what???

Bottom line, I would love to find a good tutorial that has been tested so I can start playing with rails.
BTW, I also purchased couple rails book over two years ago. One I recall is Rails Recipes. But I prefer soft copy materials.

Any help will be greatly appreciated.

Thank you
--
Ruby Student

Colin Law

unread,
Oct 5, 2011, 10:41:30 AM10/5/11
to rubyonra...@googlegroups.com
On 5 October 2011 15:35, Ruby Student <ruby.s...@gmail.com> wrote:
> Hello team,
>
> I just installed Rails 3.1.0 on my LINUX (Red Hat) box.
> I also installed Apache2 and IBM DB2 9.7.
>
> I searched the web for a beginner's tutorials for Rails. Found a few,
> although some conflicting.
> One tutorial said that I could run: rails demo. I tried but it did not work.
>
> Another tutorial calls for running: rails new
> /opt/rails_3.1.0/Code/Ruby/weblog ......, which I did. But then what???
>
> Bottom line, I would love to find a good tutorial that has been tested so I
> can start playing with rails.

Have a look at railstutorial.org, I think that has some rails 3.1
stuff. It is necessary to make sure that the tutorial is for the
correct version of rails (first two digits anyway, 3.0, 3.1 etc.) or
you will get confused. 3.1 is very new so there is probably not much
about yet.

Colin

BeeRich

unread,
Oct 5, 2011, 10:42:08 AM10/5/11
to rubyonra...@googlegroups.com
Be careful of any learning materials. Rails 3.1 with updated versions of Ruby have new syntax. I'd get something recent to save you the hassle.

Robert Walker

unread,
Oct 5, 2011, 11:04:37 AM10/5/11
to rubyonra...@googlegroups.com
Ruby Student wrote in post #1025143:

> Hello team,
>
> I just installed Rails 3.1.0 on my LINUX (Red Hat) box.
> I also installed Apache2 and IBM DB2 9.7.

While DB2 might be fine for production. I would recommend learning Rails
using its default SQLite 3 database. Doing so will make working with
Rails easier, since you'll likely do a lot less fighting with trying to
get your database configured.

> I searched the web for a beginner's tutorials for Rails. Found a few,
> although some conflicting.

> One tutorial said that I could run: *rails demo*. I tried but it did not


> work.
>
> Another tutorial calls for running: rails new
> /opt/rails_3.1.0/Code/Ruby/weblog ......, which I did. But then what???

There was a time when Rails used a set of script kept under ./script.
Most of these old scripts have been rolled into the rails command. So
using "rails new" you're asking rails to create a new application, as
opposed to say starting the server "rails server" or optionally "rails
s". You can also do other things like start rails instance and enter the
console "rails console" or "rails c".

You also use the rails command to generate various parts of a rails
application:

rails g[enerate] model User
rails g[enerate] controller users
rails g[enerate] scaffold Post first_name:string last_name:string
email:string

> Bottom line, I would love to find a good tutorial that has been tested
> so I
> can start playing with rails.
> BTW, I also purchased couple rails book over two years ago. One I recall
> is

> *Rails Recipes*. But I prefer soft copy materials.

"Rails Recipes" is a fairly old book. Unless it's been updated to work
well with the latests version of Rails a lot of things in there might
not work as shown, or may be out-of-date. It's also a book intended for
programmers familiar with Rails rather than a book to teach Rails.

Pragmatic Programmers is one good source for books on Ruby and Rails:

http://pragprog.com

But, before you go anywhere else looking for how to get started with
Rails, begin your reading here:

http://guides.rubyonrails.org/

The API reference for Rails, which you'll need to get more details about
specific parts of Rails, go here:

http://api.rubyonrails.org/

Between these two resources there is enough information for reasonably
experience programmers to find just about anything they need to know.
But, if you're looking for something that will walk your through
building a real world application with Rails I would highly recommend
the following book:

http://pragprog.com/book/rails4/agile-web-development-with-rails

You might also want to take a look at other books related to Ruby on
Rails:

http://pragprog.com/categories/ruby_and_rails

You might also find this book useful in you haven't found it already:

http://ruby.railstutorial.org/ruby-on-rails-tutorial-book

--
Posted via http://www.ruby-forum.com/.

Ruby Student

unread,
Oct 5, 2011, 12:13:59 PM10/5/11
to rubyonra...@googlegroups.com
Robert, this is great information.
I truly appreciate your time writing these recommendations and the recommendations given by others.

Thanks a bunch!


--
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 rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.




--
Ruby Student

Paulo Paz

unread,
Oct 5, 2011, 10:51:34 AM10/5/11
to rubyonra...@googlegroups.com
Be careful of any learning materials.  Rails 3.1 with updated versions of Ruby have new syntax.  I'd get something recent to save you the hassle.

True.

See that:

@rails_apps Daniel Kehoe 
Top Recommended Resources for Rails http://j.mp/imROnG 

Good luck.

2011/10/5 BeeRich <bee...@gmail.com>

iGbanam

unread,
Oct 5, 2011, 10:59:52 AM10/5/11
to rubyonra...@googlegroups.com
OP,

Best place to start IMHO would be the guides.rubyonrails.org. There is a page for getting started; on there you can Create a blogging application from ground up.

When you feel comfortable enough with Rails, you should read up on the other topics on the guides or visit api.rubyonrails.org for more technical insight.

Regards,
iGnition.

Sent from an Asteroid in Space™

Ruby Student

unread,
Oct 5, 2011, 11:01:37 AM10/5/11
to rubyonra...@googlegroups.com
I'm running ruby -v
ruby 1.9.2p180 (2011-02-18 revision 30909) [x86_64-linux].

I appreciate the info giving me here so far.
I am trying to avoid stuff too old to be relevant to Rails V3.1.
I'll start with the link provided by Colin.

Thank you all.


--
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 rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.




--
Ruby Student
Reply all
Reply to author
Forward
0 new messages