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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Sizov <valery@gitlab.com>2016-12-09 18:25:42 +0300
committerValery Sizov <valery@gitlab.com>2016-12-09 18:25:45 +0300
commitcc30a9f7ed436fd906c1e24a195414f2f84ee61c (patch)
tree8cefaf72a027bbc67e2c94c186853d11c81d2065 /lib/gitlab/bitbucket_import
parent858ec6048223f2eec8c1386d33e3a6c5827233cb (diff)
Fix rubocop[ci skip]
Diffstat (limited to 'lib/gitlab/bitbucket_import')
-rw-r--r--lib/gitlab/bitbucket_import/importer.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/bitbucket_import/importer.rb b/lib/gitlab/bitbucket_import/importer.rb
index 8852f5b0f3f..e00a90da980 100644
--- a/lib/gitlab/bitbucket_import/importer.rb
+++ b/lib/gitlab/bitbucket_import/importer.rb
@@ -1,10 +1,10 @@
module Gitlab
module BitbucketImport
class Importer
- LABELS = [{ title: 'bug', color: '#FF0000'},
- { title: 'enhancement', color: '#428BCA'},
- { title: 'proposal', color: '#69D100'},
- { title: 'task', color: '#7F8C8D'}].freeze
+ LABELS = [{ title: 'bug', color: '#FF0000' },
+ { title: 'enhancement', color: '#428BCA' },
+ { title: 'proposal', color: '#69D100' },
+ { title: 'task', color: '#7F8C8D' }].freeze
attr_reader :project, :client