DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   Ruby (http://www.daniweb.com/forums/forum73.html)
-   -   Problems running Jruby with Glimmer (http://www.daniweb.com/forums/thread185425.html)

fraogongi Apr 6th, 2009 11:37 am
Problems running Jruby with Glimmer
 
Hi y'all,

I've run into problems while running my program in eclipse. Its a Jruby application that uses Glimmer to create GUI components. I've followed the instructions as in http://www.indijava.in/community/art...ser-Interfaces within eclipse, yet I can't seem to get it work. Am trying to run a simple example as the one below:

#require "java"
require "C:/org.eclipse.glimmer.core/src/swt.rb"

class HelloWorld
  include_package 'org.eclipse.swt'
  include_package 'org.eclipse.swt.layout'
 
  include Glimmer

  def launch
    @shell = shell {
      text "SWT"
      composite {
        label {
          text "Hello World!"
        }
      }
    }
    @shell.open
  end
end

HelloWorld.new.launch

Yet, I keep gettint the error below:

C:/Program Files/jruby-1.1.5/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:38:in `require': no such file to load -- facets (LoadError)
        from C:/org.eclipse.glimmer.core/src/glimmer.rb:17
        from C:/org.eclipse.glimmer.core/src/glimmer.rb:16:in `require'
        from C:/org.eclipse.glimmer.core/src/swt.rb:16
        from C:/org.eclipse.glimmer.core/src/swt.rb:5:in `require'
        from hello_world.rb:5

Any suggestions??? :-(

reflexer Nov 18th, 2009 5:15 pm
I think you need to install facets gem.
Run
 jruby -S gem install facets


All times are GMT -4. The time now is 7:46 pm.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC