You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
param_filename=File.basename(filename)encoding=param_filename.encodingneeds_encoding=param_filename.gsub!(/[^ 0-9a-zA-Z!\#$&\+\.\^_`\|~]+/,'-')# FrozenError raised here
The text was updated successfully, but these errors were encountered:
A few of Roda's tests are failing on TruffleRuby because
File.basename
is returning a frozen string, while CRuby and JRuby return a new unfrozen string: https://github.com/jeremyevans/roda/runs/2492967121?check_suite_focus=true#step:4:17Code in question:
The text was updated successfully, but these errors were encountered: