No commit activity in last 3 years
No release in over 3 years
Take screenshots of your Dashing dashboards.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 0

Runtime

 Project Readme

Dashing::Screenshots

So you have a bunch of Dashing dashboards and want a screenshot of all of them? You've come to right place.

Setup

  • Add this gem to your gem file.
  • Make a Rakefile if you don't have more
namespace :dashing do
  desc "takes screenshots"
  task :screenshots do
    require 'dashing-screenshots'
    Dashing::Screenshot.new("screenshots", log: true).capture!
  end
end

Run it

Run bundle exec rake dashing:screenshots

It will pop up Firefox and take some pictures. It will save them in the directory you specified. The given code would save them within your project. You can also give an absolute path to put them anywhere on the system.

Example