[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Recommendable ruby books?

Tom Rathbone

1/31/2005 10:54:00 AM

Hi All,

Thinking of buy some literature to accelerate my learning Ruby. What
would people recommend?

The two I am looking at presently are the frequently mentioned
Pragmatic Programmer's Guide (a.k.a the pickaxe book) and The Ruby Way
which Matz seems to appreciate judging from the Foreword.

Are both books up to date? Does anyone recommend any others? I'm
especially interested in Rails and any book that could give a greater
insight into the framework and the implementation and techniques would
be great.

Thanks,

Tom.


8 Answers

Robert Klemme

1/31/2005 11:01:00 AM

0


"Tom Rathbone" <tom.rathbone@gmail.com> schrieb im Newsbeitrag
news:777da17405013102544c4b741c@mail.gmail.com...
> Hi All,
>
> Thinking of buy some literature to accelerate my learning Ruby. What
> would people recommend?
>
> The two I am looking at presently are the frequently mentioned
> Pragmatic Programmer's Guide (a.k.a the pickaxe book) and The Ruby Way
> which Matz seems to appreciate judging from the Foreword.

I can definitely recommend the pickaxe 2nd edition (quite recent) for all
the basic stuff. It's also a good reference.

> Are both books up to date? Does anyone recommend any others? I'm
> especially interested in Rails and any book that could give a greater
> insight into the framework and the implementation and techniques would
> be great.

Kind regards

robert

Lyle Johnson

1/31/2005 1:25:00 PM

0

On Mon, 31 Jan 2005 19:54:23 +0900, Tom Rathbone <tom.rathbone@gmail.com> wrote:

> Are both books up to date? Does anyone recommend any others? I'm
> especially interested in Rails and any book that could give a greater
> insight into the framework and the implementation and techniques would
> be great.

It is rumored that Dave Thomas is working on a book on Rails. Maybe
he's even said that out loud, which would make it somewhat less of a
"rumor" and more of a "fact". A lot of us are anxiously awaiting that
book. ;)


Brian McCallister

1/31/2005 2:56:00 PM

0

/The Ruby Way/, Hal Fulton
Quite good in my opinion, captures the spirit of ruby very well

/Programming Ruby, 2nd Ed/ (Pickaxe 2), Dave Thomas & Andy Hunt
Most up to date and probably the best general reference available

-Brian


On Jan 31, 2005, at 5:54 AM, Tom Rathbone wrote:

> Hi All,
>
> Thinking of buy some literature to accelerate my learning Ruby. What
> would people recommend?
>
> The two I am looking at presently are the frequently mentioned
> Pragmatic Programmer's Guide (a.k.a the pickaxe book) and The Ruby Way
> which Matz seems to appreciate judging from the Foreword.
>
> Are both books up to date? Does anyone recommend any others? I'm
> especially interested in Rails and any book that could give a greater
> insight into the framework and the implementation and techniques would
> be great.
>
> Thanks,
>
> Tom.
>
>



Mike Woodhouse

1/31/2005 3:47:00 PM

0

Oh my, yes - the first Rails book will be a godsend! If Dave's not
writing it, someone else had better oughta be. If no-one at all is
writing it, I'll volunteer ("Learn Rails in 24 hours" anyone?) although
it won't be very good... ;)

ruby talk

1/31/2005 4:05:00 PM

0

On Tue, 1 Feb 2005 00:50:51 +0900, mikewoodhouse@gmail.com
<mikewoodhouse@gmail.com> wrote:
> Oh my, yes - the first Rails book will be a godsend!

What difficulties do you (or anyone, for that matter) have with Rails
that you think a book is needed?

Do people find it that complex?


James


Curt Hibbs

1/31/2005 4:16:00 PM

0

mikewoodhouse@gmail.com wrote:
>
> Oh my, yes - the first Rails book will be a godsend! If Dave's not
> writing it, someone else had better oughta be. If no-one at all is
> writing it, I'll volunteer ("Learn Rails in 24 hours" anyone?) although
> it won't be very good... ;)

Yes, Dave *is* working on an intro to rails book.

Curt


Thomas Kirchner

1/31/2005 4:33:00 PM

0

* On Feb 1 1:05, James G. Britt (ruby-talk@ruby-lang.org) thusly jotted:
> What difficulties do you (or anyone, for that matter) have with Rails
> that you think a book is needed?
>
> Do people find it that complex?

Personally, I think a book by Dave would be great for the Rails
community because of his way with pragmatism ;)

I think a lot of people have trouble starting out with Rails not because
of the implementation, but because that style of development is unfamiliar,
effective though it is. Dave does really well, imho, showing off a
technology's practical virtues at the same time as teaching it fluently.

Seeing something like Basecamp (and Ta-da lists by extension) is great for
Rails' popularity, and knowing how simple Ruby and Rails make such things
is astounding, but we still need to wrap developer's heads around the new
concepts, especially when their background involves implementing
everything manually.
Tom

Belorion

1/31/2005 4:35:00 PM

0

> What difficulties do you (or anyone, for that matter) have with Rails
> that you think a book is needed?
>
> Do people find it that complex?

IMHO, Getting a basic rails app up and running is not diffiicult...
just look at Curt's wonderful tutorial on Onlamp
(http://www.onlamp.com/pub/a/onlamp/2005/01/20/...). But there
seem to be a lot of nuiances and tricks that can be used that are not
immediately apparent to a new rails user.

A book could address a lot of issues, such as advanced configuration
(such as webrick vs. apache, mod_ruby vs fastcgi, etc.), debugging
(such as with using breakpoints), an in depth description of how Rails
handles sessions (so one can use it properly with the right amount of
security), proper deployment of rails (for example, what's the best
way to deploy multiple Rails apps on a single account?), unit testing
on a web framework... I would personally find a Rails book extremely
useful.