Skip to content

Commit

Permalink
fix arguments when calling annotate_one_file from AnnotateModels.anno…
Browse files Browse the repository at this point in the history
…tate
  • Loading branch information
vlado committed Oct 2, 2012
1 parent 0a2ae44 commit 562970b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/annotate/annotate_models.rb
Expand Up @@ -286,29 +286,29 @@ def annotate(klass, file, header, options={})
table_name = klass.table_name table_name = klass.table_name
model_file_name = File.join(model_dir, file) model_file_name = File.join(model_dir, file)


if annotate_one_file(model_file_name, info, options_with_position(options, :position_in_class)) if annotate_one_file(model_file_name, info, :position_in_class, options_with_position(options, :position_in_class))
did_annotate = true did_annotate = true
end end


unless options[:exclude_tests] unless options[:exclude_tests]
did_annotate = TEST_PATTERNS. did_annotate = TEST_PATTERNS.
map { |pat| [pat[0], resolve_filename(pat[1], model_name, table_name)] }. map { |pat| [pat[0], resolve_filename(pat[1], model_name, table_name)] }.
map { |pat| find_test_file(*pat) }. map { |pat| find_test_file(*pat) }.
map { |file| annotate_one_file(file, info, options_with_position(options, :position_in_test)) }. map { |file| annotate_one_file(file, info, :position_in_test, options_with_position(options, :position_in_test)) }.
detect { |result| result } || did_annotate detect { |result| result } || did_annotate
end end


unless options[:exclude_fixtures] unless options[:exclude_fixtures]
did_annotate = FIXTURE_PATTERNS. did_annotate = FIXTURE_PATTERNS.
map { |file| resolve_filename(file, model_name, table_name) }. map { |file| resolve_filename(file, model_name, table_name) }.
map { |file| annotate_one_file(file, info, options_with_position(options, :position_in_fixture)) }. map { |file| annotate_one_file(file, info, :position_in_fixture, options_with_position(options, :position_in_fixture)) }.
detect { |result| result } || did_annotate detect { |result| result } || did_annotate
end end


unless options[:exclude_factories] unless options[:exclude_factories]
did_annotate = FACTORY_PATTERNS. did_annotate = FACTORY_PATTERNS.
map { |file| resolve_filename(file, model_name, table_name) }. map { |file| resolve_filename(file, model_name, table_name) }.
map { |file| annotate_one_file(file, info, options_with_position(options, :position_in_factory)) }. map { |file| annotate_one_file(file, info, :position_in_factory, options_with_position(options, :position_in_factory)) }.
detect { |result| result } || did_annotate detect { |result| result } || did_annotate
end end


Expand Down

0 comments on commit 562970b

Please sign in to comment.