mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Use frozen string literal in tools/
This commit is contained in:
parent
ef2016f888
commit
7d85e0f95c
4 changed files with 7 additions and 0 deletions
|
@ -94,6 +94,7 @@ Style/FrozenStringLiteralComment:
|
|||
- 'actionpack/**/*'
|
||||
- 'guides/**/*'
|
||||
- 'tasks/**/*'
|
||||
- 'tools/**/*'
|
||||
Exclude:
|
||||
- 'actionview/test/**/*.builder'
|
||||
- 'actionview/test/**/*.ruby'
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#!/usr/bin/env ruby
|
||||
# frozen_string_literal: true
|
||||
|
||||
require "bundler"
|
||||
Bundler.setup
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#!/usr/bin/env ruby
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Profile require calls giving information about the time and the files that are called
|
||||
# when loading the provided file.
|
||||
#
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
$: << File.expand_path("test", COMPONENT_ROOT)
|
||||
|
||||
require "bundler"
|
||||
|
|
Loading…
Reference in a new issue