Module: Ecoportal::API::Common::Content::Includer

Instance Method Summary collapse

Instance Method Details

#include_missing(base, target) ⇒ Object



6
7
8
9
10
11
# File 'lib/ecoportal/api/common/content/includer.rb', line 6

def include_missing(base, target)
  return base if base <= target

  base.send(:include, target)
  base
end