about summary refs log tree commit diff
path: root/lib/tasks/auto_annotate_models.rake
diff options
context:
space:
mode:
authoryhirano <yhirano@me.com>2017-05-02 09:14:47 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-05-02 02:14:47 +0200
commit298796cc7b4fdc075be659fc6aea7ab2543a0f9d (patch)
treef70f563b70284f5458c1897bacd3d8d0371a14f2 /lib/tasks/auto_annotate_models.rake
parenta4859446abea166ae55806169425646c1bd42f85 (diff)
annotate models (#2697)
* add annotate to Gemfile

* rails g annotate:install

* configure annotate_models

* add schema info to models

* fix rubocop to add frozen_string_literal
Diffstat (limited to 'lib/tasks/auto_annotate_models.rake')
-rw-r--r--lib/tasks/auto_annotate_models.rake44
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 000000000..6c6b0df1b
--- /dev/null
+++ b/lib/tasks/auto_annotate_models.rake
@@ -0,0 +1,44 @@
+# frozen_string_literal: true
+if Rails.env.development?
+  task :set_annotation_options do
+    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'       => 'false',
+      '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_routes'           => 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