docs/4-csv-format.md in yousty-activeadmin-1.0.4.pre vs docs/4-csv-format.md in yousty-activeadmin-1.0.5.pre
- old
+ new
@@ -17,10 +17,10 @@
You can also set custom CSV settings for an individual resource:
```ruby
ActiveAdmin.register Post do
- csv force_quotes: true, col_sep: ';' do
+ csv force_quotes: true, col_sep: ';', column_names: false do
column :title
column(:author) { |post| post.author.full_name }
end
end
```