diff options
author | Douwe Maan <douwe@gitlab.com> | 2016-05-06 11:15:04 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2016-05-06 11:15:04 +0000 |
commit | 45ef8d5edaf3904f44d850d97863bbc53e8c4a1f (patch) | |
tree | 5b6b6116dd95a2224f9af07eb95d86cf92365718 /lib/tasks | |
parent | aa18cc205c90ea027cd3f2788371f36fd0697fda (diff) | |
parent | 8278b763d96ef10c6494409b18b7eb541463af29 (diff) | |
download | gitlab-ce-45ef8d5edaf3904f44d850d97863bbc53e8c4a1f.tar.gz |
Merge branch 'annotate-models' into 'master'
Update annotations on models
See merge request !3962
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/auto_annotate_models.rake | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/tasks/auto_annotate_models.rake b/lib/tasks/auto_annotate_models.rake new file mode 100644 index 00000000000..16bad4bd2bd --- /dev/null +++ b/lib/tasks/auto_annotate_models.rake @@ -0,0 +1,44 @@ +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( + 'routes' => 'false', + 'position_in_routes' => 'before', + 'position_in_class' => 'before', + 'position_in_test' => 'before', + 'position_in_fixture' => 'before', + 'position_in_factory' => 'before', + 'position_in_serializer' => 'before', + 'show_foreign_keys' => 'true', + 'show_indexes' => 'false', + 'simple_indexes' => 'false', + 'model_dir' => 'app/models', + 'root_dir' => '', + 'include_version' => 'false', + 'require' => '', + 'exclude_tests' => 'true', + 'exclude_fixtures' => 'true', + 'exclude_factories' => 'true', + 'exclude_serializers' => 'true', + 'exclude_scaffolds' => 'true', + 'exclude_controllers' => 'true', + 'exclude_helpers' => 'true', + 'ignore_model_sub_dir' => 'false', + 'ignore_columns' => nil, + 'ignore_unknown_models' => 'false', + 'hide_limit_column_types' => 'integer,boolean', + 'skip_on_db_migrate' => 'false', + 'format_bare' => 'true', + 'format_rdoc' => 'false', + 'format_markdown' => 'false', + 'sort' => 'false', + 'force' => 'false', + 'trace' => 'false', + 'wrapper_open' => nil, + 'wrapper_close' => nil, + ) + end + + Annotate.load_tasks +end |