Felipe Mesquita’s posts about software development

A collection of posts about software development. 
Filed under

rugui

 

Getting started with RuGUI on Ubuntu 9.04

A fast post about how to install RuGUI on Ubuntu 9.04.

  • Installing Ruby and libs.

sudo apt-get install ruby irb ri rdoc ruby1.8-dev libzlib-ruby libyaml-ruby libreadline-ruby libncurses-ruby libcurses-ruby libruby libruby-extras libfcgi-ruby1.8 build-essential libopenssl-ruby libdbm-ruby libdbi-ruby libdbd-sqlite3-ruby libsqlite3-dev libsqlite3-ruby libxml-ruby libxml2-dev

  • Installing RubyGem.

Download RubyGem, extract it to a directory and execute:

sudo ruby setup.rb

  • Installing Ruby/GTK.

sudo apt-get install libgtk2.0-dev ruby-gnome2

  • Installing RuGUI and RSpec.

sudo gem install rugui rspec

  • Creating your first RuGUI project.

rugui my-first-project

  • Starting the project

cd my-first-project
rake run

Filed under  //   gtk   ruby   rugui  

Comments [0]