vote up 3 vote down star
1

I'm about to start a project developing a Ruby desktop application. I expect to to be fairly big and I want to learn techniques for dividing code among modules and other techniques for managing complexity. Most large apps I've looked at are Rails apps, but these aren't very helpful, because most of the work is done by Rails itself.

What source code would you recommend I take a look at? I'm not interested in libraries or Rails apps, because I get how they do things. CLI apps are OK, but I'm mostly interested in GUI apps (I'm using Gtk+, but I can learn just as much from apps using other GUI toolkits).

flag

4 Answers

vote up 1 vote down

Maybe check out FxRuby (a ruby gui library wrapper) to see if that turns up any leads.

You could certainly apply the same organizational principles used for Rails apps and apply them to a desktop app. The Griffon framework (a java Swing framework) basically did that for Grails (essentially a java Rails clone).

link|flag
Yeah, the great thing about Rails is you really don't have to think to do it (I know that's an exaggeration). Just put your code where Rails expects and everything works out. Rails basically handles the complexity and modularity. Maybe I should develop a framework to wrap my app around... – Mark A. Nicolosi Jul 15 at 4:57
1  
Rails itself wasn't exactly developed as a framework — it was extracted from Basecamp. So I would say that if you design your app well, you will have the start of a good framework. – Chuck Jul 15 at 4:59
vote up 2 vote down

The FreeBASE plugin manager system is designed as a way to organize code in GUI applications, and it has worked well for me in my development of Redcar, a Ruby/Gtk text editor.

FreeBASE is nothing to do with the online open database project Freebase, it is something that the FreeRIDE Ruby IDE people developed to make it easier for them to structure a large GUI project.

So FreeBASE is part of FreeRIDE, but also works separately. You can find information about it here.

link|flag
I've actually been reading quite a bit of Redcar's source code for inspiration (pretty cool, but I'm a Vim guy). I'll checkout FreeBASE. Thanks Daniel and keep up the awesome work on Redcar, maybe one day I'll convert ;) – Mark A. Nicolosi Jul 15 at 17:42
vote up 0 vote down

Heard about JotBot earlier, haven't tried it yet, though.

MonkeyBars also comes to mind, when talking about MVC frameworks for desktop (J)Ruby.

link|flag
vote up 2 vote down

Check out LimeChat, which is a graphical irc client written in Ruby(Cocoa). Its source code is available on github.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.