diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-11-16 13:05:49 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-11-16 13:05:49 +0000 |
commit | 1328e4b504773ff98d716fd561dbc50fd7652a36 (patch) | |
tree | d8889a1e09412b77b21e841b1262bd6589970cf2 /lib | |
parent | b736a7b15e0a113da72541b8d4f60bd6e0adfb35 (diff) | |
parent | c9f2f2a4838f9aa49782acdb7cfad75d06f31ac2 (diff) | |
download | gitlab-ce-1328e4b504773ff98d716fd561dbc50fd7652a36.tar.gz |
Merge branch 'refactor-duplication' into 'master'
Remove some code duplication
* remove duplicate code in uploaders
* remove duplicate code in NotificationHelper
* remove duplicate code in Repository
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
See merge request !1800
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/flay.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/flay.rake b/lib/tasks/flay.rake index 5efffc2cdac..dfb9df4772a 100644 --- a/lib/tasks/flay.rake +++ b/lib/tasks/flay.rake @@ -1,6 +1,6 @@ desc 'Code duplication analyze via flay' task :flay do - output = %x(bundle exec flay app/ lib/gitlab/) + output = %x(bundle exec flay --mass 30 app/ lib/gitlab/) if output.include? "Similar code found" puts output |