diff options
author | Go MAEDA <maeda@farend.jp> | 2019-06-13 07:24:49 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-06-13 07:24:49 +0000 |
commit | 7b40cac9ea99be25c7865279eb49a0e186a2d347 (patch) | |
tree | 2216a52a28d8a49c6b4f0cc4848a5d0d6da8caf2 /lib/generators/redmine_plugin_migration | |
parent | 8955ad72f4407791132d09daf220f8dfef9781b8 (diff) | |
download | redmine-7b40cac9ea99be25c7865279eb49a0e186a2d347.tar.gz redmine-7b40cac9ea99be25c7865279eb49a0e186a2d347.zip |
Add missing frozen string literals and copyrights (#31508).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18255 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/generators/redmine_plugin_migration')
-rw-r--r-- | lib/generators/redmine_plugin_migration/redmine_plugin_migration_generator.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/generators/redmine_plugin_migration/redmine_plugin_migration_generator.rb b/lib/generators/redmine_plugin_migration/redmine_plugin_migration_generator.rb index ed3d87506..2926cf0ff 100644 --- a/lib/generators/redmine_plugin_migration/redmine_plugin_migration_generator.rb +++ b/lib/generators/redmine_plugin_migration/redmine_plugin_migration_generator.rb @@ -1,3 +1,22 @@ +# frozen_string_literal: true + +# Redmine - project management software +# Copyright (C) 2006-2019 Jean-Philippe Lang +# +# This program 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 2 +# of the License, or (at your option) any later version. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + class RedminePluginMigrationGenerator < Rails::Generators::NamedBase include Rails::Generators::Migration |