├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── app ├── channels │ └── debugbar │ │ └── debugbar_channel.rb ├── controllers │ └── debugbar │ │ ├── application_controller.rb │ │ ├── assets_controller.rb │ │ └── polling_controller.rb ├── helpers │ └── debugbar │ │ └── tag_helpers.rb └── models │ └── debugbar │ └── application_record.rb ├── bin ├── console ├── rails └── setup ├── client ├── .gitignore ├── .node-version ├── README.md ├── dev-extension │ ├── dev-extension.ts │ ├── index.html │ └── vite.dev-extension.config.ts ├── dev │ ├── dev.ts │ ├── index.html │ └── vite.dev.config.ts ├── extension │ ├── background.js │ ├── devtools.html │ ├── manifest.ts │ ├── options.html │ └── popups │ │ ├── not-found.html │ │ └── popup.css ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── devtools.js │ └── extension │ │ └── icons │ │ ├── ror-icon-128.png │ │ ├── ror-icon-16.png │ │ ├── ror-icon-256.png │ │ ├── ror-icon-48.png │ │ ├── ror-icon-512.png │ │ └── ror-icon.svg ├── src │ ├── App.vue │ ├── AppDemo.vue │ ├── AppDev.vue │ ├── AppDevtools.vue │ ├── AppDevtoolsDev.vue │ ├── Debugbar.vue │ ├── DebugbarBody.vue │ ├── assets │ │ ├── rails-logo.svg │ │ ├── rails-text-logo.svg │ │ └── ruby-logo.svg │ ├── components │ │ ├── MinimizedDebugbar.vue │ │ ├── RequestListItem.vue │ │ ├── RequestTimings.vue │ │ ├── TabButton.vue │ │ ├── messages │ │ │ └── MessageItem.vue │ │ ├── panels │ │ │ ├── CachePanel.vue │ │ │ ├── HttpPanel.vue │ │ │ ├── HttpRequestPanel.vue │ │ │ ├── HttpResponsePanel.vue │ │ │ ├── JobsPanel.vue │ │ │ ├── JsonPanel.vue │ │ │ ├── LogsPanel.vue │ │ │ ├── ModelsPanel.vue │ │ │ ├── Panel.vue │ │ │ ├── PanelList.vue │ │ │ ├── PanelListItem.vue │ │ │ └── RequestPanel.vue │ │ ├── queries │ │ │ └── QueryItem.vue │ │ └── ui │ │ │ ├── Foldable.vue │ │ │ ├── HttpVerb.vue │ │ │ ├── JsonCode.vue │ │ │ ├── KeyValueTable.vue │ │ │ ├── RequestsDropdown.vue │ │ │ ├── Row.vue │ │ │ ├── RubyLogo.vue │ │ │ ├── StatusCode.vue │ │ │ ├── SubHeading.vue │ │ │ └── Timing.vue │ ├── demo.ts │ ├── devtools-panel.ts │ ├── devtools │ │ └── Devtools.vue │ ├── helpers.ts │ ├── main.ts │ ├── models │ │ ├── Config.ts │ │ └── Request.ts │ ├── stores │ │ ├── RequestsStore.ts │ │ └── configStore.ts │ ├── style.css │ ├── types.d.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts ├── vite.demo.config.ts └── vite.extension.config.ts ├── config └── routes.rb ├── debugbar.gemspec ├── fixtures └── requests │ ├── 001-DemoController-post_list.json │ ├── 002-DemoController-slow_page.json │ ├── 003-DemoController-random_post.json │ ├── 004-DemoController-post.json │ ├── 005-ApiController-jobs.json │ ├── 006-ApiController-jobs.json │ └── 007-ApiController-errors.json ├── lib ├── debugbar.rb └── debugbar │ ├── buffers │ ├── cache_buffer.rb │ ├── memory_buffer.rb │ ├── null_buffer.rb │ └── request_buffer.rb │ ├── config.rb │ ├── current.rb │ ├── engine.rb │ ├── http │ └── http.rb │ ├── loggers │ ├── http_logger.rb │ └── simple_logger.rb │ ├── middlewares │ ├── quiet_routes.rb │ └── track_current_request.rb │ ├── request.rb │ ├── subscribers │ ├── action_controller.rb │ ├── active_job.rb │ ├── active_record.rb │ └── active_support.rb │ └── version.rb ├── package.json ├── public └── .gitignore ├── release.sh └── sig └── debugbar.rbs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/Rakefile -------------------------------------------------------------------------------- /app/channels/debugbar/debugbar_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/app/channels/debugbar/debugbar_channel.rb -------------------------------------------------------------------------------- /app/controllers/debugbar/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/app/controllers/debugbar/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/debugbar/assets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/app/controllers/debugbar/assets_controller.rb -------------------------------------------------------------------------------- /app/controllers/debugbar/polling_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/app/controllers/debugbar/polling_controller.rb -------------------------------------------------------------------------------- /app/helpers/debugbar/tag_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/app/helpers/debugbar/tag_helpers.rb -------------------------------------------------------------------------------- /app/models/debugbar/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/app/models/debugbar/application_record.rb -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/bin/console -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/bin/setup -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.node-version: -------------------------------------------------------------------------------- 1 | 22.12 2 | 3 | -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/dev-extension/dev-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/dev-extension/dev-extension.ts -------------------------------------------------------------------------------- /client/dev-extension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/dev-extension/index.html -------------------------------------------------------------------------------- /client/dev-extension/vite.dev-extension.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/dev-extension/vite.dev-extension.config.ts -------------------------------------------------------------------------------- /client/dev/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/dev/dev.ts -------------------------------------------------------------------------------- /client/dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/dev/index.html -------------------------------------------------------------------------------- /client/dev/vite.dev.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/dev/vite.dev.config.ts -------------------------------------------------------------------------------- /client/extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/extension/background.js -------------------------------------------------------------------------------- /client/extension/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/extension/devtools.html -------------------------------------------------------------------------------- /client/extension/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/extension/manifest.ts -------------------------------------------------------------------------------- /client/extension/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/extension/options.html -------------------------------------------------------------------------------- /client/extension/popups/not-found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/extension/popups/not-found.html -------------------------------------------------------------------------------- /client/extension/popups/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/extension/popups/popup.css -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/public/devtools.js -------------------------------------------------------------------------------- /client/public/extension/icons/ror-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/public/extension/icons/ror-icon-128.png -------------------------------------------------------------------------------- /client/public/extension/icons/ror-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/public/extension/icons/ror-icon-16.png -------------------------------------------------------------------------------- /client/public/extension/icons/ror-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/public/extension/icons/ror-icon-256.png -------------------------------------------------------------------------------- /client/public/extension/icons/ror-icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/public/extension/icons/ror-icon-48.png -------------------------------------------------------------------------------- /client/public/extension/icons/ror-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/public/extension/icons/ror-icon-512.png -------------------------------------------------------------------------------- /client/public/extension/icons/ror-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/public/extension/icons/ror-icon.svg -------------------------------------------------------------------------------- /client/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/App.vue -------------------------------------------------------------------------------- /client/src/AppDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/AppDemo.vue -------------------------------------------------------------------------------- /client/src/AppDev.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/AppDev.vue -------------------------------------------------------------------------------- /client/src/AppDevtools.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/AppDevtools.vue -------------------------------------------------------------------------------- /client/src/AppDevtoolsDev.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/AppDevtoolsDev.vue -------------------------------------------------------------------------------- /client/src/Debugbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/Debugbar.vue -------------------------------------------------------------------------------- /client/src/DebugbarBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/DebugbarBody.vue -------------------------------------------------------------------------------- /client/src/assets/rails-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/assets/rails-logo.svg -------------------------------------------------------------------------------- /client/src/assets/rails-text-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/assets/rails-text-logo.svg -------------------------------------------------------------------------------- /client/src/assets/ruby-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/assets/ruby-logo.svg -------------------------------------------------------------------------------- /client/src/components/MinimizedDebugbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/MinimizedDebugbar.vue -------------------------------------------------------------------------------- /client/src/components/RequestListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/RequestListItem.vue -------------------------------------------------------------------------------- /client/src/components/RequestTimings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/RequestTimings.vue -------------------------------------------------------------------------------- /client/src/components/TabButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/TabButton.vue -------------------------------------------------------------------------------- /client/src/components/messages/MessageItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/messages/MessageItem.vue -------------------------------------------------------------------------------- /client/src/components/panels/CachePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/CachePanel.vue -------------------------------------------------------------------------------- /client/src/components/panels/HttpPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/HttpPanel.vue -------------------------------------------------------------------------------- /client/src/components/panels/HttpRequestPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/HttpRequestPanel.vue -------------------------------------------------------------------------------- /client/src/components/panels/HttpResponsePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/HttpResponsePanel.vue -------------------------------------------------------------------------------- /client/src/components/panels/JobsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/JobsPanel.vue -------------------------------------------------------------------------------- /client/src/components/panels/JsonPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/JsonPanel.vue -------------------------------------------------------------------------------- /client/src/components/panels/LogsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/LogsPanel.vue -------------------------------------------------------------------------------- /client/src/components/panels/ModelsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/ModelsPanel.vue -------------------------------------------------------------------------------- /client/src/components/panels/Panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/Panel.vue -------------------------------------------------------------------------------- /client/src/components/panels/PanelList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/PanelList.vue -------------------------------------------------------------------------------- /client/src/components/panels/PanelListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/PanelListItem.vue -------------------------------------------------------------------------------- /client/src/components/panels/RequestPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/panels/RequestPanel.vue -------------------------------------------------------------------------------- /client/src/components/queries/QueryItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/queries/QueryItem.vue -------------------------------------------------------------------------------- /client/src/components/ui/Foldable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/Foldable.vue -------------------------------------------------------------------------------- /client/src/components/ui/HttpVerb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/HttpVerb.vue -------------------------------------------------------------------------------- /client/src/components/ui/JsonCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/JsonCode.vue -------------------------------------------------------------------------------- /client/src/components/ui/KeyValueTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/KeyValueTable.vue -------------------------------------------------------------------------------- /client/src/components/ui/RequestsDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/RequestsDropdown.vue -------------------------------------------------------------------------------- /client/src/components/ui/Row.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/Row.vue -------------------------------------------------------------------------------- /client/src/components/ui/RubyLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/RubyLogo.vue -------------------------------------------------------------------------------- /client/src/components/ui/StatusCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/StatusCode.vue -------------------------------------------------------------------------------- /client/src/components/ui/SubHeading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/SubHeading.vue -------------------------------------------------------------------------------- /client/src/components/ui/Timing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/components/ui/Timing.vue -------------------------------------------------------------------------------- /client/src/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/demo.ts -------------------------------------------------------------------------------- /client/src/devtools-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/devtools-panel.ts -------------------------------------------------------------------------------- /client/src/devtools/Devtools.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/devtools/Devtools.vue -------------------------------------------------------------------------------- /client/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/helpers.ts -------------------------------------------------------------------------------- /client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/main.ts -------------------------------------------------------------------------------- /client/src/models/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/models/Config.ts -------------------------------------------------------------------------------- /client/src/models/Request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/models/Request.ts -------------------------------------------------------------------------------- /client/src/stores/RequestsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/stores/RequestsStore.ts -------------------------------------------------------------------------------- /client/src/stores/configStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/stores/configStore.ts -------------------------------------------------------------------------------- /client/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/style.css -------------------------------------------------------------------------------- /client/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/types.d.ts -------------------------------------------------------------------------------- /client/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/src/vite-env.d.ts -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/tsconfig.node.json -------------------------------------------------------------------------------- /client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/vite.config.ts -------------------------------------------------------------------------------- /client/vite.demo.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/vite.demo.config.ts -------------------------------------------------------------------------------- /client/vite.extension.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/client/vite.extension.config.ts -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/config/routes.rb -------------------------------------------------------------------------------- /debugbar.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/debugbar.gemspec -------------------------------------------------------------------------------- /fixtures/requests/001-DemoController-post_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/fixtures/requests/001-DemoController-post_list.json -------------------------------------------------------------------------------- /fixtures/requests/002-DemoController-slow_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/fixtures/requests/002-DemoController-slow_page.json -------------------------------------------------------------------------------- /fixtures/requests/003-DemoController-random_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/fixtures/requests/003-DemoController-random_post.json -------------------------------------------------------------------------------- /fixtures/requests/004-DemoController-post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/fixtures/requests/004-DemoController-post.json -------------------------------------------------------------------------------- /fixtures/requests/005-ApiController-jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/fixtures/requests/005-ApiController-jobs.json -------------------------------------------------------------------------------- /fixtures/requests/006-ApiController-jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/fixtures/requests/006-ApiController-jobs.json -------------------------------------------------------------------------------- /fixtures/requests/007-ApiController-errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/fixtures/requests/007-ApiController-errors.json -------------------------------------------------------------------------------- /lib/debugbar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar.rb -------------------------------------------------------------------------------- /lib/debugbar/buffers/cache_buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/buffers/cache_buffer.rb -------------------------------------------------------------------------------- /lib/debugbar/buffers/memory_buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/buffers/memory_buffer.rb -------------------------------------------------------------------------------- /lib/debugbar/buffers/null_buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/buffers/null_buffer.rb -------------------------------------------------------------------------------- /lib/debugbar/buffers/request_buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/buffers/request_buffer.rb -------------------------------------------------------------------------------- /lib/debugbar/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/config.rb -------------------------------------------------------------------------------- /lib/debugbar/current.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/current.rb -------------------------------------------------------------------------------- /lib/debugbar/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/engine.rb -------------------------------------------------------------------------------- /lib/debugbar/http/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/http/http.rb -------------------------------------------------------------------------------- /lib/debugbar/loggers/http_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/loggers/http_logger.rb -------------------------------------------------------------------------------- /lib/debugbar/loggers/simple_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/loggers/simple_logger.rb -------------------------------------------------------------------------------- /lib/debugbar/middlewares/quiet_routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/middlewares/quiet_routes.rb -------------------------------------------------------------------------------- /lib/debugbar/middlewares/track_current_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/middlewares/track_current_request.rb -------------------------------------------------------------------------------- /lib/debugbar/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/request.rb -------------------------------------------------------------------------------- /lib/debugbar/subscribers/action_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/subscribers/action_controller.rb -------------------------------------------------------------------------------- /lib/debugbar/subscribers/active_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/subscribers/active_job.rb -------------------------------------------------------------------------------- /lib/debugbar/subscribers/active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/subscribers/active_record.rb -------------------------------------------------------------------------------- /lib/debugbar/subscribers/active_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/lib/debugbar/subscribers/active_support.rb -------------------------------------------------------------------------------- /lib/debugbar/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Debugbar 4 | VERSION = "0.4.3" 5 | end 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/package.json -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/release.sh -------------------------------------------------------------------------------- /sig/debugbar.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbourdeau/debugbar/HEAD/sig/debugbar.rbs --------------------------------------------------------------------------------