From 277e3a4fae322ff1444bbf0d4466b954f9ed1df1 Mon Sep 17 00:00:00 2001 From: Haruyuki Iida Date: Thu, 18 Jan 2024 22:30:32 +0000 Subject: [PATCH] Refactor devcontainer --- .devcontainer/devcontainer.json | 4 ++-- .devcontainer/post-create.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 15c047b..09de3d7 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -42,7 +42,6 @@ // Add the IDs of extensions you want installed when the container is created. "extensions": [ - "rebornix.Ruby", "mtxr.sqltools", "mtxr.sqltools-driver-pg", "craigmaslowski.erb", @@ -53,7 +52,8 @@ "ms-azuretools.vscode-docker", "KoichiSasada.vscode-rdbg", "Serhioromano.vscode-gitflow", - "github.vscode-github-actions" + "github.vscode-github-actions", + "Shopify.ruby-extensions-pack" ], // Use 'forwardPorts' to make a list of ports inside the container available locally. diff --git a/.devcontainer/post-create.sh b/.devcontainer/post-create.sh index b194b73..38df9fb 100644 --- a/.devcontainer/post-create.sh +++ b/.devcontainer/post-create.sh @@ -6,7 +6,7 @@ if [ -f plugins/${PLUGIN_NAME}/Gemfile_for_test ] then cp plugins/${PLUGIN_NAME}/Gemfile_for_test plugins/${PLUGIN_NAME}/Gemfile fi -cp plugins/${PLUGIN_NAME}/test/fixtures/*.yml test/fixtures + ln -s /workspaces/${PLUGIN_NAME}/.devcontainer/launch.json .vscode/launch.json bundle install