class CsvShaper::Header

Header Handles creating and mapping of the headers Examples: “‘ # assign the headers from the attributes of a class csv.headers User

# assigns headers normally csv.headers :name, :age, :location

# pass a block csv.headers do |csv|

csv.columns :name, :age, :location
csv.mappings name: 'Full name, location: 'Region'

end “‘