What's the best/easiest GUI Library for Ruby? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T14:49:00Zhttp://stackoverflow.com/feeds/question/260905http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby13What's the best/easiest GUI Library for Ruby?Chris Pietschmann2008-11-04T04:43:12Z2009-03-18T00:14:56Z
<p>Whats the best/easiest GUI library out there for Ruby?</p>
<p>I would prefer a cross-platform GUI library, but currently I'm only concerned about Windows (Win32). I am having difficulting finding any that seem to be easy to use. Are there any?</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/260912#26091218Answer by Jacob Carpenter for What's the best/easiest GUI Library for Ruby?Jacob Carpenter2008-11-04T04:47:19Z2008-11-04T04:54:29Z<p>Ruby <a href="http://shoooes.net/" rel="nofollow">Shoes</a> (by why) is intended to be a <em>really</em> simple GUI framework. I don't know how fully featured it is, though.</p>
<p>Some good code samples can be found at <a href="http://shoooes.net/tutorial/" rel="nofollow">the tutorial</a>.</p>
<p>Also, I think shoes powers <a href="http://hacketyhack.net/" rel="nofollow">hackety hack</a>, a compelling programing learning environment for youngsters.</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/260913#2609131Answer by Josh Moore for What's the best/easiest GUI Library for Ruby?Josh Moore2008-11-04T04:48:05Z2008-11-04T04:48:05Z<p>Try shoes <a href="http://www.shoooes.net/" rel="nofollow">http://www.shoooes.net/</a>. Unfortunately, I have not had a chance to work with it yet, but I have an upcoming project were I plan to use it. It is cross platform compatible. Also the API looks like very Rubish so I would give it a try</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/260927#2609275Answer by THE Joe Zack for What's the best/easiest GUI Library for Ruby?THE Joe Zack2008-11-04T04:53:02Z2008-11-04T04:53:02Z<p>I started with <a href="http://www.fxruby.org/" rel="nofollow">FXRuby</a> because it had a <a href="http://rads.stackoverflow.com/amzn/click/1934356077" rel="nofollow">book</a>.</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/261319#2613190Answer by Mike Woodhouse for What's the best/easiest GUI Library for Ruby?Mike Woodhouse2008-11-04T09:24:51Z2008-11-04T09:24:51Z<p>There's a discussion <a href="http://www.phwinfo.com/forum/comp-lang-ruby/214147-tk-ruby-fx-ruby-wx-ruby.html" rel="nofollow">here</a> that might be useful.</p>
<p>From my own (limited) exposure, I'd say that shoes was the most fun and probably the "easiest" to get into. Be warned, however, that figuring out what was wrong when something breaks can be tricky (at least, it was for me).</p>
<p>For a real-world application that I was planning to deploy to real-world users, I think I'd go with <a href="http://wxruby.rubyforge.org/wiki/wiki.pl" rel="nofollow">wxruby</a>.</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/261513#2615133Answer by tompaschenda for What's the best/easiest GUI Library for Ruby?tompaschenda2008-11-04T10:53:42Z2008-11-04T10:53:42Z<p>I recently started using <a href="http://trolltech.com/" rel="nofollow">Qt</a> as a GUI framework for a Ruby application. There is a binding called <a href="http://techbase.kde.org/Development/Languages/Ruby" rel="nofollow">QtRuby</a>.
For a quickstart tutorial (covers only windows) see <a href="http://tom.paschenda.org/blog/?p=38" rel="nofollow">this</a> post </p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/262189#2621891Answer by pmlarocque for What's the best/easiest GUI Library for Ruby?pmlarocque2008-11-04T15:30:48Z2008-11-04T15:30:48Z<p><a href="http://limelight.8thlight.com/main/sparkle" rel="nofollow">Limelight</a> I really enjoy the theator metaphor.</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/262765#2627652Answer by Dema for What's the best/easiest GUI Library for Ruby?Dema2008-11-04T18:06:47Z2008-11-04T18:06:47Z<p>If you're looking for a cross-platform GUI, then I'd highly recommend going with JRuby and Swing.</p>
<p>Also, take a look at the <a href="http://monkeybars.rubyforge.org/" rel="nofollow">monkeybars</a> library, which is a Ruby library for building MVC applications using JRuby and Swing, where you can also use the excellent Netbeans IDE to visually build your GUI. </p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/263085#2630850Answer by Federico Builes for What's the best/easiest GUI Library for Ruby?Federico Builes2008-11-04T19:31:28Z2008-11-04T19:31:28Z<p>There are Ruby bindings for QT and GTK so you can't go wrong with those ones (they're portable too).</p>
<p>The Pragmatic Programmers published a mini book on Ruby with QT and a full book on FXRuby, so I think the latter's another good choice.</p>
<p>Shoes, although easy to learn and cute, is pretty situational and doesn't provide as many options for controls as any of the other ones do, so if you want to build anything beyond a simple UI (not to hate Shoes but it's not mature enough yet), I'd recommend you to use one of the more mature and tested toolkits.</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/263581#2635813Answer by paulbonner for What's the best/easiest GUI Library for Ruby?paulbonner2008-11-04T21:47:11Z2008-11-04T21:47:11Z<p><a href="http://rubyforge.org/projects/glimmer/" rel="nofollow">Glimmer</a> is an interesting option for JRuby users which provides a very Ruby-ish interface to the SWT toolkit. (SWT is the user interface framework behind Eclipse, which delivers fast performance and familiar UI metaphors by making use of native widgets on the various platforms it supports: Windows, OS X, Linux, etc.) SWT always appealed to me as a Java developer, but coding it was painful in the extreme. Glimmer makes the process a lot more straightforward by emphasizing convention over configuration, and by valuing DRYness and all the other normal Ruby goodness.</p>
<p>Another neat option is <a href="http://www.sproutcore.com/" rel="nofollow">SproutCore</a>, a Javascript-based GUI toolkit with Ruby bindings developed by Apple. At least, the demos for it look great, and otherinbox built a pretty slick looking <a href="http://joshuabaer.blogs.com/photos/uncategorized/2008/09/09/ebay_2.png" rel="nofollow">application</a> on top of it. Personally, I've spent quite a few hours trying to get it running on two systems -- one Windows and one Linux -- and haven't succeeded on either one -- I keep running into dependency issues with Merb or other pieces of the SproutCore stack. But it's intriguing enough that I'll go back after a few weeks and try again, hoping that the issues get resolved in that time.</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/266075#2660750Answer by Bryan Oakley for What's the best/easiest GUI Library for Ruby?Bryan Oakley2008-11-05T18:06:23Z2008-11-05T18:06:23Z<p>Tk is available for Ruby. Some nice examples (in Ruby, Perl and Tcl) can be found at <a href="http://www.tkdocs.com/" rel="nofollow">http://www.tkdocs.com/</a></p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/271474#2714742Answer by Charles Roper for What's the best/easiest GUI Library for Ruby?Charles Roper2008-11-07T07:51:17Z2008-11-07T07:51:17Z<p><a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a> is worth checking out. It is well supported on Ruby via <a href="http://wxruby.rubyforge.org/wiki/wiki.pl?WxRuby" rel="nofollow">wxRuby</a>. For an example app, have a look at <a href="http://wxride.ruby-im.net/" rel="nofollow">wxRIDE</a>. See it <a href="http://wiki.wxwidgets.org/WxWidgets_Compared_To_Other_Toolkits" rel="nofollow">compared to other toolkits</a>. You might also want to check out <a href="http://anvil.rubyforge.org/" rel="nofollow">Anvil</a>, which is a sort of Rails-ish framework for working with wx. It looks moribund now, though.</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/278094#2780942Answer by joxer for What's the best/easiest GUI Library for Ruby?joxer2008-11-10T15:10:51Z2008-11-10T15:10:51Z<p>Wxruby is a great framework, simple and clean. Try it or use glade with ruby (the simpliest option)</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/283625#2836250Answer by bjnortier for What's the best/easiest GUI Library for Ruby?bjnortier2008-11-12T11:08:09Z2008-11-12T11:08:09Z<p>I've had some very good experience with Qt, so I would definitely recommend it. </p>
<p>You should be ware of the licensing model though. If you're developing an open source application, you can use the open-source licensed version free of charge. If you're developing a commercial application, you'll have to pay license fees. And you can't develop in the open source one and then switch the license to commercial before you start selling.</p>
<p>P.S. I just had a quick look at shoes. I really like the declarative definitions of the UI elements, so that's definitely worth investigating...</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/293892#2938920Answer by Takaaki Kato for What's the best/easiest GUI Library for Ruby?Takaaki Kato2008-11-16T13:57:26Z2008-11-16T13:57:26Z<p>If you are interested, <a href="http://www.rubylearning.org/class/" rel="nofollow">RubyLearning</a> offers a course on FXRuby and Shoes. Actually, the Shoes course is being conducted currently.</p>
<p>Probably the easiest is Shoes. As an assistant teacher at RubyLearning, I hope that we will have better courses for learners.</p>
<p>Some people got stuck in installing FXRuby. But Shoes has an installer for any platforms (Windows, Mac and Linux).</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/328533#3285330Answer by khebbie for What's the best/easiest GUI Library for Ruby?khebbie2008-11-30T06:35:07Z2008-11-30T06:35:07Z<p>Using the <a href="http://ironruby.net/" rel="nofollow">ironRuby</a> interperter you have the full .net platform, meaning you can code Winforms and WPF(I have only tried Winforms).
It is potentially cross platform since the mono platform exist</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/656514#6565140Answer by rogerdpack for What's the best/easiest GUI Library for Ruby?rogerdpack2009-03-18T00:14:56Z2009-03-18T00:14:56Z<p><a href="http://ihate.rubyforge.org/profligacy/" rel="nofollow">http://ihate.rubyforge.org/profligacy/</a> is a jruby swing wrapper that might be nice.</p>