├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── .keep │ │ └── fastlane.png │ ├── javascripts │ │ ├── application.js │ │ └── bacons.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── bacons.scss │ │ └── scaffolds.scss ├── controllers │ ├── application_controller.rb │ ├── bacons_controller.rb │ ├── concerns │ │ └── .keep │ └── stability_controller.rb ├── helpers │ ├── application_helper.rb │ └── bacons_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── bacon.rb │ └── concerns │ │ └── .keep ├── views │ ├── bacons │ │ ├── graphs.html.erb │ │ └── stats.html.erb │ ├── layouts │ │ └── application.html.erb │ └── stability │ │ ├── index.html.erb │ │ └── okrs.html.erb └── workers │ ├── analytic_ingester_worker.rb │ └── bacon_updater_worker.rb ├── bin ├── bundle ├── rails ├── rake ├── setup └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20150413194641_create_bacons.rb │ ├── 20160509194220_add_tool_version_and_number_crashes_to_bacons.rb │ └── 20170427183242_add_index_to_bacons.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/fastlane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/assets/images/fastlane.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bacons.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/assets/javascripts/bacons.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bacons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/assets/stylesheets/bacons.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffolds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/assets/stylesheets/scaffolds.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/bacons_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/controllers/bacons_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/stability_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/controllers/stability_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/bacons_helper.rb: -------------------------------------------------------------------------------- 1 | module BaconsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/bacon.rb: -------------------------------------------------------------------------------- 1 | class Bacon < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/bacons/graphs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/views/bacons/graphs.html.erb -------------------------------------------------------------------------------- /app/views/bacons/stats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/views/bacons/stats.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/stability/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/views/stability/index.html.erb -------------------------------------------------------------------------------- /app/views/stability/okrs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/views/stability/okrs.html.erb -------------------------------------------------------------------------------- /app/workers/analytic_ingester_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/workers/analytic_ingester_worker.rb -------------------------------------------------------------------------------- /app/workers/bacon_updater_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/app/workers/bacon_updater_worker.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20150413194641_create_bacons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/db/migrate/20150413194641_create_bacons.rb -------------------------------------------------------------------------------- /db/migrate/20160509194220_add_tool_version_and_number_crashes_to_bacons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/db/migrate/20160509194220_add_tool_version_and_number_crashes_to_bacons.rb -------------------------------------------------------------------------------- /db/migrate/20170427183242_add_index_to_bacons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/db/migrate/20170427183242_add_index_to_bacons.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlane-old/enhancer/HEAD/public/robots.txt -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------