Sha256: cb19868651d8f37b5f876b144035dedfd94fa6b92edc27e1182068e47503a179

Contents?: true

Size: 1.92 KB

Versions: 21

Compression:

Stored size: 1.92 KB

Contents

# 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(
      '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'            => 'true',
      'simple_indexes'          => 'false',
      'model_dir'               => 'app/models',
      'root_dir'                => '',
      'include_version'         => 'false',
      'require'                 => '',
      'exclude_tests'           => 'false',
      'exclude_fixtures'        => 'false',
      'exclude_factories'       => 'false',
      'exclude_serializers'     => 'false',
      '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

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
railman-1.0.6 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-1.0.5 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-1.0.4 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-1.0.3 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-1.0.2 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-1.0.1 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-1.0.0 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.20 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.19 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.18 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.17 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.16 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.15 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.14 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.13 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.12 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.11 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.10 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.9 templates/rails_app/lib/tasks/auto_annotate_models.rake
railman-0.6.8 templates/rails_app/lib/tasks/auto_annotate_models.rake