In a non-rails project, I can just install activesupport standalone. When I need its cool monkeypatch features:
require 'active_support/core_ext'
But how does it work? Does it automatically require all files in active_support/core_ext? How Ruby know they are here?
Look for the file named
core_ext.rb.But no
requirecan’t load directories.