├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── javascripts │ │ └── dashing │ │ │ ├── application.js │ │ │ └── dashing.coffee │ └── stylesheets │ │ └── dashing │ │ └── application.css ├── controllers │ └── dashing │ │ ├── application_controller.rb │ │ ├── dashboards_controller.rb │ │ ├── events_controller.rb │ │ └── widgets_controller.rb ├── helpers │ └── dashing │ │ └── application_helper.rb └── views │ ├── dashing │ └── widgets │ │ ├── clock.html │ │ ├── comments.html │ │ ├── graph.html │ │ ├── iframe.html │ │ ├── image.html │ │ ├── list.html │ │ ├── meter.html │ │ ├── number.html │ │ └── text.html │ └── layouts │ └── dashing │ └── dashboard.html.erb ├── bin └── rails ├── config └── routes.rb ├── dashing.gemspec ├── lib ├── assets │ └── javascripts │ │ └── dashing.gridster.coffee ├── dashing-rails.rb ├── dashing.rb ├── dashing │ ├── configuration.rb │ ├── engine.rb │ ├── railtie.rb │ └── version.rb ├── generators │ ├── dashing │ │ ├── install_generator.rb │ │ ├── job_generator.rb │ │ └── widget_generator.rb │ └── templates │ │ ├── dashboards │ │ └── sample.html.erb │ │ ├── initializer.rb │ │ ├── jobs │ │ ├── new.rb │ │ └── sample.rb │ │ ├── layouts │ │ └── dashboard.html.erb │ │ └── widgets │ │ ├── index.css │ │ ├── index.js │ │ ├── new.coffee │ │ ├── new.html │ │ └── new.scss └── tasks │ └── dashing_tasks.rake ├── spec ├── controllers │ └── dashing │ │ ├── application_controller_spec.rb │ │ ├── dashboards_controller_spec.rb │ │ ├── events_controller_spec.rb │ │ └── widgets_controller_spec.rb ├── dummy │ ├── README.rdoc │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── javascripts │ │ │ │ ├── application.js │ │ │ │ └── dashing │ │ │ │ │ └── widgets │ │ │ │ │ ├── foo.coffee │ │ │ │ │ └── index.js │ │ │ └── stylesheets │ │ │ │ ├── application.css │ │ │ │ └── dashing │ │ │ │ └── widgets │ │ │ │ ├── foo.scss │ │ │ │ └── index.css │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── jobs │ │ │ └── sample.rb │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ ├── .keep │ │ │ └── concerns │ │ │ │ └── .keep │ │ └── views │ │ │ ├── dashing │ │ │ ├── dashboards │ │ │ │ ├── foo.erb │ │ │ │ └── sample.html.erb │ │ │ └── widgets │ │ │ │ └── foo.html │ │ │ └── layouts │ │ │ ├── application.html.erb │ │ │ └── dashing │ │ │ └── dashboard.html.erb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ └── rake │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── backtrace_silencers.rb │ │ │ ├── dashing.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── secret_token.rb │ │ │ ├── session_store.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ └── routes.rb │ ├── db │ │ └── test.sqlite3 │ ├── lib │ │ └── assets │ │ │ └── .keep │ ├── log │ │ └── .keep │ └── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ └── favicon.ico ├── lib │ ├── dashing │ │ └── configuration_spec.rb │ ├── dashing_spec.rb │ └── generators │ │ └── widget_generator_spec.rb ├── rails_helper.rb ├── spec_helper.rb └── support │ └── controller_spec_helpers.rb └── vendor └── assets ├── fonts └── dashing │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── javascripts └── dashing │ ├── batman.jquery.js │ ├── batman.js │ ├── d3-3.2.8.min.js │ ├── dashing-src.coffee │ ├── default_widgets │ ├── clock.coffee │ ├── comments.coffee │ ├── graph.coffee │ ├── iframe.coffee │ ├── image.coffee │ ├── index.js │ ├── list.coffee │ ├── meter.coffee │ ├── number.coffee │ └── text.coffee │ ├── es5-shim.js │ ├── index.js │ ├── jquery.gridster.js │ ├── jquery.js │ ├── jquery.knob.js │ ├── jquery.leanModal.min.js │ ├── jquery.timeago.js │ ├── moment.min.js │ └── rickshaw-1.5.1.min.js └── stylesheets └── dashing ├── dashing-src.scss ├── font-awesome.scss ├── index.css ├── jquery.gridster.css └── widgets ├── clock.scss ├── comments.scss ├── graph.scss ├── iframe.scss ├── image.scss ├── index.css ├── list.scss ├── meter.scss ├── number.scss └── text.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/.rspec -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/javascripts/dashing/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/assets/javascripts/dashing/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/dashing/dashing.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/assets/javascripts/dashing/dashing.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/dashing/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/assets/stylesheets/dashing/application.css -------------------------------------------------------------------------------- /app/controllers/dashing/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/controllers/dashing/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/dashing/dashboards_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/controllers/dashing/dashboards_controller.rb -------------------------------------------------------------------------------- /app/controllers/dashing/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/controllers/dashing/events_controller.rb -------------------------------------------------------------------------------- /app/controllers/dashing/widgets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/controllers/dashing/widgets_controller.rb -------------------------------------------------------------------------------- /app/helpers/dashing/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/helpers/dashing/application_helper.rb -------------------------------------------------------------------------------- /app/views/dashing/widgets/clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/dashing/widgets/clock.html -------------------------------------------------------------------------------- /app/views/dashing/widgets/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/dashing/widgets/comments.html -------------------------------------------------------------------------------- /app/views/dashing/widgets/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/dashing/widgets/graph.html -------------------------------------------------------------------------------- /app/views/dashing/widgets/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/dashing/widgets/iframe.html -------------------------------------------------------------------------------- /app/views/dashing/widgets/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/dashing/widgets/image.html -------------------------------------------------------------------------------- /app/views/dashing/widgets/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/dashing/widgets/list.html -------------------------------------------------------------------------------- /app/views/dashing/widgets/meter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/dashing/widgets/meter.html -------------------------------------------------------------------------------- /app/views/dashing/widgets/number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/dashing/widgets/number.html -------------------------------------------------------------------------------- /app/views/dashing/widgets/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/dashing/widgets/text.html -------------------------------------------------------------------------------- /app/views/layouts/dashing/dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/app/views/layouts/dashing/dashboard.html.erb -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/bin/rails -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/config/routes.rb -------------------------------------------------------------------------------- /dashing.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/dashing.gemspec -------------------------------------------------------------------------------- /lib/assets/javascripts/dashing.gridster.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/assets/javascripts/dashing.gridster.coffee -------------------------------------------------------------------------------- /lib/dashing-rails.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/dashing' 2 | -------------------------------------------------------------------------------- /lib/dashing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/dashing.rb -------------------------------------------------------------------------------- /lib/dashing/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/dashing/configuration.rb -------------------------------------------------------------------------------- /lib/dashing/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/dashing/engine.rb -------------------------------------------------------------------------------- /lib/dashing/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/dashing/railtie.rb -------------------------------------------------------------------------------- /lib/dashing/version.rb: -------------------------------------------------------------------------------- 1 | module Dashing 2 | VERSION = '2.6.2' 3 | end 4 | -------------------------------------------------------------------------------- /lib/generators/dashing/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/dashing/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/dashing/job_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/dashing/job_generator.rb -------------------------------------------------------------------------------- /lib/generators/dashing/widget_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/dashing/widget_generator.rb -------------------------------------------------------------------------------- /lib/generators/templates/dashboards/sample.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/templates/dashboards/sample.html.erb -------------------------------------------------------------------------------- /lib/generators/templates/initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/templates/initializer.rb -------------------------------------------------------------------------------- /lib/generators/templates/jobs/new.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/templates/jobs/new.rb -------------------------------------------------------------------------------- /lib/generators/templates/jobs/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/templates/jobs/sample.rb -------------------------------------------------------------------------------- /lib/generators/templates/layouts/dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/templates/layouts/dashboard.html.erb -------------------------------------------------------------------------------- /lib/generators/templates/widgets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/templates/widgets/index.css -------------------------------------------------------------------------------- /lib/generators/templates/widgets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/templates/widgets/index.js -------------------------------------------------------------------------------- /lib/generators/templates/widgets/new.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/templates/widgets/new.coffee -------------------------------------------------------------------------------- /lib/generators/templates/widgets/new.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/generators/templates/widgets/new.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/generators/templates/widgets/new.scss -------------------------------------------------------------------------------- /lib/tasks/dashing_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/lib/tasks/dashing_tasks.rake -------------------------------------------------------------------------------- /spec/controllers/dashing/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/controllers/dashing/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/dashing/dashboards_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/controllers/dashing/dashboards_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/dashing/events_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/controllers/dashing/events_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/dashing/widgets_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/controllers/dashing/widgets_controller_spec.rb -------------------------------------------------------------------------------- /spec/dummy/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/README.rdoc -------------------------------------------------------------------------------- /spec/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/Rakefile -------------------------------------------------------------------------------- /spec/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /spec/dummy/app/assets/javascripts/dashing/widgets/foo.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/assets/javascripts/dashing/widgets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/app/assets/javascripts/dashing/widgets/index.js -------------------------------------------------------------------------------- /spec/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /spec/dummy/app/assets/stylesheets/dashing/widgets/foo.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/assets/stylesheets/dashing/widgets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/app/assets/stylesheets/dashing/widgets/index.css -------------------------------------------------------------------------------- /spec/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /spec/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/dummy/app/jobs/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/app/jobs/sample.rb -------------------------------------------------------------------------------- /spec/dummy/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/views/dashing/dashboards/foo.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/views/dashing/dashboards/sample.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/app/views/dashing/dashboards/sample.html.erb -------------------------------------------------------------------------------- /spec/dummy/app/views/dashing/widgets/foo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/dashing/dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/app/views/layouts/dashing/dashboard.html.erb -------------------------------------------------------------------------------- /spec/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/bin/bundle -------------------------------------------------------------------------------- /spec/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/bin/rails -------------------------------------------------------------------------------- /spec/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/bin/rake -------------------------------------------------------------------------------- /spec/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config.ru -------------------------------------------------------------------------------- /spec/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/application.rb -------------------------------------------------------------------------------- /spec/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/boot.rb -------------------------------------------------------------------------------- /spec/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/database.yml -------------------------------------------------------------------------------- /spec/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/environment.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/dashing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/initializers/dashing.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /spec/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /spec/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/config/routes.rb -------------------------------------------------------------------------------- /spec/dummy/db/test.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/public/404.html -------------------------------------------------------------------------------- /spec/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/public/422.html -------------------------------------------------------------------------------- /spec/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/dummy/public/500.html -------------------------------------------------------------------------------- /spec/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/lib/dashing/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/lib/dashing/configuration_spec.rb -------------------------------------------------------------------------------- /spec/lib/dashing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/lib/dashing_spec.rb -------------------------------------------------------------------------------- /spec/lib/generators/widget_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/lib/generators/widget_generator_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/controller_spec_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/spec/support/controller_spec_helpers.rb -------------------------------------------------------------------------------- /vendor/assets/fonts/dashing/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/fonts/dashing/FontAwesome.otf -------------------------------------------------------------------------------- /vendor/assets/fonts/dashing/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/fonts/dashing/fontawesome-webfont.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/dashing/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/fonts/dashing/fontawesome-webfont.svg -------------------------------------------------------------------------------- /vendor/assets/fonts/dashing/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/fonts/dashing/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /vendor/assets/fonts/dashing/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/fonts/dashing/fontawesome-webfont.woff -------------------------------------------------------------------------------- /vendor/assets/fonts/dashing/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/fonts/dashing/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/batman.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/batman.jquery.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/batman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/batman.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/d3-3.2.8.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/d3-3.2.8.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/dashing-src.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/dashing-src.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/clock.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/clock.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/comments.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/comments.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/graph.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/graph.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/iframe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/iframe.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/image.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/image.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/index.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/list.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/list.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/meter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/meter.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/number.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/number.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/default_widgets/text.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/default_widgets/text.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/es5-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/es5-shim.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/index.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/jquery.gridster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/jquery.gridster.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/jquery.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/jquery.knob.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/jquery.leanModal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/jquery.leanModal.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/jquery.timeago.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/moment.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dashing/rickshaw-1.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/javascripts/dashing/rickshaw-1.5.1.min.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/dashing-src.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/dashing-src.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/font-awesome.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/index.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/jquery.gridster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/jquery.gridster.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/clock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/clock.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/comments.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/graph.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/graph.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/iframe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/iframe.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/image.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/index.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/list.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/meter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/meter.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/number.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/number.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dashing/widgets/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottfrois/dashing-rails/HEAD/vendor/assets/stylesheets/dashing/widgets/text.scss --------------------------------------------------------------------------------