2013-05-24 12:35:14 +10:00
# NOTE: only doing this in development as some production environments (Heroku)
# NOTE: are sensitive to local FS writes, and besides -- it's just not proper
# NOTE: to have a dev-mode tool do its thing in production.
if ( Rails . env . development? )
task :set_annotation_options do
# You can override any of these by setting an environment variable of the
# same name.
Annotate . set_defaults ( {
'position_in_routes' = > " before " ,
2013-05-24 12:48:32 +10:00
'position_in_class' = > " after " ,
2013-05-24 12:35:14 +10:00
'position_in_test' = > " before " ,
'position_in_fixture' = > " before " ,
'position_in_factory' = > " before " ,
'show_indexes' = > " true " ,
'simple_indexes' = > " false " ,
'model_dir' = > " app/models " ,
'include_version' = > " false " ,
'require' = > " " ,
'exclude_tests' = > " true " ,
'exclude_fixtures' = > " true " ,
'exclude_factories' = > " true " ,
2015-09-18 10:41:10 +10:00
'exclude_serializers' = > " true " ,
2013-05-24 12:35:14 +10:00
'ignore_model_sub_dir' = > " false " ,
2014-08-27 15:26:53 +10:00
'skip_on_db_migrate' = > " true " ,
2013-05-24 12:35:14 +10:00
'format_bare' = > " true " ,
'format_rdoc' = > " false " ,
'format_markdown' = > " false " ,
'sort' = > " false " ,
'force' = > " false " ,
'trace' = > " false " ,
} )
end
end