-
-
Notifications
You must be signed in to change notification settings - Fork 231
Closed
Labels
Milestone
Description
followup to #120
DeepMerge can be loaded in 3 different ways:
- only the
corelibrary - the
corelibrary + the defaultHashmonkey patch - the
corelibrary + an alternativeHashmonkey patch that does not conflict withActiveSupport
Config is currently using the 2nd variant:
Line 9 in 9c35a5d
| require 'deep_merge' |
However, Config does not actually use the monkey patch, so it should switch to the 1st variant:
require 'deep_merge/core'This is conceptually cleaner and prevents the conflict with ActiveSupport.
khiav223577