From b2efcfe8f42534b83e69aaf22ada968627dce10c Mon Sep 17 00:00:00 2001 From: Patrick Plagwitz <Patrick_Plagwitz@web.de> Date: Fri, 19 Feb 2016 08:06:17 +0100 Subject: [PATCH] Update copyright notice. --- README.md | 17 +++++++++++++++++ .../src/cados_web/caching_file_info_provider.rb | 1 + server/src/cados_web/config_file_reader.rb | 1 + server/src/cados_web/core/block.rb | 1 + .../src/cados_web/core/block_list_translator.rb | 1 + server/src/cados_web/core/code_file.rb | 1 + .../src/cados_web/core/preorder_block_list.rb | 1 + server/src/cados_web/core/report.rb | 1 + server/src/cados_web/cpp_definitions_reader.rb | 1 + server/src/cados_web/exceptions.rb | 1 + server/src/cados_web/generators_collector.rb | 1 + server/src/cados_web/git_file_id.rb | 1 + server/src/cados_web/git_path.rb | 1 + server/src/cados_web/header_scanner.rb | 1 + .../cados_web/html/block_based_embellisher.rb | 1 + .../cados_web/html/block_boxes_embellisher.rb | 1 + .../cados_web/html/block_spans_embellisher.rb | 1 + .../cados_web/html/boundary_bars_embellisher.rb | 1 + .../src/cados_web/html/breadcrumb_generator.rb | 1 + .../src/cados_web/html/code_bars_embellisher.rb | 1 + .../html/cpp_symbol_shortcuts_embellisher.rb | 1 + .../html/defect_details_embellisher.rb | 1 + .../src/cados_web/html/empty_lines_generator.rb | 1 + .../src/cados_web/html/file_view_generator.rb | 1 + .../src/cados_web/html/folder_view_generator.rb | 1 + .../html/highlighting_html_generator.rb | 1 + .../html/line_number_ids_embellisher.rb | 1 + .../cados_web/html/line_numbers_generator.rb | 1 + .../src/cados_web/html/repos_links_generator.rb | 1 + server/src/cados_web/html/spans_aware_output.rb | 1 + server/src/cados_web/mongodb_connection.rb | 1 + server/src/cados_web/reports_reader.rb | 1 + server/src/cados_web/undertaker_runner.rb | 1 + server/src/server.rb | 1 + .../caching_file_info_provider_test.rb | 1 + .../core/block_list_translator_test.rb | 1 + .../cados_web/core/preorder_block_list_test.rb | 1 + .../cados_web/cpp_definitions_reader_test.rb | 1 + .../test/cados_web/generators_collector_test.rb | 1 + server/test/cados_web/git_file_id_test.rb | 1 + .../html/block_spans_embellisher_test.rb | 1 + .../html/highlighting_html_generator_test.rb | 1 + server/test/cados_web/reports_reader_test.rb | 1 + server/test/cados_web/undertaker_runner_test.rb | 1 + server/test/spec/serverspec.rb | 1 + server/test/test_util.rb | 1 + 46 files changed, 62 insertions(+) diff --git a/README.md b/README.md index dc726f8..26c75d8 100644 --- a/README.md +++ b/README.md @@ -50,3 +50,20 @@ The script reads the address of the MongoDB server from $ bundle exec rake 'drop_database[/path/to/server/dir, 456fdb267377b88fa37abf60fcbd9bfaa813bf1f]' ``` drops only data belonging to the commit 456fdb267377b88fa37abf60fcbd9bfaa813bf1f. + +LICENSE +============ +Copyright 2016 Patrick Plagwitz. + +Wundertaker is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Wundertaker is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Wundertaker. If not, see <http://www.gnu.org/licenses/>. diff --git a/server/src/cados_web/caching_file_info_provider.rb b/server/src/cados_web/caching_file_info_provider.rb index 0f543ea..287bb7e 100644 --- a/server/src/cados_web/caching_file_info_provider.rb +++ b/server/src/cados_web/caching_file_info_provider.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/config_file_reader.rb b/server/src/cados_web/config_file_reader.rb index 652c77c..77bf85c 100644 --- a/server/src/cados_web/config_file_reader.rb +++ b/server/src/cados_web/config_file_reader.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/core/block.rb b/server/src/cados_web/core/block.rb index 5ed8a15..a8b2f53 100644 --- a/server/src/cados_web/core/block.rb +++ b/server/src/cados_web/core/block.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/core/block_list_translator.rb b/server/src/cados_web/core/block_list_translator.rb index f011e49..df64019 100644 --- a/server/src/cados_web/core/block_list_translator.rb +++ b/server/src/cados_web/core/block_list_translator.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/core/code_file.rb b/server/src/cados_web/core/code_file.rb index 6aa75cc..7153238 100644 --- a/server/src/cados_web/core/code_file.rb +++ b/server/src/cados_web/core/code_file.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/core/preorder_block_list.rb b/server/src/cados_web/core/preorder_block_list.rb index 9edbb17..3770ce6 100644 --- a/server/src/cados_web/core/preorder_block_list.rb +++ b/server/src/cados_web/core/preorder_block_list.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/core/report.rb b/server/src/cados_web/core/report.rb index 54abaab..9f7987d 100644 --- a/server/src/cados_web/core/report.rb +++ b/server/src/cados_web/core/report.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/cpp_definitions_reader.rb b/server/src/cados_web/cpp_definitions_reader.rb index cfb485b..88188bb 100644 --- a/server/src/cados_web/cpp_definitions_reader.rb +++ b/server/src/cados_web/cpp_definitions_reader.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/exceptions.rb b/server/src/cados_web/exceptions.rb index bfa3b75..7af9cb5 100644 --- a/server/src/cados_web/exceptions.rb +++ b/server/src/cados_web/exceptions.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/generators_collector.rb b/server/src/cados_web/generators_collector.rb index 6e3f73c..75b863b 100644 --- a/server/src/cados_web/generators_collector.rb +++ b/server/src/cados_web/generators_collector.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/git_file_id.rb b/server/src/cados_web/git_file_id.rb index 311862a..7e4d71a 100644 --- a/server/src/cados_web/git_file_id.rb +++ b/server/src/cados_web/git_file_id.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/git_path.rb b/server/src/cados_web/git_path.rb index 3c53aa5..2a3fd8e 100644 --- a/server/src/cados_web/git_path.rb +++ b/server/src/cados_web/git_path.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/header_scanner.rb b/server/src/cados_web/header_scanner.rb index 6a639d5..cad46a0 100644 --- a/server/src/cados_web/header_scanner.rb +++ b/server/src/cados_web/header_scanner.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/block_based_embellisher.rb b/server/src/cados_web/html/block_based_embellisher.rb index 005ecf8..7352f36 100644 --- a/server/src/cados_web/html/block_based_embellisher.rb +++ b/server/src/cados_web/html/block_based_embellisher.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/block_boxes_embellisher.rb b/server/src/cados_web/html/block_boxes_embellisher.rb index dd5d89b..54f56e9 100644 --- a/server/src/cados_web/html/block_boxes_embellisher.rb +++ b/server/src/cados_web/html/block_boxes_embellisher.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/block_spans_embellisher.rb b/server/src/cados_web/html/block_spans_embellisher.rb index 0e87cb3..bafe8c9 100644 --- a/server/src/cados_web/html/block_spans_embellisher.rb +++ b/server/src/cados_web/html/block_spans_embellisher.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/boundary_bars_embellisher.rb b/server/src/cados_web/html/boundary_bars_embellisher.rb index ea46b34..b74e0ae 100644 --- a/server/src/cados_web/html/boundary_bars_embellisher.rb +++ b/server/src/cados_web/html/boundary_bars_embellisher.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/breadcrumb_generator.rb b/server/src/cados_web/html/breadcrumb_generator.rb index f8ff838..1c7e4a9 100644 --- a/server/src/cados_web/html/breadcrumb_generator.rb +++ b/server/src/cados_web/html/breadcrumb_generator.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/code_bars_embellisher.rb b/server/src/cados_web/html/code_bars_embellisher.rb index 9375354..5bc5523 100644 --- a/server/src/cados_web/html/code_bars_embellisher.rb +++ b/server/src/cados_web/html/code_bars_embellisher.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/cpp_symbol_shortcuts_embellisher.rb b/server/src/cados_web/html/cpp_symbol_shortcuts_embellisher.rb index 4f2a2c9..14389f7 100644 --- a/server/src/cados_web/html/cpp_symbol_shortcuts_embellisher.rb +++ b/server/src/cados_web/html/cpp_symbol_shortcuts_embellisher.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/defect_details_embellisher.rb b/server/src/cados_web/html/defect_details_embellisher.rb index f3a3f72..5deaff2 100644 --- a/server/src/cados_web/html/defect_details_embellisher.rb +++ b/server/src/cados_web/html/defect_details_embellisher.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/empty_lines_generator.rb b/server/src/cados_web/html/empty_lines_generator.rb index a3c68ba..8851d34 100644 --- a/server/src/cados_web/html/empty_lines_generator.rb +++ b/server/src/cados_web/html/empty_lines_generator.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/file_view_generator.rb b/server/src/cados_web/html/file_view_generator.rb index 6cdad62..0f2f7b4 100644 --- a/server/src/cados_web/html/file_view_generator.rb +++ b/server/src/cados_web/html/file_view_generator.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/folder_view_generator.rb b/server/src/cados_web/html/folder_view_generator.rb index d5e3e5e..91527f0 100644 --- a/server/src/cados_web/html/folder_view_generator.rb +++ b/server/src/cados_web/html/folder_view_generator.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/highlighting_html_generator.rb b/server/src/cados_web/html/highlighting_html_generator.rb index dbf890b..5ee1296 100644 --- a/server/src/cados_web/html/highlighting_html_generator.rb +++ b/server/src/cados_web/html/highlighting_html_generator.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/line_number_ids_embellisher.rb b/server/src/cados_web/html/line_number_ids_embellisher.rb index 686a0fa..2ea0037 100644 --- a/server/src/cados_web/html/line_number_ids_embellisher.rb +++ b/server/src/cados_web/html/line_number_ids_embellisher.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/line_numbers_generator.rb b/server/src/cados_web/html/line_numbers_generator.rb index 9a384fe..65c2d18 100644 --- a/server/src/cados_web/html/line_numbers_generator.rb +++ b/server/src/cados_web/html/line_numbers_generator.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/repos_links_generator.rb b/server/src/cados_web/html/repos_links_generator.rb index b53057a..0e334bc 100644 --- a/server/src/cados_web/html/repos_links_generator.rb +++ b/server/src/cados_web/html/repos_links_generator.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/html/spans_aware_output.rb b/server/src/cados_web/html/spans_aware_output.rb index 18a692d..f1c7861 100644 --- a/server/src/cados_web/html/spans_aware_output.rb +++ b/server/src/cados_web/html/spans_aware_output.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/mongodb_connection.rb b/server/src/cados_web/mongodb_connection.rb index 541b644..0f8c210 100644 --- a/server/src/cados_web/mongodb_connection.rb +++ b/server/src/cados_web/mongodb_connection.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/reports_reader.rb b/server/src/cados_web/reports_reader.rb index c343494..98911c6 100644 --- a/server/src/cados_web/reports_reader.rb +++ b/server/src/cados_web/reports_reader.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/cados_web/undertaker_runner.rb b/server/src/cados_web/undertaker_runner.rb index adb0462..e519505 100644 --- a/server/src/cados_web/undertaker_runner.rb +++ b/server/src/cados_web/undertaker_runner.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/src/server.rb b/server/src/server.rb index 891bad5..429e61e 100644 --- a/server/src/server.rb +++ b/server/src/server.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/caching_file_info_provider_test.rb b/server/test/cados_web/caching_file_info_provider_test.rb index f7bbc3b..f0d8874 100644 --- a/server/test/cados_web/caching_file_info_provider_test.rb +++ b/server/test/cados_web/caching_file_info_provider_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/core/block_list_translator_test.rb b/server/test/cados_web/core/block_list_translator_test.rb index e0682cc..a7fc704 100644 --- a/server/test/cados_web/core/block_list_translator_test.rb +++ b/server/test/cados_web/core/block_list_translator_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/core/preorder_block_list_test.rb b/server/test/cados_web/core/preorder_block_list_test.rb index b304a51..fc235a9 100644 --- a/server/test/cados_web/core/preorder_block_list_test.rb +++ b/server/test/cados_web/core/preorder_block_list_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/cpp_definitions_reader_test.rb b/server/test/cados_web/cpp_definitions_reader_test.rb index 91de02b..80a303f 100644 --- a/server/test/cados_web/cpp_definitions_reader_test.rb +++ b/server/test/cados_web/cpp_definitions_reader_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/generators_collector_test.rb b/server/test/cados_web/generators_collector_test.rb index 03cb206..a341092 100644 --- a/server/test/cados_web/generators_collector_test.rb +++ b/server/test/cados_web/generators_collector_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/git_file_id_test.rb b/server/test/cados_web/git_file_id_test.rb index 59a6090..b1570f4 100644 --- a/server/test/cados_web/git_file_id_test.rb +++ b/server/test/cados_web/git_file_id_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/html/block_spans_embellisher_test.rb b/server/test/cados_web/html/block_spans_embellisher_test.rb index 968b2a1..52e5868 100644 --- a/server/test/cados_web/html/block_spans_embellisher_test.rb +++ b/server/test/cados_web/html/block_spans_embellisher_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/html/highlighting_html_generator_test.rb b/server/test/cados_web/html/highlighting_html_generator_test.rb index 3e66d10..87922b8 100644 --- a/server/test/cados_web/html/highlighting_html_generator_test.rb +++ b/server/test/cados_web/html/highlighting_html_generator_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/reports_reader_test.rb b/server/test/cados_web/reports_reader_test.rb index 0cb2d7b..336980c 100644 --- a/server/test/cados_web/reports_reader_test.rb +++ b/server/test/cados_web/reports_reader_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/cados_web/undertaker_runner_test.rb b/server/test/cados_web/undertaker_runner_test.rb index fd587d8..289d10a 100644 --- a/server/test/cados_web/undertaker_runner_test.rb +++ b/server/test/cados_web/undertaker_runner_test.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/spec/serverspec.rb b/server/test/spec/serverspec.rb index 43de66d..a3f8ec0 100644 --- a/server/test/spec/serverspec.rb +++ b/server/test/spec/serverspec.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/server/test/test_util.rb b/server/test/test_util.rb index e7c4746..a8e4b4e 100644 --- a/server/test/test_util.rb +++ b/server/test/test_util.rb @@ -1,4 +1,5 @@ # This file is part of Wundertaker. +# Copyright 2016 Patrick Plagwitz # # Wundertaker is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -- GitLab