Guest User

Untitled

a guest
Apr 24th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. has_attached_file :source, :styles => { :thumb => "100x100#" }
  2. before_post_process :is_image?
  3. def is_image?
  4. !(source_content_type =~ /^image/).nil?
  5. end
Add Comment
Please, Sign In to add comment