-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
Dubious should support circular dependencies between files.
Example of circular dependency I'd like to have:
class MetricsSuite
def app(app:Webapp)
@app = app
self
end
def self.for_app(app:Webapp)
new.app(app)
end
end
class Webapp < Model
def self.register(title:String)
app = new.title(title).on_register
app.save
app
end
def on_register
MetricsSuite.for_app(self).install
self
end
end
Metadata
Metadata
Assignees
Labels
No labels