Son warnings emitidos internamente por Ruby, NO son lo mismo que los Deprecation Warnings de Rails.
Se pueden emitir warnings en cualquier momento usando el método `warn` del Kernel.
def warn(*msgs, uplevel: nil, category: nil)
Esto lo sacaron de Ruby 2.6 ...
O "deprecaciones"? según wikitionary está bien decir deprecado
Este warning es distinto al resto, porque nos dice dónde se modificó el string pero no cómo corregirlo
`RUBYOPT="-W:deprecated --debug=frozen-string-literal" ...`
/some/path/to/ruby/file.rb:123: warning: literal string will be frozen in the future (run with --debug-frozen-string-literal for more information) /another/ruby/file.rb:567: info: the string was created here
Gracias! preguntas?