1. 29 Sep, 2019 10 commits
  2. 28 Sep, 2019 1 commit
  3. 27 Sep, 2019 3 commits
  4. 26 Sep, 2019 4 commits
  5. 25 Sep, 2019 11 commits
  6. 24 Sep, 2019 2 commits
  7. 23 Sep, 2019 2 commits
  8. 22 Sep, 2019 4 commits
  9. 21 Sep, 2019 2 commits
  10. 20 Sep, 2019 1 commit
    • Yukihiro "Matz" Matsumoto's avatar
      Fix compatibility issue of class variables. · 15701a32
      Yukihiro "Matz" Matsumoto authored
      Singleton class definition do not introduce its own class variable scope
      in CRuby/JRuby. So should mruby.
      
      ```
      module Mod1
        class << Object.new
      
          C = 1
          @@cv = 1
      
          p Module.nesting,        # => [#<Class:#<Object:0x55cb16e60a50>>, Mod1]
            constants,             # => [:C]
            class_variables,       # => []
            Mod1.class_variables   # => [:@@cv]
        end
      end
      ```
      15701a32