Robert Crews

Results 8 comments of Robert Crews

Thanks you for reviewing the report. Here's the output of `nokogiri -v`: ``` bash $ nokogiri -v # Nokogiri (1.8.2) --- warnings: [] nokogiri: 1.8.2 ruby: version: 2.3.3 platform: java...

Thanks to @ar7max for pointing out my last example had a syntax error. Here is the version that actually shows the error: ``` ruby #!/usr/bin/env ruby -w require 'nokogiri' doc...

I know Java Nokogiri uses NekoHTML and Xerces. I'm currently working around this reported Nokogiri issue by interacting directly with those same Java libraries. I like and prefer the Nokogiri...

Thanks you for reviewing the report. Actually, this problem is not for MRI, not Jruby. Here's the output of `nokogiri -v`: ``` bash $ nokogiri -v # Nokogiri (1.8.2) ---...

Couple notes that might help: * Changing to `method="html"` did not help me. * Possibly the problem stems from the C "transform" function returning a value wrapped as an XML...

Following @rammpeter's suggestion, I [created a working Tomcat 9 app](https://github.com/rcrews/microservice_template) using Sinatra 3.0.5 and JRuby 9.4.0.0 with these two extra steps: Change the `gem 'warbler'` line in my `Gemfile` to...

Here's the backtrace, plus my editorializing: Roberts-MacBook-Pro 21:31 ~/Sandbox/navigation % bundle exec exe/aws_s3_upload.rb git:(main|+5^1 /Users/rcrews/.rvm/rubies/jruby-9.4.2.0/lib/ruby/stdlib/ostruct.rb:467: warning: OpenStruct#public_send accesses caller method's state and should not be aliased /Users/rcrews/.rvm/rubies/jruby-9.4.2.0/lib/ruby/stdlib/ostruct.rb:467: warning: OpenStruct#method accesses...

If you're wondering... ```Seahorse::Client::NetworkingError``` is not my code. "Seahorse" is the project name for the scriptable AWS S3 client, documented at [Seahorse::Client](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Seahorse/Client.html). For the purposes of this report, you can...