class ExecJS::RubyRhinoRuntime

Public Instance Methods

available?() click to toggle source
# File lib/execjs/ruby_rhino_runtime.rb, line 90
def available?
  require "rhino"
  true
rescue LoadError
  false
end
name() click to toggle source
# File lib/execjs/ruby_rhino_runtime.rb, line 86
def name
  "therubyrhino (Rhino)"
end