The Artima Developer Community
Sponsored Link

Weblogs Forum
Ruby Makes My Head Explode

11 replies on 1 page. Most recent reply: Nov 23, 2008 10:00 PM by Narasimha Raju Naidu

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 11 replies on 1 page
Eric Armstrong

Posts: 207
Nickname: cooltools
Registered: Apr, 2003

Ruby Makes My Head Explode (View in Weblogs)
Posted: Jun 3, 2006 5:55 AM
Reply to this message Reply
Summary
My head was stuffed with things Ruby, and it exploded... All over the web. Bits everywhere. I just couldn't stop writing until I got it all out of my system.
Advertisement
Here are the results of my writing spree:


Alexander Dymo

Posts: 2
Nickname: dymo
Registered: Apr, 2006

Re: Ruby Makes My Head Explode Posted: Jun 4, 2006 5:50 AM
Reply to this message Reply
I'm sorry if you already know that, but let me point you at other Ruby GUI development options out there. It's QtRuby - the excellent package of Ruby bindings for Qt library. There are bindings to Qt3 and Qt4 versions as well.

Bindings information:
http://developer.kde.org/language-bindings/ruby/index.html
http://rubyforge.org/projects/korundum/

There's also a Rapid GUI Development with QtRuby book from pragmatic programmers about them:
http://www.pragmaticprogrammer.com/titles/ctrubyqt

There's more to add here. KDevelop IDE versions 3.3 and 3.4 (http://www.kdevelop.org) support Ruby/Rails development and have integrated Ruby debugger and integrated GUI designer (for Qt) on board.
See, for example integrated GUI design tutorial at:
http://www.kdevelop.org/doc/technotes/rubyrad.html
http://www.kdevelop.org/doc/technotes/rubyrad1.png
http://www.kdevelop.org/doc/technotes/rubyrad2.png
Debugger announcement and screenshots:
http://www.kdedevelopers.org/node/788

James Britt

Posts: 21
Nickname: jbritt
Registered: Mar, 2003

Re: Ruby Makes My Head Explode Posted: Jun 5, 2006 6:46 PM
Reply to this message Reply
I'm still surprised when people assemble Ruby resources and fail to list ruby-doc.org: http://ruby-doc.org/

Books: http://ruby-doc.org/bookstore

Getting Started: http://ruby-doc.org/gettingstarted

Gettng dressed: http://www.rubystuff.com/

Eric Armstrong

Posts: 207
Nickname: cooltools
Registered: Apr, 2003

Re: Ruby Makes My Head Explode Posted: Jun 6, 2006 1:19 PM
Reply to this message Reply
> I'm sorry if you already know that, but let me point you
> at other Ruby GUI development options out there. It's
> QtRuby - the excellent package of Ruby bindings for Qt
> library.
>
I've heard of it on the list, and thought about mentioning it. It's terrific to have such a coherent set of document pointers in one place. Thanks for mentioning it. I'll copy your post into the original page, and credit you with it.

Eric Armstrong

Posts: 207
Nickname: cooltools
Registered: Apr, 2003

Re: Ruby Makes My Head Explode Posted: Jun 6, 2006 1:29 PM
Reply to this message Reply
> I'm still surprised when people assemble Ruby resources
> and fail to list ruby-doc.org: http://ruby-doc.org/
>
You know, I'm not all that surprised. At last count, the "Ruby documentation sites" were going on 20. Frankly, it has been hard to figure out where to find information. So instead of going to any specific site, I tend to a search and see what pops up. If I don't see anything on the first page, I start visiting the bookmarks I've collected. But I've seen one page that had a much longer list.

I can't seem to find that one, but Jim Weirich has a smaller resource page at http://onestepback.org/articles/usingruby/resources.html that lists Ruby Language, Ruby Talk, Ruby Application Archive, Ruby Garden, Ruby Wiki, Ruby Central, and Ruby Forge. Is there some reason that ruby-doc should be given a higher billing?

Elizabeth Wiethoff

Posts: 89
Nickname: ewiethoff
Registered: Mar, 2005

Re: Ruby Makes My Head Explode Posted: Jun 9, 2006 1:36 AM
Reply to this message Reply
> Is there some reason that ruby-doc should be given
> a higher billing?

