Skip to content

bundle exec annotate doesn't run on models, just routes #563

Closed
@jywei

Description

@jywei

When I run bundle exec annotate --exclude tests,fixtures,factories,serializers, I will only get
config/routes.rb unchanged. (expectation: Model files unchanged. and config/routes.rb unchanged.
However, I need to run it with rake, with bundle exec rake annotate_models, annotate will finally run with my models.
It means my after migration auto-hook also doesn't work on models (also only routes)

annotate v2.7.4
Rails 5.1.4
ruby 2.5.1p57

if Rails.env.development?
  require 'annotate'
  task :set_annotation_options do
    # You can override any of these by setting an environment variable of the
    # same name.
    Annotate.set_defaults(
      'routes'                     => 'true',
      '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_complete_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',
      'exclude_sti_subclasses'     => 'false',
      'ignore_model_sub_dir'       => 'false',
      'ignore_columns'             => nil,
      'ignore_routes'              => nil,
      'ignore_unknown_models'      => 'false',
      'hide_limit_column_types'    => 'integer,boolean',
      'hide_default_column_types'  => 'json,jsonb,hstore',
      'skip_on_db_migrate'         => 'false',
      'format_bare'                => 'true',
      'format_rdoc'                => 'false',
      'format_markdown'            => 'false',
      'sort'                       => 'false',
      'force'                      => 'false',
      'classified_sort'            => 'true',
      'trace'                      => 'false',
      'wrapper_open'               => nil,
      'wrapper_close'              => nil,
      'with_comment'               => 'true'
    )
  end

  Annotate.load_tasks
end

TL;DR
Model annotation doesn't run on command line, only on rake version, HELP :(

Metadata

Metadata

Assignees

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions