Sha256: 93de1f054652a104beec8baf0adb2bb816b721bac8bc3eff429c714a99f15961
Contents?: true
Size: 499 Bytes
Versions: 20
Compression:
Stored size: 499 Bytes
Contents
#!/usr/bin/env ruby begin require 'wx' rescue LoadError => no_wx_err begin require 'rubygems' require 'wx' rescue LoadError raise no_wx_err end end class ColoredPanel < Wx::Window def initialize(parent, color) super(parent, -1, Wx::DEFAULT_POSITION, Wx::DEFAULT_SIZE, Wx::SIMPLE_BORDER) set_background_colour(color) end end if __FILE__ == $0 run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb') load run_solo_lib run File.basename($0) end
Version data entries
20 entries across 20 versions & 1 rubygems