Ruby
About
Ruby is an interpreted, high-level, general-purpose programming language. It was designed and developed in the mid-1990s by Yukihiro “Matz” Matsumoto in Japan.
Installation
Change enable
from False
to True
in the ruby
section (cf module installation).
vscode-anywhere:
ruby:
enabled: True
Requirements
Linux requirements
Solargraph is compiled with brew and brew needs the native gcc package installed on your Linux distribution. If you haven't the native gcc package installed, it will fail to compile.
VSCode
VSCode extensions
rebornix.Ruby
This extension provides enhanced Ruby language and debugging support for Visual Studio Code.
castwide.solargraph
Solargraph is a language server that provides IntelliSense, code completion, and inline documentation for Ruby.

connorshea.vscode-ruby-test-adapter
This extension allows to run your Ruby tests.

kaiwood.endwise
This extension allows to run your Ruby tests.

bung87.rails
This extension allows Ruby on Rails support in VSCode.

shanehofstetter.rails-i18n
This extension is a Rails i18n helper.

aki77.rails-routes
This extension is a definition and completion provider for Rails Routes.

jemmyw.rails-fast-nav
This extension allows Navigation in Rails.

vortizhe.simple-ruby-erb
This extension provides a simple Ruby and ERB language, code snippets and ERB tag helper support for Visual Studio Code without messing with linting or debugging.

karunamurti.haml
This extension provides haml support, with parentheses coloring, auto-close parentheses, brackets, curly braces, quote, double quote, backtick, ruby interpolations, etc.

aki77.haml-lint
This extension provides a haml linter.
VSCode settings
Global settings
{
"ruby.lint": {
"reek": true,
"rubocop": false,
"ruby": true,
"fasterer": true,
"debride": true,
"ruby-lint": true
},
"ruby.codeCompletion": false,
"ruby.format": false,
"ruby.intellisense": false,
"solargraph.autoformat": true,
"solargraph.hover": true,
"solargraph.completion": true,
"solargraph.diagnostics": true,
"solargraph.formatting": true
}
Windows settings
{
"ruby.interpreter.commandPath": "C:\\VSCode-Anywhere\\apps\\scoop\\apps\\ruby\\current\\bin\\gem.cmd",
"solargraph.commandPath": "C:\\VSCode-Anywhere\\apps\\scoop\\apps\\ruby\\current\\gems\\bin\\solargraph.bat",
}
If rails
is set to True
:
{
"hamlLint.executablePath": "C:\\VSCode-Anywhere\\apps\\scoop\\apps\\ruby\\current\\gems\\bin\\haml-lint.bat"
}
Linux settings
{
"ruby.interpreter.commandPath": "/home/linuxbrew/.linuxbrew/bin/gem",
"solargraph.commandPath": "/home/linuxbrew/.linuxbrew/bin/solargraph"
}
If rails
is set to True
:
{
"hamlLint.executablePath": "/home/linuxbrew/.linuxbrew/bin/haml-lint"
}
VSCode keybindings
No keybindings.
Software
Windows software
scoop
Theridk install 3
command will be executed after installing ruby.
ridk
will install all dependencies for compiling ruby modules by installing some msys2 packages.
Linux software
brew
Documentation
VSCode-Anywhere
Environment
Windows environment
GEM_HOME: C:\VSCode-Anywhere\apps\scoop\apps\ruby\current\gems
GEM_PATH: C:\VSCode-Anywhere\apps\scoop\apps\ruby\current\gems
PATH: C:\VSCode-Anywhere\apps\scoop\apps\ruby\current\bin
Linux environment
GEM_HOME: /home/myuser/VSCode-Anywhere/apps/vscode-anywhere/ruby
GET_PATH: /home/myuser/VSCode-Anywhere/apps/vscode-anywhere/ruby
PATH: /home/myuser/VSCode-Anywhere/apps/vscode-anywhere/ruby/bin
Specific settings
rails
Enable settings / modules for ruby on rails (False
by default).
vscode-anywhere:
enabled: True
rails: True
gem
Allow installing ruby gems.
pkgs
: name of the packages to installenabled
:True
toenable
,False
to skip (default toFalse
)version
: the version of the gem package
opts
opts
is not mandatory but allows to pass additional arguments.
Extra args can be arguments described in the Saltstack gem states or can be global Saltstack arguments.
Global opts
packages settings:
gem:pkgs:opts:global
: allow passing arguments to all gem packages when installing, updating, or uninstalling a packagepm:pkgs:opts:install
: allow passing arguments to all gem packages when installing a package (cf states.gem.installed)gem:pkgs:opts:update
: allow passing arguments to all gem packages when updating a package (cf states.gem.installed)gem:pkgs:opts:uninstall
: allow passing arguments to<mypkg>
gem packages when uninstalling the package (cf states.gem.removed)
Specific opts
packages settings:
gem:pkgs:<mypkg>:opts:global
: allow passing arguments to<mypkg>
gem package when installing, updating, or uninstalling the packagegem:pkgs:<mypkg>:opts:install
: allow to pass arguments to<mypkg>
gem packages when installing the package (cf states.gem.installed)gem:pkgs:<mypkg>:opts:update
: allow to pass arguments to<mypkg>
gem packages when updating the package (cf states.gem.installed)gem:pkgs:<mypkg>:opts:uninstall
: allow to pass arguments to<mypkg>
gem packages when uninstalling the package (cf states.gem.removed)
global:
vscode-anywhere:
ruby:
enabled: True
gem:
opts:
global: {}
install:
rdoc: True
ri: True
update:
rdoc: True
ri: True
uninstall: {}
pkgs:
asdf:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
minitest:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
rubyfmt:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
rufo:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
rspec:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
rspec-core:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
rvm:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
standard:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
yard:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
rdoc:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
fastri:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
pkg-config:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
nokogiri:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
rubygems-update:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
ruby-debug-ide:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
debase:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
rcodetools:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
reek:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
fasterer:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
debride:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
ruby-lint:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
solargraph:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
If rails
is set to True
, the following gems will be added:
vscode-anywhere:
ruby:
enabled: True
gem:
pkgs:
rails:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
haml_lint:
enabled: True
opts:
install: {}
update: {}
uninstall: {}
Windows:
vscode-anywhere:
ruby:
enabled: True
gem:
opts:
global:
gem_bin: C:\VSCode-Anywhere\apps\scoop\apps\ruby\current\bin\gem.cmd
Linux:
vscode-anywhere:
ruby:
enabled: True
gem:
opts:
global:
gem_bin: /home/linuxbrew/.linuxbrew/bin/gem
Last updated
Was this helpful?