Skip to content

Instantly share code, notes, and snippets.

@workmad3
Forked from anonymous/gist:796581
Created January 26, 2011 11:31
Show Gist options
  • Save workmad3/796583 to your computer and use it in GitHub Desktop.
Save workmad3/796583 to your computer and use it in GitHub Desktop.
require 'uri'
...
def image?
['.jpg', '.jpeg'].include?(file_type)
end
def file_type
@file_type ||= File.extname(URI.parse(self).path).downcase
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment