Commit 2ddb19170624f81ec0cb3da26805a5515878aede

Authored by Robert Speicher
1 parent 6ddb35bd

Require 'github/markup' in Gemfile

Showing 2 changed files with 1 additions and 3 deletions   Show diff stats
Gemfile
... ... @@ -57,7 +57,7 @@ gem "seed-fu"
57 57  
58 58 # Markdown to HTML
59 59 gem "redcarpet", "~> 2.1.1"
60   -gem "github-markup", "~> 0.7.4"
  60 +gem "github-markup", "~> 0.7.4", require: 'github/markup'
61 61  
62 62 # Servers
63 63 gem "thin"
... ...
app/controllers/refs_controller.rb
1   -require 'github/markup'
2   -
3 1 class RefsController < ApplicationController
4 2 include Gitlab::Encode
5 3 before_filter :project
... ...