Sha256: e8b5261efb8148bbcc60f665b4c557a58e060856ff350412d8937ebc5f2a5129

Contents?: true

Size: 186 Bytes

Versions: 3

Compression:

Stored size: 186 Bytes

Contents

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

  def hidden?
    basename.to_s[0..0] == "."
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mangos-0.3 lib/mangos/decorated_pathname.rb
mangos-0.2 lib/mangos/decorated_pathname.rb
mangos-0.1 lib/mangos/decorated_pathname.rb