Sha256: 38a7f6e70211805538adf88e3ed533a657c9c2485460e99d08accdd06511e271
Contents?: true
Size: 862 Bytes
Versions: 32
Compression:
Stored size: 862 Bytes
Contents
<?xml version="1.0"?> <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40"> <Worksheet ss:Name="Sheet1"> <Table> <Row> <% @fields.each do |f| %> <Cell> <Data ss:Type="String"><%= @model_class.human_attribute_name(f) %></Data> </Cell> <% end %> </Row> <% @models_export.each do |m| %> <Row> <% @fields.each do |f| %> <Cell> <Data ss:Type="String"><%= m.read_attribute(f).to_s %></Data> </Cell> <% end %> </Row> <% end %> </Table> </Worksheet> </Workbook>
Version data entries
32 entries across 32 versions & 1 rubygems