Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Ruby quickstart #739

Merged
merged 3 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: add Ruby quickstart
  • Loading branch information
Aunali321 committed Oct 12, 2023
commit 7adfce216fc9b78860807731538157e686df78f5
2 changes: 2 additions & 0 deletions desktop/src/images/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ export { default as CivoSvg } from "./civo.svg"
export { default as TerraformSvg } from "./terraform.svg"
export { default as VSCodeBrowser } from "./vscodebrowser.svg"
export { default as ProviderPlaceholderSvg } from "./provider_placeholder.svg"
export { default as RubySvg } from "./ruby.svg"
export { default as RubySvgDark } from "./ruby_dark.svg"
1 change: 1 addition & 0 deletions desktop/src/images/ruby.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions desktop/src/images/ruby_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 9 additions & 1 deletion desktop/src/views/Workspaces/CreateWorkspace/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,17 @@ import {
PythonSvg,
RustSvg,
RustSvgDark,
RubySvg,
RubySvgDark,
} from "../../../images"

export const WORKSPACE_EXAMPLES = [
{
image: RubySvg,
imageDark: RubySvgDark,
source: "https://github.com/Aunali321/ruby-quickstarter-template",
name: "Try Ruby",
},
{
image: PythonSvg,
source: "https://github.com/microsoft/vscode-remote-try-python",
Expand Down Expand Up @@ -55,5 +63,5 @@ export const WORKSPACE_EXAMPLES = [
image: DotnetcoreSvg,
source: "https://github.com/microsoft/vscode-remote-try-dotnet",
name: "Try Dotnet",
},
}
]