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 `<main>'
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
on 2010-03-05 04:16
on 2010-03-05 11:46
Tony Meier wrote:
> try require 'wx'.
That worked! But now I get a window that pops up saying "The program
can't start because msvcrt-ruby18.dll is missing from your computer!"
I'm using Ruby 1.9, so why is it looking for a Ruby 1.8 file?
Does wxruby work with Ruby 1.9? Did I install the wrong gem?
-- Alex
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.