Hey Tom,
:options: is expecting an array. If you check out the rails_logrotate method, it's doing:
:options => configuration[:rails_logrotate][:options] || %w(daily missingok compress delaycompress sharedscripts),
If you're doing it in moonshine.yml, you'll want:
:rails_logrotate:
:options:
- daily
- missingok
- compress
- delaycompress
- sharedscripts
Or you can use the %w trick if you do it from inside a manifest with configure:
# make sure this is before recipe :default_stack
configure :rails_logrotate => {:options => %w(daily missingok compress delaycompress sharedscripts)}