gitextract_5ra_d6aq/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── bin/ │ └── dashing ├── dashing.gemspec ├── javascripts/ │ ├── batman.jquery.js │ ├── batman.js │ ├── dashing.coffee │ ├── es5-shim.js │ └── jquery.js ├── lib/ │ ├── dashing/ │ │ ├── app.rb │ │ ├── cli.rb │ │ └── downloader.rb │ └── dashing.rb ├── shipit.rubygems.yml ├── templates/ │ ├── dashboard/ │ │ └── %name%.erb.tt │ ├── job/ │ │ └── %name%.rb │ ├── project/ │ │ ├── .gitignore │ │ ├── Gemfile │ │ ├── README.md │ │ ├── assets/ │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── javascripts/ │ │ │ │ ├── application.coffee │ │ │ │ ├── d3-3.2.8.js │ │ │ │ ├── dashing.gridster.coffee │ │ │ │ └── jquery.knob.js │ │ │ └── stylesheets/ │ │ │ ├── application.scss │ │ │ └── font-awesome.css │ │ ├── config.ru │ │ ├── dashboards/ │ │ │ ├── layout.erb │ │ │ ├── sample.erb │ │ │ └── sampletv.erb │ │ ├── jobs/ │ │ │ ├── buzzwords.rb │ │ │ ├── convergence.rb │ │ │ ├── sample.rb │ │ │ └── twitter.rb │ │ ├── lib/ │ │ │ └── .empty_directory │ │ ├── public/ │ │ │ └── 404.html │ │ └── widgets/ │ │ ├── clock/ │ │ │ ├── clock.coffee │ │ │ ├── clock.html │ │ │ └── clock.scss │ │ ├── comments/ │ │ │ ├── comments.coffee │ │ │ ├── comments.html │ │ │ └── comments.scss │ │ ├── graph/ │ │ │ ├── graph.coffee │ │ │ ├── graph.html │ │ │ └── graph.scss │ │ ├── iframe/ │ │ │ ├── iframe.coffee │ │ │ ├── iframe.html │ │ │ └── iframe.scss │ │ ├── image/ │ │ │ ├── image.coffee │ │ │ ├── image.html │ │ │ └── image.scss │ │ ├── list/ │ │ │ ├── list.coffee │ │ │ ├── list.html │ │ │ └── list.scss │ │ ├── meter/ │ │ │ ├── meter.coffee │ │ │ ├── meter.html │ │ │ └── meter.scss │ │ ├── number/ │ │ │ ├── number.coffee │ │ │ ├── number.html │ │ │ └── number.scss │ │ └── text/ │ │ ├── text.coffee │ │ ├── text.html │ │ └── text.scss │ └── widget/ │ └── %name%/ │ ├── %name%.coffee.tt │ ├── %name%.html │ └── %name%.scss.tt └── test/ ├── app_test.rb ├── cli_test.rb ├── downloader_test.rb └── test_helper.rb