Displaying 1 result from an estimated 1 matches for "450x".
Did you mean:
450
2009 Aug 17
0
Paperclip: processor proc not firing
...:00
convert_options: {}
...
:processors: &id001 !ruby/object:Proc {}
For clarification, my Paperclip method in the model:
has_attached_file :asset,
:styles => { :full => "1920x1080", :medium =>
["205x154", :png], :large => ["450x",:png] },
:default_style => :full,
:url => "/
uploads/:attachment/:id/:style.:content_type_extension",
:processors => lambda { |a| a.video? ?
[ :video_thumbnail ] : [ :thumbnail ] }
I''m completely s...