You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're currently monkey patching the Everypolitician module in everypolitician_extensions.rb. These changes are global, so could potentially stand on the toes of other code without realising.
Proposed Solution
Use Module#refine to make changes to the Everypolitician::* classes so that our changes are local to the application.
Acceptance Criteria
Changes that are made to Everypolitician should be scoped to the application.
The text was updated successfully, but these errors were encountered:
Problem
We're currently monkey patching the
Everypolitician
module ineverypolitician_extensions.rb
. These changes are global, so could potentially stand on the toes of other code without realising.Proposed Solution
Use
Module#refine
to make changes to theEverypolitician::*
classes so that our changes are local to the application.Acceptance Criteria
Changes that are made to
Everypolitician
should be scoped to the application.The text was updated successfully, but these errors were encountered: