Welcome to mirror list, hosted at ThFree Co, Russian Federation.

flay.rake « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9587595fef45e9f4840cdc251381557af2801d6 (plain)
1
2
3
4
5
6
7
8
9
desc 'Code duplication analyze via flay'
task :flay do
  output = %x(bundle exec flay --mass 35 app/ lib/gitlab/)

  if output.include? "Similar code found"
    puts output
    exit 1
  end
end