Should the Paperclip 3 file "paperclip_attachments.yml" be included or excluded from Git commits?

When I issue the command:, the rake paperclip:refresh:missing_stylesfile is created in /public/system/paperclip_attachments.ymlusing Paperclip 3 (using Rails 3). What I'm wondering, would it be better to include or exclude this file from Git commits?

+5
source share
1 answer

You can leave it as it was created at startup rake paperclip:refresh:missing_styles. A typical scenario is to run a command on a production server when deploying with Capistrano.

0
source

All Articles