FXRubyをインストールしたら、以下のプログラムを書いて、ちゃんと動くか確認します。
■ファイル名 hello.rb
# -*- coding: utf-8 -*- require 'fox16' # アプリケーションクラスの生成 app = Fox::FXApp.new # メインウインドウの生成 mw = Fox::FXMainWindow.new(app, "Hello,FXRuby.", width: 300, height: 200) # サーバー側リソースの作成 app.create # メインウインドウの表示 mw.show(Fox::PLACEMENT_SCREEN) # アプリケーションの開始 app.run