diff --git a/.rubocop.yml b/.rubocop.yml index d015762..0af2e87 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -32,9 +32,6 @@ require: - rubocop-rails # Rules for CustomWorkflows -Layout/EmptyLineAfterMagicComment: - Enabled: false - Metrics/BlockLength: Enabled: false diff --git a/Gemfile b/Gemfile index 5901224..2ac2179 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/after_init.rb b/after_init.rb index c61748a..3e1866e 100644 --- a/after_init.rb +++ b/after_init.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/app/controllers/custom_workflows_controller.rb b/app/controllers/custom_workflows_controller.rb index 51fd165..f58946e 100644 --- a/app/controllers/custom_workflows_controller.rb +++ b/app/controllers/custom_workflows_controller.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/app/models/application_record.rb b/app/models/application_record.rb index 2984ab0..cb236bc 100644 --- a/app/models/application_record.rb +++ b/app/models/application_record.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/app/models/custom_workflow.rb b/app/models/custom_workflow.rb index 95d6d31..e90db9e 100644 --- a/app/models/custom_workflow.rb +++ b/app/models/custom_workflow.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/app/models/custom_workflow_mailer.rb b/app/models/custom_workflow_mailer.rb index b931cf9..c52499e 100644 --- a/app/models/custom_workflow_mailer.rb +++ b/app/models/custom_workflow_mailer.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/config/routes.rb b/config/routes.rb index 9cb0bf0..433d52f 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20110915084858_create_custom_workflows.rb b/db/migrate/20110915084858_create_custom_workflows.rb index 5cee1cf..d5d6ad3 100644 --- a/db/migrate/20110915084858_create_custom_workflows.rb +++ b/db/migrate/20110915084858_create_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20120601054047_alter_custom_workflows.rb b/db/migrate/20120601054047_alter_custom_workflows.rb index 5982d36..5fc2b3a 100644 --- a/db/migrate/20120601054047_alter_custom_workflows.rb +++ b/db/migrate/20120601054047_alter_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20120601054557_create_custom_workflows_projects.rb b/db/migrate/20120601054557_create_custom_workflows_projects.rb index 6ce67e4..97bce07 100644 --- a/db/migrate/20120601054557_create_custom_workflows_projects.rb +++ b/db/migrate/20120601054557_create_custom_workflows_projects.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20120628060102_change_custom_workflows_description_type.rb b/db/migrate/20120628060102_change_custom_workflows_description_type.rb index dd9cb93..5e76e66 100644 --- a/db/migrate/20120628060102_change_custom_workflows_description_type.rb +++ b/db/migrate/20120628060102_change_custom_workflows_description_type.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20120908085222_add_after_save_to_custom_workflows.rb b/db/migrate/20120908085222_add_after_save_to_custom_workflows.rb index a0101a9..afb56c8 100644 --- a/db/migrate/20120908085222_add_after_save_to_custom_workflows.rb +++ b/db/migrate/20120908085222_add_after_save_to_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20121005085252_add_is_for_all_to_custom_workflows.rb b/db/migrate/20121005085252_add_is_for_all_to_custom_workflows.rb index 99ccebf..4b9e17c 100644 --- a/db/migrate/20121005085252_add_is_for_all_to_custom_workflows.rb +++ b/db/migrate/20121005085252_add_is_for_all_to_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20150522134436_make_after_save_and_before_save_nullable.rb b/db/migrate/20150522134436_make_after_save_and_before_save_nullable.rb index d411e53..aa230af 100644 --- a/db/migrate/20150522134436_make_after_save_and_before_save_nullable.rb +++ b/db/migrate/20150522134436_make_after_save_and_before_save_nullable.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20150522134437_set_position_field_nullable.rb b/db/migrate/20150522134437_set_position_field_nullable.rb index 144f88a..ec9ce99 100644 --- a/db/migrate/20150522134437_set_position_field_nullable.rb +++ b/db/migrate/20150522134437_set_position_field_nullable.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20150525083345_add_author_to_custom_workflows.rb b/db/migrate/20150525083345_add_author_to_custom_workflows.rb index 6e3b213..ded42e6 100644 --- a/db/migrate/20150525083345_add_author_to_custom_workflows.rb +++ b/db/migrate/20150525083345_add_author_to_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20150526132244_create_example_workflow.rb b/db/migrate/20150526132244_create_example_workflow.rb index b706f7c..bb27d1c 100644 --- a/db/migrate/20150526132244_create_example_workflow.rb +++ b/db/migrate/20150526132244_create_example_workflow.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20150526134840_add_active_field_to_custom_workflows.rb b/db/migrate/20150526134840_add_active_field_to_custom_workflows.rb index 9146ea4..e864fc8 100644 --- a/db/migrate/20150526134840_add_active_field_to_custom_workflows.rb +++ b/db/migrate/20150526134840_add_active_field_to_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20150619135811_add_observable_field_to_custom_workflows.rb b/db/migrate/20150619135811_add_observable_field_to_custom_workflows.rb index a8994f1..a384f12 100644 --- a/db/migrate/20150619135811_add_observable_field_to_custom_workflows.rb +++ b/db/migrate/20150619135811_add_observable_field_to_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20150619162054_add_additional_script_fields_to_custom_workflows.rb b/db/migrate/20150619162054_add_additional_script_fields_to_custom_workflows.rb index 44f83ba..5fbb4b6 100644 --- a/db/migrate/20150619162054_add_additional_script_fields_to_custom_workflows.rb +++ b/db/migrate/20150619162054_add_additional_script_fields_to_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20151122120000_add_before_and_after_destroy_to_custom_workflows.rb b/db/migrate/20151122120000_add_before_and_after_destroy_to_custom_workflows.rb index 226c7f6..c4926c1 100644 --- a/db/migrate/20151122120000_add_before_and_after_destroy_to_custom_workflows.rb +++ b/db/migrate/20151122120000_add_before_and_after_destroy_to_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20210210144000_change_default_active_boolean_value_to_custom_workflows.rb b/db/migrate/20210210144000_change_default_active_boolean_value_to_custom_workflows.rb index 33c234a..235debc 100644 --- a/db/migrate/20210210144000_change_default_active_boolean_value_to_custom_workflows.rb +++ b/db/migrate/20210210144000_change_default_active_boolean_value_to_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/db/migrate/20230413125201_name_unique_index.rb b/db/migrate/20230413125201_name_unique_index.rb index 37b1e49..10944ed 100644 --- a/db/migrate/20230413125201_name_unique_index.rb +++ b/db/migrate/20230413125201_name_unique_index.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/init.rb b/init.rb index f67c4f6..2ec61db 100644 --- a/init.rb +++ b/init.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows.rb b/lib/redmine_custom_workflows.rb index 8fd957e..7311169 100644 --- a/lib/redmine_custom_workflows.rb +++ b/lib/redmine_custom_workflows.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/errors/workflow_error.rb b/lib/redmine_custom_workflows/errors/workflow_error.rb index 68ed854..091e0d1 100644 --- a/lib/redmine_custom_workflows/errors/workflow_error.rb +++ b/lib/redmine_custom_workflows/errors/workflow_error.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/hooks/views/base_view_hooks.rb b/lib/redmine_custom_workflows/hooks/views/base_view_hooks.rb index eb950b6..3d56584 100644 --- a/lib/redmine_custom_workflows/hooks/views/base_view_hooks.rb +++ b/lib/redmine_custom_workflows/hooks/views/base_view_hooks.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/controllers/attachments_controller_patch.rb b/lib/redmine_custom_workflows/patches/controllers/attachments_controller_patch.rb index 027eed6..335686c 100644 --- a/lib/redmine_custom_workflows/patches/controllers/attachments_controller_patch.rb +++ b/lib/redmine_custom_workflows/patches/controllers/attachments_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/controllers/groups_controller_patch.rb b/lib/redmine_custom_workflows/patches/controllers/groups_controller_patch.rb index ab35fc2..e872731 100644 --- a/lib/redmine_custom_workflows/patches/controllers/groups_controller_patch.rb +++ b/lib/redmine_custom_workflows/patches/controllers/groups_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/controllers/issue_relations_controller_patch.rb b/lib/redmine_custom_workflows/patches/controllers/issue_relations_controller_patch.rb index 1105991..1fef439 100644 --- a/lib/redmine_custom_workflows/patches/controllers/issue_relations_controller_patch.rb +++ b/lib/redmine_custom_workflows/patches/controllers/issue_relations_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/controllers/issues_controller_patch.rb b/lib/redmine_custom_workflows/patches/controllers/issues_controller_patch.rb index 55f6d11..6ac894f 100644 --- a/lib/redmine_custom_workflows/patches/controllers/issues_controller_patch.rb +++ b/lib/redmine_custom_workflows/patches/controllers/issues_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/controllers/projects_controller_patch.rb b/lib/redmine_custom_workflows/patches/controllers/projects_controller_patch.rb index b618261..732cf09 100644 --- a/lib/redmine_custom_workflows/patches/controllers/projects_controller_patch.rb +++ b/lib/redmine_custom_workflows/patches/controllers/projects_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/controllers/timelog_controller_patch.rb b/lib/redmine_custom_workflows/patches/controllers/timelog_controller_patch.rb index 6ba8676..0ae4311 100644 --- a/lib/redmine_custom_workflows/patches/controllers/timelog_controller_patch.rb +++ b/lib/redmine_custom_workflows/patches/controllers/timelog_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/controllers/users_controller_patch.rb b/lib/redmine_custom_workflows/patches/controllers/users_controller_patch.rb index dfc3893..597382a 100644 --- a/lib/redmine_custom_workflows/patches/controllers/users_controller_patch.rb +++ b/lib/redmine_custom_workflows/patches/controllers/users_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/controllers/versions_controller_patch.rb b/lib/redmine_custom_workflows/patches/controllers/versions_controller_patch.rb index 36e109f..feb8038 100644 --- a/lib/redmine_custom_workflows/patches/controllers/versions_controller_patch.rb +++ b/lib/redmine_custom_workflows/patches/controllers/versions_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/controllers/wiki_controller_patch.rb b/lib/redmine_custom_workflows/patches/controllers/wiki_controller_patch.rb index 278fe9c..7613782 100644 --- a/lib/redmine_custom_workflows/patches/controllers/wiki_controller_patch.rb +++ b/lib/redmine_custom_workflows/patches/controllers/wiki_controller_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/helpers/projects_helper_patch.rb b/lib/redmine_custom_workflows/patches/helpers/projects_helper_patch.rb index d6493f5..0b116d1 100644 --- a/lib/redmine_custom_workflows/patches/helpers/projects_helper_patch.rb +++ b/lib/redmine_custom_workflows/patches/helpers/projects_helper_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/attachment_patch.rb b/lib/redmine_custom_workflows/patches/models/attachment_patch.rb index b651721..6b07292 100644 --- a/lib/redmine_custom_workflows/patches/models/attachment_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/attachment_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/group_patch.rb b/lib/redmine_custom_workflows/patches/models/group_patch.rb index b51b3f9..8eec8c6 100644 --- a/lib/redmine_custom_workflows/patches/models/group_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/group_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/issue_patch.rb b/lib/redmine_custom_workflows/patches/models/issue_patch.rb index 539bbaa..1cf6992 100644 --- a/lib/redmine_custom_workflows/patches/models/issue_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/issue_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/issue_relation_patch.rb b/lib/redmine_custom_workflows/patches/models/issue_relation_patch.rb index b641d8d..b3fd8ce 100644 --- a/lib/redmine_custom_workflows/patches/models/issue_relation_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/issue_relation_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/mailer_patch.rb b/lib/redmine_custom_workflows/patches/models/mailer_patch.rb index b1677f4..8570e2c 100644 --- a/lib/redmine_custom_workflows/patches/models/mailer_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/mailer_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/project_patch.rb b/lib/redmine_custom_workflows/patches/models/project_patch.rb index db16e09..1a7c858 100644 --- a/lib/redmine_custom_workflows/patches/models/project_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/project_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/time_entry_patch.rb b/lib/redmine_custom_workflows/patches/models/time_entry_patch.rb index 9110bd1..7ca271e 100644 --- a/lib/redmine_custom_workflows/patches/models/time_entry_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/time_entry_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/user_patch.rb b/lib/redmine_custom_workflows/patches/models/user_patch.rb index 18fd569..fbe545c 100644 --- a/lib/redmine_custom_workflows/patches/models/user_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/user_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/version_patch.rb b/lib/redmine_custom_workflows/patches/models/version_patch.rb index 0443578..441c491 100644 --- a/lib/redmine_custom_workflows/patches/models/version_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/version_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/wiki_content_patch.rb b/lib/redmine_custom_workflows/patches/models/wiki_content_patch.rb index c6c1cb1..ae1c286 100644 --- a/lib/redmine_custom_workflows/patches/models/wiki_content_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/wiki_content_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/lib/redmine_custom_workflows/patches/models/wiki_page_patch.rb b/lib/redmine_custom_workflows/patches/models/wiki_page_patch.rb index 12f26c6..6eb0472 100644 --- a/lib/redmine_custom_workflows/patches/models/wiki_page_patch.rb +++ b/lib/redmine_custom_workflows/patches/models/wiki_page_patch.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/functional/attachments_controller_patch_test.rb b/test/functional/attachments_controller_patch_test.rb index d7ac12a..915c636 100644 --- a/test/functional/attachments_controller_patch_test.rb +++ b/test/functional/attachments_controller_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2019-23 Karel Pičman diff --git a/test/functional/custom_workflows_controller_test.rb b/test/functional/custom_workflows_controller_test.rb index 6b5643d..ca3a3c4 100644 --- a/test/functional/custom_workflows_controller_test.rb +++ b/test/functional/custom_workflows_controller_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/functional/groups_controller_patch_test.rb b/test/functional/groups_controller_patch_test.rb index 36f228b..63c8f72 100644 --- a/test/functional/groups_controller_patch_test.rb +++ b/test/functional/groups_controller_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2019-23 Karel Pičman diff --git a/test/functional/issue_relations_controller_patch_test.rb b/test/functional/issue_relations_controller_patch_test.rb index b498b3f..b2387de 100644 --- a/test/functional/issue_relations_controller_patch_test.rb +++ b/test/functional/issue_relations_controller_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2019-23 Karel Pičman diff --git a/test/functional/issues_controller_patch_test.rb b/test/functional/issues_controller_patch_test.rb index 39ec2e2..bfb91af 100644 --- a/test/functional/issues_controller_patch_test.rb +++ b/test/functional/issues_controller_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2019-23 Karel Pičman diff --git a/test/functional/projects_controller_patch_test.rb b/test/functional/projects_controller_patch_test.rb index eeb8aea..bdae4e7 100644 --- a/test/functional/projects_controller_patch_test.rb +++ b/test/functional/projects_controller_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2019-23 Karel Pičman diff --git a/test/functional/timelog_controller_patch_test.rb b/test/functional/timelog_controller_patch_test.rb index b7ab266..2b7d97a 100644 --- a/test/functional/timelog_controller_patch_test.rb +++ b/test/functional/timelog_controller_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2019-23 Karel Pičman diff --git a/test/functional/users_controller_patch_test.rb b/test/functional/users_controller_patch_test.rb index a9bfcf9..9c8444d 100644 --- a/test/functional/users_controller_patch_test.rb +++ b/test/functional/users_controller_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2019-23 Karel Pičman diff --git a/test/functional/versions_controller_patch_test.rb b/test/functional/versions_controller_patch_test.rb index 9732c75..372c397 100644 --- a/test/functional/versions_controller_patch_test.rb +++ b/test/functional/versions_controller_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2019-23 Karel Pičman diff --git a/test/functional/wiki_controller_patch_test.rb b/test/functional/wiki_controller_patch_test.rb index 52d6439..eb7b322 100644 --- a/test/functional/wiki_controller_patch_test.rb +++ b/test/functional/wiki_controller_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Document Management System "Features" # # Copyright © 2019-23 Karel Pičman diff --git a/test/test_case.rb b/test/test_case.rb index f8e10a8..6849c57 100644 --- a/test/test_case.rb +++ b/test/test_case.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/test_helper.rb b/test/test_helper.rb index 7b46496..bb1b352 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/attachment_patch_test.rb b/test/unit/attachment_patch_test.rb index ee2d2dd..c20eb90 100644 --- a/test/unit/attachment_patch_test.rb +++ b/test/unit/attachment_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/custom_workflow_mailer_test.rb b/test/unit/custom_workflow_mailer_test.rb index 3450a36..c01a2eb 100644 --- a/test/unit/custom_workflow_mailer_test.rb +++ b/test/unit/custom_workflow_mailer_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/custom_workflow_test.rb b/test/unit/custom_workflow_test.rb index e4c3af4..92a8fec 100644 --- a/test/unit/custom_workflow_test.rb +++ b/test/unit/custom_workflow_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/group_patch_test.rb b/test/unit/group_patch_test.rb index 2048e21..9d3724c 100644 --- a/test/unit/group_patch_test.rb +++ b/test/unit/group_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/issue_patch_test.rb b/test/unit/issue_patch_test.rb index 0681da7..9395a27 100644 --- a/test/unit/issue_patch_test.rb +++ b/test/unit/issue_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/issue_relation_patch_test.rb b/test/unit/issue_relation_patch_test.rb index cdca329..fb7d99c 100644 --- a/test/unit/issue_relation_patch_test.rb +++ b/test/unit/issue_relation_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/project_patch_test.rb b/test/unit/project_patch_test.rb index 40f0c90..45e450c 100644 --- a/test/unit/project_patch_test.rb +++ b/test/unit/project_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/time_entry_patch_test.rb b/test/unit/time_entry_patch_test.rb index ce914ce..dc44e58 100644 --- a/test/unit/time_entry_patch_test.rb +++ b/test/unit/time_entry_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/user_patch_test.rb b/test/unit/user_patch_test.rb index b4b4b38..1f45767 100644 --- a/test/unit/user_patch_test.rb +++ b/test/unit/user_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/version_patch_test.rb b/test/unit/version_patch_test.rb index 7da583f..45c19ac 100644 --- a/test/unit/version_patch_test.rb +++ b/test/unit/version_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/wiki_content_patch_test.rb b/test/unit/wiki_content_patch_test.rb index 4d48e33..9d4af8c 100644 --- a/test/unit/wiki_content_patch_test.rb +++ b/test/unit/wiki_content_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit/wiki_page_patch_test.rb b/test/unit/wiki_page_patch_test.rb index ffed4d9..5afcec1 100644 --- a/test/unit/wiki_page_patch_test.rb +++ b/test/unit/wiki_page_patch_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov diff --git a/test/unit_test.rb b/test/unit_test.rb index 342e85f..05d8aef 100644 --- a/test/unit_test.rb +++ b/test/unit_test.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -# + # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov