mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
Fix Style/StringLiteralsInInterpolation
This commit is contained in:
parent
8980f08d0e
commit
61f6fddd08
2 changed files with 1 additions and 8 deletions
|
@ -342,10 +342,3 @@ Style/SpaceInsideParens:
|
|||
# SupportedStyles: use_perl_names, use_english_names
|
||||
Style/SpecialGlobalVars:
|
||||
Enabled: false
|
||||
|
||||
# Offense count: 1
|
||||
# Cop supports --auto-correct.
|
||||
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
||||
# SupportedStyles: single_quotes, double_quotes
|
||||
Style/StringLiteralsInInterpolation:
|
||||
Enabled: false
|
||||
|
|
2
Rakefile
2
Rakefile
|
@ -4,7 +4,7 @@ Bundler::GemHelper.install_tasks
|
|||
desc "Set a relevant database.yml for testing"
|
||||
task :prepare do
|
||||
ENV["DB"] ||= "sqlite"
|
||||
FileUtils.cp "test/dummy/config/database.#{ENV["DB"]}.yml", "test/dummy/config/database.yml"
|
||||
FileUtils.cp "test/dummy/config/database.#{ENV['DB']}.yml", "test/dummy/config/database.yml"
|
||||
end
|
||||
|
||||
require "rake/testtask"
|
||||
|
|
Loading…
Reference in a new issue