You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 17, 2018. It is now read-only.
I noticed that dm-is-remixable searches for models at the top-level first. This differs from how dm-core resolves models, which begins searching in the current namespace upward.
# lib/dm-is-remixable/is/remixable.rb:60
remixable_module = case remixable
when Symbol then Object.full_const_get(ActiveSupport::Inflector. classify(remixable))
when String then Object.full_const_get(remixable)
when Module then remixable
end