Sha256: 1910f29c99355c324335a33e98a21148f0c339f608c41d272d38a06d262323a1
Contents?: true
Size: 1.59 KB
Versions: 2
Compression:
Stored size: 1.59 KB
Contents
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: // https://github.com/microsoft/vscode-dev-containers/tree/v0.209.6/containers/ruby { "name": "Ruby", "build": { "dockerfile": "Dockerfile", "args": { // Update 'VARIANT' to pick a Ruby version: 3, 3.0, 2, 2.7, 2.6 // Append -bullseye or -buster to pin to an OS version. // Use -bullseye variants on local on arm64/Apple Silicon. "VARIANT": "2.7", // Options "NODE_VERSION": "14" } }, // Set *default* container specific settings.json values on container create. "settings": { "terminal.integrated.defaultProfile.linux": "zsh", "rubyTestExplorer.logpanel": true, "rubyTestExplorer.rspecCommand": "bundle exec rspec", "rubyTestExplorer.debugCommand": "bundle exec rdebug-ide", "rubyTestExplorer.testFramework": "rspec", "ruby.rubocop.useBundler": true, "solargraph.useBundler": true }, // Add the IDs of extensions you want installed when the container is created. "extensions": [ "eamodio.gitlens", "mikestead.dotenv", "editorconfig.editorconfig", "nhoizey.gremlins", "rebornix.ruby", "misogi.ruby-rubocop", "castwide.solargraph", "connorshea.vscode-ruby-test-adapter" ], // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "make devcon_init", // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. "remoteUser": "vscode", "features": { "git": "latest" } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ropen_pi-0.5.0 | .devcontainer/devcontainer.json |
ropen_pi-0.4.0 | .devcontainer/devcontainer.json |