I have a model called class App::BaseModel
into a file called base_model.rb
Then I have a message.rb
file which on the first line has the following:
class App::Message < App::BaseModel
When starting the server I get the error:
/path/to/app/message.rb:1:in `<top (required)>': uninitialized constant App::BaseModel (NameError)
Can someone help me with this please?
Cheers