1. 25 Apr, 2019 1 commit
    • KOBAYASHI Shuji's avatar
      Singleton class of frozen object should be frozen · 8fa3995a
      KOBAYASHI Shuji authored
      Before this patch:
      
        p (class << Object.new.freeze; self end).frozen?                #=> false
        sc = class << (o=Object.new); self end; o.freeze; p sc.frozen?  #=> false
      
      After this patch / Ruby:
      
        p (class << Object.new.freeze; self end).frozen?                #=> true
        sc = class << (o=Object.new); self end; o.freeze; p sc.frozen?  #=> true
      8fa3995a
  2. 24 Apr, 2019 4 commits
  3. 23 Apr, 2019 3 commits
  4. 22 Apr, 2019 6 commits
  5. 21 Apr, 2019 3 commits
  6. 20 Apr, 2019 1 commit
  7. 19 Apr, 2019 8 commits
  8. 18 Apr, 2019 1 commit
  9. 17 Apr, 2019 2 commits
  10. 16 Apr, 2019 5 commits
  11. 15 Apr, 2019 3 commits
  12. 14 Apr, 2019 3 commits