-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: add creation install script * fix: format vscode settings * fix: format code
- Loading branch information
1 parent
2335dac
commit b3f8fdc
Showing
27 changed files
with
195 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,34 @@ | ||
// 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.166.1/containers/ruby | ||
{ | ||
"name": "Ruby", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"args": { | ||
// Update 'VARIANT' to pick a Ruby version: 3, 3.0, 2, 2.7, 2.6, 2.5 | ||
"VARIANT": "2.7", | ||
// Options | ||
"INSTALL_NODE": "true", | ||
"NODE_VERSION": "lts/*" | ||
} | ||
}, | ||
|
||
// Set *default* container specific settings.json values on container create. | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash" | ||
}, | ||
|
||
// Add the IDs of extensions you want installed when the container is created. | ||
"extensions": [ | ||
"rebornix.Ruby", | ||
"rebornix.ruby", | ||
"github.vscode-codeql", | ||
"docsmsft.docs-markdown", | ||
"donjayamanne.githistory", | ||
"ms-vscode.github-issues-prs", | ||
"github.vscode-pull-request-github", | ||
"eamodio.gitlens", | ||
"ms-vsliveshare.vsliveshare-pack", | ||
"davidanson.vscode-markdownlint", | ||
"visualstudioexptteam.vscodeintellicode", | ||
"redhat.vscode-yaml" | ||
], | ||
|
||
// 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": "ruby --version", | ||
|
||
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
"remoteUser": "vscode" | ||
|
||
} | ||
"name": "Ruby", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"args": { | ||
"VARIANT": "2.7", | ||
"INSTALL_NODE": "true", | ||
"NODE_VERSION": "lts/*" | ||
} | ||
}, | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash" | ||
}, | ||
"extensions": [ | ||
"rebornix.Ruby", | ||
"rebornix.ruby", | ||
"github.vscode-codeql", | ||
"docsmsft.docs-markdown", | ||
"donjayamanne.githistory", | ||
"ms-vscode.github-issues-prs", | ||
"github.vscode-pull-request-github", | ||
"eamodio.gitlens", | ||
"ms-vsliveshare.vsliveshare-pack", | ||
"davidanson.vscode-markdownlint", | ||
"visualstudioexptteam.vscodeintellicode", | ||
"redhat.vscode-yaml", | ||
"esbenp.prettier-vscode" | ||
], | ||
"postCreateCommand": "ruby --version", | ||
"remoteUser": "vscode", | ||
"postStartCommand": "bundle install" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<!-- | ||
Thanks for contributing to the flutter-version fastlane plugin | ||
--> | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
comment: 'Maybe add tests to make sure this change works as expected?', | ||
fileExtensions: ['.rb'] | ||
testDir: 'spec' | ||
comment: "Maybe add tests to make sure this change works as expected?" | ||
fileExtensions: [".rb"] | ||
testDir: "spec" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
coverage | ||
test-results | ||
node_modules | ||
Gemfile.lock | ||
CHANGELOG.md | ||
docs/change.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{ | ||
"git.autofetch": true, | ||
"git.autofetchPeriod": 60, | ||
"git.fetchOnPull": true, | ||
"git.pruneOnFetch": true | ||
} | ||
"git.autofetch": true, | ||
"git.autofetchPeriod": 60, | ||
"git.fetchOnPull": true, | ||
"git.pruneOnFetch": true, | ||
"editor.formatOnPaste": true, | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,4 @@ To automatically fix many of the styling issues, use | |
|
||
```bash | ||
bundle exec rake rubocop:auto_correct -a | ||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
{ | ||
"README.md": [ | ||
"docs/README.md" | ||
] | ||
} | ||
"README.md": ["docs/README.md"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
* [Getting Started](/README) | ||
* [Available Option Details](/options) | ||
* [For Developers](/development) | ||
* [Security](/security) | ||
* [Code of Conduct](/code) | ||
* [Changelog](/change) | ||
- [Getting Started](/README) | ||
- [Available Option Details](/options) | ||
- [For Developers](/development) | ||
- [Security](/security) | ||
- [Code of Conduct](/code) | ||
- [Changelog](/change) |
Oops, something went wrong.