class Supa::Commands::Attributes

Public Instance Methods

represent() click to toggle source
# File lib/supa/commands/attributes.rb, line 4
def represent
  names.each do |name|
    Supa::Commands::Attribute.new(
      @subject, representer: @representer, tree: @tree, name: name, options: @options
    ).represent
  end
end

Private Instance Methods

names() click to toggle source
# File lib/supa/commands/attributes.rb, line 14
def names
  @name
end