Given the code
require 'gdata'
class Contacts
class Gmail < Base
What does it mean when we say “< Base”, does it mean inheriting from the Base class defined in the module gdata, in that case wouldn’t there be a conflict with some other module that may be required too.
Or does it mean something else?
Base has no special meaning.
Unless a class called Base or Contacts::Base is defined in gdata, that example should generate an error.