class AllTheFavicons::Apple

Public Class Methods

all() click to toggle source
# File lib/all_the_favicons/apple.rb, line 4
def all
  files(/^apple-.*/).map { |f| icon(f) }
end
default_size() click to toggle source
# File lib/all_the_favicons/apple.rb, line 8
def default_size
  Vector2d.new(180, 180)
end
pinned_tab_icon() click to toggle source
# File lib/all_the_favicons/apple.rb, line 12
def pinned_tab_icon
  files(/^safari-pinned-tab/).first
end
pinned_tab_icon?() click to toggle source
# File lib/all_the_favicons/apple.rb, line 16
def pinned_tab_icon?
  pinned_tab_icon ? true : false
end