This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'alias_dci' | |
class A | |
include AliasDCI::DataObject | |
def foo | |
"a" | |
end | |
end | |
class C | |
include AliasDCI::Context # No need to also include DataObject in a context, it is one anyway |