4

I've specified

gem 'haml'
gem 'rdiscount'

in my Gemfile and ran bundle install

The relevant code is

.welcome-message
  :markdown
    Welcome **#{current_user.email}**

When I access the page I get

Can't run Markdown filter; required 'rdiscount' or 'peg_markdown' or 'maruku' or 'bluecloth', but none were found

I'm using rails 3.0.5, what am I missing?

Vadim
  • 17,897
  • 4
  • 38
  • 62

1 Answers1

21

Turns out I'm an idiot. All that was needed was to restart the server. Carry on everyone.

Vadim
  • 17,897
  • 4
  • 38
  • 62
  • 1
    Yeah, got same problem with gem recently, reinstalled it 5 times before restarting the server :) – methyl Mar 24 '11 at 20:21
  • 1
    @vadim I keep remembering and forgetting, and you reminded me again :) – Daniel May Sep 08 '12 at 21:30
  • 1
    Turns out there are at least nine other idiots out there. Honored to be part of the club! –  Nov 19 '12 at 20:37
  • 1
    Working in IT support apparently taught me nothing. I have StackOverflow open faster than I can say _"try turning it off and on again"_. – lime Aug 02 '13 at 14:51