I go to ruby-doc for its documentation on Ruby's built-in classes and standard library. That's all it's good for in my mind. The ruby-doc site doesn't document the language syntax, for example, or list the exception hierarchy. (Go to Zen Spider's Ruby QuickRef for those.)

So, yeah, Ruby "documentation" is scattered all over the place. Despite the fact that Ruby is pretty easy, I find it a lot more frustrating to learn than, say, Python, whose documentation is all in one spot.

Your best bet overall is probably the Pickaxe. Read the first edition online for free, then think of investing in the second edition.

Eric Armstrong

Posts: 207
Nickname: cooltools
Registered: Apr, 2003

Re: Ruby Makes My Head Explode Posted: Jun 9, 2006 4:47 PM
Reply to this message Reply
> I go to ruby-doc for its documentation on Ruby's built-in
> classes and standard library. That's all it's good for in
> my mind.
>
Yup. I just found this Wikipedia page as well. It has a terrific collection of code snippets, and an extensive list of documentation locations at the end. (I plan to add a resources section at the end of the article. I'll include this in it.)
http://en.wikipedia.org/wiki/Ruby_programming_language

James Britt

Posts: 21
Nickname: jbritt
Registered: Mar, 2003

Re: Ruby Makes My Head Explode Posted: Jun 11, 2006 12:31 PM
Reply to this message Reply
> I go to ruby-doc for its documentation on Ruby's
> built-in classes and standard library.
> That's all it's good for in my mind.

Ruby syntax
http://ruby-doc.org/docs/ProgrammingRuby/

Getting Started:
http://ruby-doc.org/gettingstarted
http://ruby-doc.org/docs/UsersGuide/rg/

If there's something missing, please feel free to submit content: suggestions@ruby-doc.org

James Britt

Posts: 21
Nickname: jbritt
Registered: Mar, 2003

Re: Ruby Makes My Head Explode Posted: Jun 11, 2006 12:39 PM
Reply to this message Reply
> I can't seem to find that one, but Jim Weirich
> has a smaller resource page at
> http://onestepback.org/articles/usingruby/resources.html
> that lists Ruby Language, Ruby Talk, Ruby Application
> Archive, Ruby Garden, Ruby Wiki, Ruby Central, and
> Ruby Forge. Is there some reason that ruby-doc should
> be given a higher billing?


Because Ruby Talk, Ruby Application Archive, Ruby Garden, Ruby Wiki, Ruby Central, and Ruby Forge are not primarily (or even) documentation sites. Ruby Garden and its wiki have very helpful (though focused) content, but the other sites are deveoted to mailing lists or application source repos or the non-profit corp. for Ruby events.

That said, ruby-doc.org is open for suggestions: suggestions@ruby-doc.org

It is not so much that there needs to be one place that stores everything, but ideally people should be able to start from one URL that leads them to other resources.

Eric Armstrong

Posts: 207
Nickname: cooltools
Registered: Apr, 2003

Re: Ruby Makes My Head Explode Posted: Jun 11, 2006 5:51 PM
Reply to this message Reply
> It is not so much that there needs to be one place that
> stores everything, but ideally people should be able to
> start from one URL that leads them to other resources.
>
Frankly, I would like for there to be one place that stores everything. Java has the advantage that it is backed by a major hardware vendor, so it is possible to go to one location and find pretty nearly everything, in one form or another.

Coming to the Ruby world has been like stepping back 20 years or so, when it comes to finding explanations. Even with all those sites, there are things that just don't seem to be explained anywhere.

That's not a complaint, mind you. Rather, it's an expression of an "opportunity".
:_)

luke avery

Posts: 1
Nickname: luke101
Registered: May, 2007

Re: Ruby Makes My Head Explode Posted: May 20, 2007 7:04 PM
Reply to this message Reply
I have created a beginner [URL="http://www.meshplex.org/wiki/Ruby/Ruby_on_Rails_programming_tutorials"]Ru by Tutorial[/URL] specifically for new programmers.

Narasimha Raju Naidu

Posts: 1
Nickname: dummystori
Registered: Nov, 2008

Re: Ruby Makes My Head Explode Posted: Nov 23, 2008 10:00 PM
Reply to this message Reply
Hi any one know how to connect database using RubyQt. I am waiting for all you peoples replies.

Regards,

Narasimha Raju.Naidu

Flat View: This topic has 11 replies on 1 page
Topic: Video Interview on InfoWorld Previous Topic   Next Topic Topic: Frequently Forgotten Fundamental Facts about Software Engineering

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use