From e774b37c241412b3196d057839f45e6e867ad841 Mon Sep 17 00:00:00 2001 From: pvincent Date: Wed, 3 Apr 2024 10:15:53 +0400 Subject: [PATCH] unreveal debug panel --- .vscode/launch.json | 6 +++++- .vscode/settings.json | 2 -- Gemfile | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 56f1d3b..34396e1 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,5 +5,9 @@ "type": "ruby_lsp", "request": "attach", "name": "Attach to existing server", - }, + "presentation": { + "reveal": "never", + } + } + ] } \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index ff74f27..491eb9a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -20,7 +20,5 @@ "*.html.erb": "erb" }, - "debug.onTaskErrors": "abort", "vscode-erb-beautify.keepBlankLines": 1 - } \ No newline at end of file diff --git a/Gemfile b/Gemfile index fac8f16..912c9a1 100644 --- a/Gemfile +++ b/Gemfile @@ -1,8 +1,6 @@ source 'https://rubygems.org' ruby '3.1.2' -gem 'turbo-rails', '~> 1' - gem 'bootsnap', require: false gem 'importmap-rails' gem 'pg' @@ -13,11 +11,13 @@ gem 'stimulus-rails' gem 'tailwindcss-rails' group :development do + gem 'rails_live_reload' + gem 'turbo-rails', '~> 1' # works well with rails_live_reload + gem 'amazing_print' gem 'debug' gem 'error_highlight' gem 'htmlbeautifier' - gem 'rails_live_reload' gem 'rails_semantic_logger' gem 'rainbow' gem 'rubocop', require: false