I've just frozen my Rails (2.3.2) application together with RedCloth (4.2.2) and deployed it to my shared hosting environment.
When running the application I get an error saying another version of RedCloth is already activated (4.2.2) when trying to load an older version.
I reckon this problem is because the hosting environment has an older version of RedCloth installed which Rails tries to activate in ActionView. How do I get Rails to not activate the old RedCloth gem and instead use the newer version supplied with my application?
I've already added the necessary config-code to my environment.rb-file (I think).