Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #1689: make_local_constants_return_strings.patch

File make_local_constants_return_strings.patch, 505 bytes (added by fcheung, 7 months ago)
  • activesupport/lib/active_support/core_ext/module/introspection.rb

    old new  
    3030    end 
    3131    constants.select do |const| 
    3232      ! inherited.key?(const) || inherited[const].object_id != const_get(const).object_id 
    33     end 
     33    end.map(&:to_s) 
    3434  end 
    3535end