Topic: ActionController::Base
If I have a code like this:
class myClass < ActionController::Base
Some code
end
What does the :: signify? I have tried to find reference for this in my Agile Development book, but I can't find anything.
I'm also presuming that the < means that the class myClass inherits from ActionController::Base, I just don't understand the ::