class Generators::Avo::Inspector

After modification: Model
Without modification: Model(id: integer, name: string)
It is used in the polymorphic_association_types function.
This class modifies the inspect function to correctly handle polymorphic associations.

def initialize(name)

def initialize(name)
  @name = name
end

def inspect

def inspect
  name
end