jruby-maven-plugins icon indicating copy to clipboard operation
jruby-maven-plugins copied to clipboard

Chunck PNG - NoMethodError: undefined method `b' for "\x00":String

Open pauloodd opened this issue 5 years ago • 1 comments

Getting 'NoMethodError: undefined method `b' for "\x00":String' on chunky_png.rb:146 file. After chunky_png updated to 1.3.13.

https://rubygems.org/gems/chunky_png/versions/1.3.13

pauloodd avatar Oct 26 '20 20:10 pauloodd

Updates:

Chunk PNG was part of one of our sub dependencies. I had to downgrade the plugin and force maven to not upgrade Chunck PNG to 1.3.13v.

My pom.xml in JAVA

<dependency>
   <groupId>rubygems</groupId>
   <artifactId>chunky_png</artifactId>
   <version>1.3.12</version>
   <type>gem</type>
   <scope>provided</scope>
</dependency>

Since the plugin was in an old system, that worked for us.

pauloodd avatar Aug 13 '21 14:08 pauloodd