module ServiceInterface def self.included(base) base.send :include, InstanceMethods end module InstanceMethods def test "test" end end end