public
Description: Rails plugin for uploading images as resources, with support for resizing, text stamping, and other special effects.
Homepage: http://wiki.github.com/Squeegy/fleximage
Clone URL: git://github.com/Squeegy/fleximage.git
Fixed misnamed Exception class
Squeegy (author)
Mon Apr 21 11:16:24 -0700 2008
commit  7f3d9281c2bff7ccb76bffa340f7bf64f23298ae
tree    b08e588cb938d8e25a6613c6c723ac993cc2bc60
parent  371b930be0ae30dd1b4c911bb1ece4a3cd0ece57
...
11
12
13
14
 
15
16
17
...
35
36
37
38
 
39
40
41
...
11
12
13
 
14
15
16
17
...
35
36
37
 
38
39
40
41
0
@@ -11,7 +11,7 @@ module Fleximage
0
   # In this example, +image+ is an instance of ImageProxy
0
   class ImageProxy
0
     
0
-    class OepratorNotFound < NameError #:nodoc:
0
+    class OperatorNotFound < NameError #:nodoc:
0
     end
0
     
0
     # The image to be manipulated by operators.
0
@@ -35,7 +35,7 @@ module Fleximage
0
     
0
     rescue NameError => e
0
       if e.to_s =~ /uninitialized constant Fleximage::Operator::#{class_name}/
0
-        raise OepratorNotFound, "No operator Fleximage::Operator::#{class_name} found for the method \"#{method_name}\""
0
+        raise OperatorNotFound, "No operator Fleximage::Operator::#{class_name} found for the method \"#{method_name}\""
0
       else
0
         raise e
0
       end

Comments