Method: Frameit::Screenshot#frame!

Defined in:
lib/frameit/screenshot.rb

#frame!Object

Add the device frame, this will also call the method that adds the background + title



81
82
83
84
85
86
87
# File 'lib/frameit/screenshot.rb', line 81

def frame!
  if self.mac?
    MacEditor.new.frame!(self)
  else
    Editor.new.frame!(self)
  end
end