├── .github ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png ├── screenshot4.png ├── screenshot5.png └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── active_insights.gemspec ├── app ├── assets │ └── stylesheets │ │ └── active_insights │ │ ├── application.css │ │ ├── calibre-bold.woff2 │ │ ├── calibre-regular-italic.woff2 │ │ ├── calibre-regular.woff2 │ │ ├── calibre-semibold-italic.woff2 │ │ └── calibre-semibold.woff2 ├── controllers │ └── active_insights │ │ ├── application_controller.rb │ │ ├── jobs_controller.rb │ │ ├── jobs_latencies_controller.rb │ │ ├── jobs_p_values_controller.rb │ │ ├── jpm_controller.rb │ │ ├── requests_controller.rb │ │ ├── requests_p_values_controller.rb │ │ └── rpm_controller.rb ├── helpers │ └── active_insights │ │ └── application_helper.rb ├── models │ └── active_insights │ │ ├── job.rb │ │ ├── record.rb │ │ └── request.rb └── views │ ├── active_insights │ ├── jobs │ │ └── index.html.erb │ ├── jobs_latencies │ │ └── index.html.erb │ ├── jobs_p_values │ │ └── index.html.erb │ ├── jpm │ │ └── index.html.erb │ ├── requests │ │ └── index.html.erb │ ├── requests_p_values │ │ └── index.html.erb │ └── rpm │ │ └── index.html.erb │ └── layouts │ └── active_insights │ └── application.html.erb ├── bin ├── importmap ├── publish ├── rails ├── setup └── test ├── config ├── initializers │ └── importmap.rb └── routes.rb ├── db └── migrate │ ├── 20240111225806_create_active_insights_tables.rb │ ├── 20241015142450_add_ip_address_to_requests.rb │ └── 20241016142157_add_user_agent_to_requests.rb ├── lib ├── active_insights.rb ├── active_insights │ ├── engine.rb │ ├── seeders │ │ ├── jobs.rb │ │ └── requests.rb │ └── version.rb ├── activeinsights.rb ├── generators │ └── active_insights │ │ ├── install │ │ └── install_generator.rb │ │ └── update │ │ └── update_generator.rb └── tasks │ └── active_insights_tasks.rake └── test ├── active_insights_test.rb ├── controllers └── active_insights │ ├── jobs_controller_test.rb │ ├── jobs_latencies_controller_test.rb │ ├── jobs_p_values_controller_test.rb │ ├── jpm_controller_test.rb │ ├── requests_controller_test.rb │ ├── requests_p_values_controller_test.rb │ └── rpm_controller_test.rb ├── dummy ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── make_requests_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── javascript │ │ └── application.js │ ├── jobs │ │ ├── application_job.rb │ │ └── dummy_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ └── concerns │ │ │ └── .keep │ └── views │ │ ├── layouts │ │ └── application.html.erb │ │ └── make_requests │ │ └── index.html.erb ├── bin │ ├── importmap │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.pg.yml │ ├── database.trilogy.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── importmap.rb │ ├── initializers │ │ ├── content_security_policy.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ └── permissions_policy.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── solid_queue.yml │ └── storage.yml ├── db │ └── schema.rb ├── log │ └── .keep └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ └── favicon.ico ├── fixtures └── active_insights │ ├── jobs.yml │ └── requests.yml └── test_helper.rb /.github/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/.github/screenshot1.png -------------------------------------------------------------------------------- /.github/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/.github/screenshot2.png -------------------------------------------------------------------------------- /.github/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/.github/screenshot3.png -------------------------------------------------------------------------------- /.github/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/.github/screenshot4.png -------------------------------------------------------------------------------- /.github/screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/.github/screenshot5.png -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.5 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/Rakefile -------------------------------------------------------------------------------- /active_insights.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/active_insights.gemspec -------------------------------------------------------------------------------- /app/assets/stylesheets/active_insights/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/assets/stylesheets/active_insights/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/active_insights/calibre-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/assets/stylesheets/active_insights/calibre-bold.woff2 -------------------------------------------------------------------------------- /app/assets/stylesheets/active_insights/calibre-regular-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/assets/stylesheets/active_insights/calibre-regular-italic.woff2 -------------------------------------------------------------------------------- /app/assets/stylesheets/active_insights/calibre-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/assets/stylesheets/active_insights/calibre-regular.woff2 -------------------------------------------------------------------------------- /app/assets/stylesheets/active_insights/calibre-semibold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/assets/stylesheets/active_insights/calibre-semibold-italic.woff2 -------------------------------------------------------------------------------- /app/assets/stylesheets/active_insights/calibre-semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/assets/stylesheets/active_insights/calibre-semibold.woff2 -------------------------------------------------------------------------------- /app/controllers/active_insights/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/controllers/active_insights/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/active_insights/jobs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/controllers/active_insights/jobs_controller.rb -------------------------------------------------------------------------------- /app/controllers/active_insights/jobs_latencies_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/controllers/active_insights/jobs_latencies_controller.rb -------------------------------------------------------------------------------- /app/controllers/active_insights/jobs_p_values_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/controllers/active_insights/jobs_p_values_controller.rb -------------------------------------------------------------------------------- /app/controllers/active_insights/jpm_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/controllers/active_insights/jpm_controller.rb -------------------------------------------------------------------------------- /app/controllers/active_insights/requests_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/controllers/active_insights/requests_controller.rb -------------------------------------------------------------------------------- /app/controllers/active_insights/requests_p_values_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/controllers/active_insights/requests_p_values_controller.rb -------------------------------------------------------------------------------- /app/controllers/active_insights/rpm_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/controllers/active_insights/rpm_controller.rb -------------------------------------------------------------------------------- /app/helpers/active_insights/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/helpers/active_insights/application_helper.rb -------------------------------------------------------------------------------- /app/models/active_insights/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/models/active_insights/job.rb -------------------------------------------------------------------------------- /app/models/active_insights/record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/models/active_insights/record.rb -------------------------------------------------------------------------------- /app/models/active_insights/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/models/active_insights/request.rb -------------------------------------------------------------------------------- /app/views/active_insights/jobs/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/views/active_insights/jobs/index.html.erb -------------------------------------------------------------------------------- /app/views/active_insights/jobs_latencies/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/views/active_insights/jobs_latencies/index.html.erb -------------------------------------------------------------------------------- /app/views/active_insights/jobs_p_values/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/views/active_insights/jobs_p_values/index.html.erb -------------------------------------------------------------------------------- /app/views/active_insights/jpm/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/views/active_insights/jpm/index.html.erb -------------------------------------------------------------------------------- /app/views/active_insights/requests/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/views/active_insights/requests/index.html.erb -------------------------------------------------------------------------------- /app/views/active_insights/requests_p_values/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/views/active_insights/requests_p_values/index.html.erb -------------------------------------------------------------------------------- /app/views/active_insights/rpm/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/views/active_insights/rpm/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/active_insights/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/app/views/layouts/active_insights/application.html.erb -------------------------------------------------------------------------------- /bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/bin/importmap -------------------------------------------------------------------------------- /bin/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/bin/publish -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/bin/test -------------------------------------------------------------------------------- /config/initializers/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/config/initializers/importmap.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20240111225806_create_active_insights_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/db/migrate/20240111225806_create_active_insights_tables.rb -------------------------------------------------------------------------------- /db/migrate/20241015142450_add_ip_address_to_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/db/migrate/20241015142450_add_ip_address_to_requests.rb -------------------------------------------------------------------------------- /db/migrate/20241016142157_add_user_agent_to_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/db/migrate/20241016142157_add_user_agent_to_requests.rb -------------------------------------------------------------------------------- /lib/active_insights.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/lib/active_insights.rb -------------------------------------------------------------------------------- /lib/active_insights/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/lib/active_insights/engine.rb -------------------------------------------------------------------------------- /lib/active_insights/seeders/jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/lib/active_insights/seeders/jobs.rb -------------------------------------------------------------------------------- /lib/active_insights/seeders/requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/lib/active_insights/seeders/requests.rb -------------------------------------------------------------------------------- /lib/active_insights/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ActiveInsights 4 | VERSION = "1.3.3" 5 | end 6 | -------------------------------------------------------------------------------- /lib/activeinsights.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require "active_insights" 4 | -------------------------------------------------------------------------------- /lib/generators/active_insights/install/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/lib/generators/active_insights/install/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/active_insights/update/update_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/lib/generators/active_insights/update/update_generator.rb -------------------------------------------------------------------------------- /lib/tasks/active_insights_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/lib/tasks/active_insights_tasks.rake -------------------------------------------------------------------------------- /test/active_insights_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/active_insights_test.rb -------------------------------------------------------------------------------- /test/controllers/active_insights/jobs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/controllers/active_insights/jobs_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/active_insights/jobs_latencies_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/controllers/active_insights/jobs_latencies_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/active_insights/jobs_p_values_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/controllers/active_insights/jobs_p_values_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/active_insights/jpm_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/controllers/active_insights/jpm_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/active_insights/requests_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/controllers/active_insights/requests_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/active_insights/requests_p_values_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/controllers/active_insights/requests_p_values_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/active_insights/rpm_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/controllers/active_insights/rpm_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* Application styles */ 2 | -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/make_requests_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/controllers/make_requests_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ApplicationHelper 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/javascript/application.js -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/dummy/app/jobs/dummy_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/jobs/dummy_job.rb -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/make_requests/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/app/views/make_requests/index.html.erb -------------------------------------------------------------------------------- /test/dummy/bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/bin/importmap -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.pg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/database.pg.yml -------------------------------------------------------------------------------- /test/dummy/config/database.trilogy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/database.trilogy.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/importmap.rb: -------------------------------------------------------------------------------- 1 | # Pin npm packages by running ./bin/importmap 2 | 3 | pin "application" 4 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/solid_queue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/solid_queue.yml -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/active_insights/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/fixtures/active_insights/jobs.yml -------------------------------------------------------------------------------- /test/fixtures/active_insights/requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/fixtures/active_insights/requests.yml -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npezza93/activeinsights/HEAD/test/test_helper.rb --------------------------------------------------------------------------------