Class: Pathname

Inherits:
Object
  • Object
show all
Defined in:
lib/servel/core_ext/pathname.rb

Instance Method Summary collapse

Instance Method Details

#image?Boolean

Returns:

  • (Boolean)


2
3
4
# File 'lib/servel/core_ext/pathname.rb', line 2

def image?
  file? && extname && %w(.jpg .jpeg .png .gif).include?(extname.downcase)
end