Unify flay.rake and gettext.rake from EE
This commit is contained in:
parent
40a66cb550
commit
582c6b17cf
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
desc 'Code duplication analyze via flay'
|
||||
task :flay do
|
||||
output = `bundle exec flay --mass 35 app/ lib/gitlab/ 2> #{File::NULL}`
|
||||
output = `bundle exec flay --mass 35 app/ lib/gitlab/ ee/ 2> #{File::NULL}`
|
||||
|
||||
if output.include?("Similar code found") || output.include?("IDENTICAL code found")
|
||||
puts output
|
||||
|
|
|
@ -4,7 +4,7 @@ namespace :gettext do
|
|||
# Customize list of translatable files
|
||||
# See: https://github.com/grosser/gettext_i18n_rails#customizing-list-of-translatable-files
|
||||
def files_to_translate
|
||||
folders = %W(app lib config #{locale_path}).join(',')
|
||||
folders = %W(ee app lib config #{locale_path}).join(',')
|
||||
exts = %w(rb erb haml slim rhtml js jsx vue handlebars hbs mustache).join(',')
|
||||
|
||||
Dir.glob(
|
||||
|
|
Loading…
Reference in a new issue