I tried to generate a rails model like so:
rails generate model signal
Which produced this error:
The name 'Signal' is either already used in your application or reserved by Ruby on Rails. Please choose an alternative and run this generator again.
I quickly discovered that "Signal" was a reserved name for models:
Reserved names with ActiveRecord models
Is there any way around this so I can have a model named "Signal", like wrapping the model in a custom Module
?