• J
    `String#strip_heredoc` preserves frozenness · 8454aeeb
    Jeremy Daer 提交于
    ```ruby
    "foo".freeze.strip_heredoc.frozen?  # => true
    ```
    
    Fixes the case where frozen string literals would inadvertently become
    unfrozen:
    
    ```ruby
    
    foo = <<-MSG.strip_heredoc
      la la la
    MSG
    
    foo.frozen?  # => false !??
    ```
    8454aeeb
可在Tags中查看这些版本中当前仓库的状态.
CHANGELOG.md 716 字节