I am creating a simple Blackjack game in Ruby, and I have finished all the game logic stuff (finally!) and currently have it running through the command line. It is all working, so now I need a library or gem that will make the whole graphics side of things easier. Any ideas? Thanks.

link|improve this question

80% accept rate
feedback

3 Answers

up vote 9 down vote accepted

Maybe you could try to use Gosu which is a 2D game development library for the Ruby and C++ programming languages, available for Mac OS X, Windows and Linux.

Available as a gem. More information here

You can also watch a fun presentation I saw in Barcelona during Euruko (ruby conference). Available Here

link|improve this answer
feedback

As well as Gosu, mentioned elsewhere, there's Rubygame which also appears to be regularly updated.

No opinion on either, suggested as an alternative for comparison.

UPDATE: New(-ish?) kid on the block: Ray. Fairly graphically-oriented, it would appear.

link|improve this answer
I have been using Rubygame for a while. It looks it is enough for a hobby project in 2D. I haven't try to do something bigger. – Michas Jul 4 '10 at 21:54
I've just checked out both Gosu and Rubygame; both are awesome but Rubygame looks to be on the backburner - it is not being updated. Gosu has a lot more recent activity and active forums. The Ruby tutorial for Gosu is great for a beginner. – dodgy_coder Apr 14 at 8:45
feedback

Shoes would be a good candidate, it's very lightweight, cross platform & fun to use.

It has a nice ruby API which you can use to draw shapes and use native GUI widgets.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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