summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-03-20 15:00:58 +0000
committerPhil Hughes <me@iamphill.com>2018-03-20 15:00:58 +0000
commite8b85811ab91aea8b2eed325cfdaac16b347b302 (patch)
treee6f9f5858947c41e9d0da20d576556db24208c49
parent82dbb903cb697a628ccdf75860b34c8d87baa7e3 (diff)
downloadgitlab-ce-e8b85811ab91aea8b2eed325cfdaac16b347b302.tar.gz
remove un-used IDE helper module
-rw-r--r--app/helpers/ide_helper.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/helpers/ide_helper.rb b/app/helpers/ide_helper.rb
deleted file mode 100644
index f090ae71269..00000000000
--- a/app/helpers/ide_helper.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-module IdeHelper
- def ide_edit_button(project = @project, ref = @ref, path = @path, options = {})
- return unless blob = readable_blob(options, path, project, ref)
-
- common_classes = "btn js-edit-ide #{options[:extra_class]}"
-
- edit_button_tag(blob,
- common_classes,
- _('Web IDE'),
- ide_edit_path(project, ref, path, options),
- project,
- ref)
- end
-end