diff options
author | Go MAEDA <maeda@farend.jp> | 2019-03-21 06:06:53 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-03-21 06:06:53 +0000 |
commit | 3b55f654077dfb7b4764eafa52579a83bd22152f (patch) | |
tree | f54f71952c75bfc3077d8f8cf1b2fc556eaaadf2 /bin | |
parent | b900ae6107666deb601753eaa7abab0b299c006d (diff) | |
download | redmine-3b55f654077dfb7b4764eafa52579a83bd22152f.tar.gz redmine-3b55f654077dfb7b4764eafa52579a83bd22152f.zip |
Remove frozen_string_literal magic comment from files which are not used when running the application or tests (#23630).
git-svn-id: http://svn.redmine.org/redmine/trunk@17997 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/about | 1 | ||||
-rwxr-xr-x | bin/bundle | 1 | ||||
-rw-r--r-- | bin/changelog.rb | 2 | ||||
-rwxr-xr-x | bin/rails | 2 | ||||
-rwxr-xr-x | bin/rake | 2 |
5 files changed, 0 insertions, 8 deletions
@@ -1,5 +1,4 @@ #!/usr/bin/env ruby -# frozen_string_literal: false ENV["RAILS_ENV"] ||= "production" require File.expand_path(File.dirname(__FILE__) + "/../config/environment") diff --git a/bin/bundle b/bin/bundle index 96e725c20..a169c9da9 100755 --- a/bin/bundle +++ b/bin/bundle @@ -1,5 +1,4 @@ #!/usr/bin/env ruby -# frozen_string_literal: false ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) load Gem.bin_path('bundler', 'bundle') diff --git a/bin/changelog.rb b/bin/changelog.rb index 36c11f458..7862f21eb 100644 --- a/bin/changelog.rb +++ b/bin/changelog.rb @@ -1,6 +1,4 @@ #!/usr/bin/env ruby -# frozen_string_literal: false - require 'optparse' require 'ostruct' require 'date' @@ -1,6 +1,4 @@ #!/usr/bin/env ruby -# frozen_string_literal: false - APP_PATH = File.expand_path('../../config/application', __FILE__) require_relative '../config/boot' require 'rails/commands' @@ -1,6 +1,4 @@ #!/usr/bin/env ruby -# frozen_string_literal: false - require_relative '../config/boot' require 'rake' Rake.application.run |