2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-23 22:35:14 -04: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.
|
2016-02-22 18:33:53 -05:00
|
|
|
if (Rails.env.development? || Rails.env.test?)
|
2013-05-23 22:35:14 -04:00
|
|
|
task :set_annotation_options do
|
|
|
|
# You can override any of these by setting an environment variable of the
|
|
|
|
# same name.
|
2018-12-04 04:48:16 -05:00
|
|
|
Annotate.set_defaults(
|
|
|
|
"position_in_routes" => "before",
|
|
|
|
"position_in_class" => "after",
|
|
|
|
"position_in_test" => "before",
|
|
|
|
"position_in_fixture" => "before",
|
|
|
|
"position_in_factory" => "before",
|
|
|
|
"show_indexes" => "true",
|
|
|
|
"simple_indexes" => "false",
|
2021-07-05 10:43:10 -04:00
|
|
|
"model_dir" => ["app/models"] + Dir.glob("plugins/*/app/models"),
|
2018-12-04 04:48:16 -05:00
|
|
|
"include_version" => "false",
|
|
|
|
"require" => "",
|
|
|
|
"exclude_tests" => "true",
|
|
|
|
"exclude_fixtures" => "true",
|
|
|
|
"exclude_helpers" => "true",
|
|
|
|
"exclude_factories" => "true",
|
|
|
|
"exclude_serializers" => "true",
|
|
|
|
"exclude_controllers" => "true",
|
|
|
|
"ignore_model_sub_dir" => "false",
|
|
|
|
"skip_on_db_migrate" => "true",
|
|
|
|
"format_bare" => "true",
|
|
|
|
"format_rdoc" => "false",
|
|
|
|
"format_markdown" => "false",
|
|
|
|
"sort" => "false",
|
|
|
|
"force" => "false",
|
2019-05-13 10:53:42 -04:00
|
|
|
"trace" => "false",
|
|
|
|
"show_foreign_keys" => "true",
|
2018-12-04 04:48:16 -05:00
|
|
|
)
|
2013-05-23 22:35:14 -04:00
|
|
|
end
|
|
|
|
end
|