Instead of using def/end style delegation, this changes the project form to use Rails' delegate method to pass certain method calls through to the project.
Alternatively, this could use the Forwardable Ruby library, though we're doing enough Rails-specific stuff in this library that it feels safe to use delegate.
Instead of using def/end style delegation, this changes the project form to use Rails'
delegate
method to pass certain method calls through to the project.Alternatively, this could use the Forwardable Ruby library, though we're doing enough Rails-specific stuff in this library that it feels safe to use
delegate
.