Sha256: 22a12f440a157135cedfb650efd91d3e93869bb27c1c74efd35c288aa596cd2e
Contents?: true
Size: 1.28 KB
Versions: 15
Compression:
Stored size: 1.28 KB
Contents
module Celerity Jars = Dir[File.dirname(__FILE__) + '/htmlunit/*.jar'] Jars.each { |jar| require(jar) } include_class org.apache.commons.httpclient.Cookie end module HtmlUnit include_package 'com.gargoylesoftware.htmlunit' module Html include_package 'com.gargoylesoftware.htmlunit.html' end module Util include_package 'com.gargoylesoftware.htmlunit.util' end end module Java::OrgW3cDom::NamedNodeMap include Enumerable def each 0.upto(getLength - 1) do |idx| yield item(idx) end end end module Java::JavaLang::Iterable include Enumerable def each it = iterator yield it.next while it.hasNext end end unless Java::JavaLang::Iterable < Enumerable # depends on JRuby version class Java::ComGargoylesoftwareHtmlunitHtml::HtmlPage def inspect '#<HtmlPage:0x%s(%s)>' % [self.hash.to_s(16), getWebResponse.getRequestUrl.toString] end end class Java::ComGargoylesoftwareHtmlunitHtml::HtmlElement def inspect '#<%s:0x%s>' % [self.class.name.split("::").last, self.hash.to_s(16)] end end class Java::ComGargoylesoftwareHtmlunitJavascriptHostHtml::HTMLElement def method_missing(meth, *args, &blk) m = ["jsxGet_#{meth}", "jsx_get_#{meth}"].find { |m| respond_to?(m) } if m __send__ m else super end end end
Version data entries
15 entries across 15 versions & 4 rubygems