i need a way to run following nokogiri script
#parser.rb
require nokogiri
def parseit()
//...
end
and call the parseit()
while running below main.rb in jruby
#main.rb
require parser
parseit()
Of course the problem is jruby cannot find nokogiri
as I have not installed it aka nokogiri-java via jruby -S gem install nokogiri
The reason is there is some bug I found in nokogiri running under Jruby, so I have only installed nokogiri on Ruby not Jruby. The parser.rb
runs perfectly under just Ruby.
So my objective is to be able to run parseit() without having to install nokogiri on Jruby!