WinRb / WinRM

Ruby library for Windows Remote Management
Apache License 2.0
412 stars 117 forks source link

Fix snakecase `NoMethodError` #347

Closed ripa1995 closed 1 month ago

ripa1995 commented 1 month ago

This PR fixes #346.

I've added also a constraint on nori minimum version, if this is unwanted, then we could check its version at runtime and behave accordingly.

Checking Gem.loaded_specs['nori'].version < Gem::Version.create('2.7.1'), and if the statement is true, use directly snakecase fn.

pcai commented 1 month ago

thank you