Is there a way to disable the ERB handler in Rails.
This may sound silly but we're migrating to SLIM and want to prevent that some lazy developers still use ERB.
|
Is there a way to disable the ERB handler in Rails. This may sound silly but we're migrating to SLIM and want to prevent that some lazy developers still use ERB. |
|||
|
|
As far as I can see there's no way to But we can do it by means of a hack. the
So lets break it, for fun. We'll add an initializer
Any view that tries to use ERB will then raise the error
|
|||||||
|
|
I think this ought to work:
Basically this gets the This would probably go in an initializer. It needs to load after
Hope that's helpful! |
|||
|
|