I have wxruby gem installed. This is confirmed by gem list command.
But when I run the sample code below I get an error that states:
trout.rb:1:in require': no such file to load -- wxruby (Load Error) from trout.rb:1:in
’
What might be wrong?
–Alex
require ‘wxruby’
class TroutApp < App
def on_init
frame = Wx::Frame.new(nil, -1, ‘Tiny wxRuby Application’)
panel = Wx::StaticText.new(frame, -1, ‘You are a trout!’,
Point.new(-1, 1), DEFAULT_SIZE,
ALIGN_CENTER)
frame.show
end
end
TroutApp.new.main_loop