https://github.com/taskrabbit/dashing-screenshots
Record your dashboard
https://github.com/taskrabbit/dashing-screenshots
Last synced: 10 days ago
JSON representation
Record your dashboard
- Host: GitHub
- URL: https://github.com/taskrabbit/dashing-screenshots
- Owner: taskrabbit
- License: mit
- Created: 2015-02-03T18:40:56.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-06T00:15:37.000Z (about 11 years ago)
- Last Synced: 2025-11-30T21:41:37.921Z (4 months ago)
- Language: Ruby
- Size: 297 KB
- Stars: 6
- Watchers: 9
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Dashing::Screenshots
So you have a bunch of [Dashing](http://dashing.io/) 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
```ruby
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.
