1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00

access ruby properties as javascript properties

This commit is contained in:
Charles Lowell 2010-01-18 15:35:34 +02:00
parent bd3acebdc5
commit 3dff206175

View file

@ -21,7 +21,9 @@ module Rhino
end
def getIds()
@ruby.public_methods(false).map {|m| m.gsub(/(.)_(.)/) {"#{$1}#{$2.upcase}"}}.to_java
puts "getIds()"
require 'java'
@ruby.public_methods(false).map {|m| m.gsub(/(.)_(.)/) {::JavaLang::String.new("#{$1}#{$2.upcase}")}}.tap {|ids| puts "ids: #{ids.inspect}"}.to_java
end
def to_s
@ -41,7 +43,11 @@ module Rhino
rb_name = name.gsub(/([a-z])([A-Z])/) {"#{$1}_#{$2.downcase}"}
if (robject.public_methods(false).include?(rb_name))
method = robject.method(rb_name)
RubyFunction.new(method)
if method.arity == 0
To.javascript(method.call)
else
RubyFunction.new(method)
end
else
super(name, start)
end