Skip to content

Instantly share code, notes, and snippets.

@HeroicEric
Created October 31, 2011 19:28
Show Gist options
  • Select an option

  • Save HeroicEric/1328596 to your computer and use it in GitHub Desktop.

Select an option

Save HeroicEric/1328596 to your computer and use it in GitHub Desktop.
class Screenshot
include DataMapper::Resource
property :id, Serial
has n, :interactions
def generate_png
snap = WebSnap::Snapper.new('http://google.com', :format => 'png')
file = snap.to_file("app/assets/images/screenshots/#{self.id}.png")
end
def path_to_png
"/images/screenshots/#{self.id}.png"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment