Created
February 13, 2014 20:52
-
-
Save soulcutter/8983583 to your computer and use it in GitHub Desktop.
My default lib/tasks/auto_annotate_models.rake
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' => "after", | |
'position_in_class' => "after", | |
'position_in_test' => "after", | |
'position_in_fixture' => "after", | |
'position_in_factory' => "after", | |
'show_indexes' => "true", | |
'simple_indexes' => "false", | |
'model_dir' => "app/models", | |
'include_version' => "false", | |
'require' => "", | |
'exclude_tests' => "true", | |
'exclude_fixtures' => "true", | |
'exclude_factories' => "true", | |
'ignore_model_sub_dir' => "false", | |
'skip_on_db_migrate' => "false", | |
'format_bare' => "true", | |
'format_rdoc' => "false", | |
'format_markdown' => "false", | |
'sort' => "false", | |
'force' => "false", | |
'trace' => "false", | |
}) | |
end | |
Annotate.load_tasks | |
# Annotate models | |
task :annotate do | |
puts 'Annotating models...' | |
system 'bundle exec annotate' | |
end | |
# Run annotate task after db:migrate | |
# and db:rollback tasks | |
Rake::Task['db:migrate'].enhance do | |
Rake::Task['annotate'].invoke | |
end | |
Rake::Task['db:rollback'].enhance do | |
Rake::Task['annotate'].invoke | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment