Skip to content

Commit

Permalink
Fallback on RMagick instead of rmagick
Browse files Browse the repository at this point in the history
RMagick and BlueCloth must die!
  • Loading branch information
jnicklas committed May 6, 2009
1 parent a77790f commit 5bb0e42
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/carrierwave/processing/rmagick.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
require 'rmagick'
begin
require 'rmagick'
rescue LoadError
require 'RMagick'
end

module CarrierWave

Expand Down

0 comments on commit 5bb0e42

Please sign in to comment.