Geek Culture

A new tech publication by Start it up (https://medium.com/swlh).

Follow publication

The most useful Visual Studio Code extensions I use for Ruby development

White and blue Lego pieces with some ruby pins

By default, Visual Studio Code is a great editor with handy tools. But its true power lies in its extension system. Think of it as “there’s an extension for that”: for almost anything you need in your development work, there is undoubtedly an extension that will make things easier.

When I started developing with Ruby, I realized just how much I could enhance my workflow with the right set of extensions. Here, I share the most useful Visual Studio Code extensions that have significantly improved my Ruby development experience. Below, I present them in alphabetical order, along with my insights on their practical use.

ANSI Colors

ANSI Colors logo

If you open a log file in Rails, you’ll notice strange codes that make the file almost impossible to read. Those codes are ANSI codes for coloring the lines.

Why It’s Useful

With the ANSI Colors extension, you can translate these codes into colors, making it much easier to read your logs, just like in the development console.

Setting Up ANSI Colors

ANSI Colors extension screenshot for Visual Studio Code
ANSI Colors extension screenshot

Once the extension is installed, open the log file, open the command palette (CMD+Shift+P on macOS), and select the ANSI Text: Open Preview option. This will colorize the text, making it easier to understand.

Link to extension

Auto Close Tag

Auto Close Tag extension for Visual Studio Code
Auto Close Tag

Auto Close Tag is an extension that automatically closes HTML tags in various languages and file types, going beyond the default capabilities of VS Code.

Why It’s Useful

While Visual Studio Code provides automatic HTML tag closing in HTML files, this extension extends that functionality to other languages, which is especially helpful when working with templates that mix different syntaxes.

Using Auto Close Tag Effectively

After installing it, you don’t need to configure anything for HTML — it’s already set up to work automatically. The extension offers a convenient shortcut (CMD + Shift + . on macOS) for quick tag closing.

Link to extension

ColorTabs

ColorTabs logo

ColorTabs helps you organize your workspace by dimming unused tabs and marking test-related tabs in green.

Why It’s Useful

When working on multiple files simultaneously, it can be challenging to quickly identify the active tab. ColorTabs dims the text of inactive tabs, making it easier to spot the current one.

Additionally, it highlights tabs containing tests with a green background, helping you change the appropriate mental context for testing.

Using ColorTabs Effectively

ColorTabs extension demo for Visual Studio Code
ColorTabs demo

After installing the extension, your tabs will automatically be assigned different colors. You can customize these colors using regular expressions in the configuration settings to fit your preferences.

Link to extension

Copy With Line Numbers

Copy With Line Numbers logo

Copy With Line Numbers allows you to copy code snippets along with their line numbers — a small but handy feature for documentation and code review purposes.

Why It’s Useful

When sharing snippets in emails or documentation, it’s often helpful to include line numbers for easy reference. This extension streamlines that process.

How to Use Copy With Line Numbers

Copy With Line Numbers extension demo for Visual Studio Code
Copy With Line Numbers demo

Select the code snippet, open the command palette, and find the Copy With Line Numbers option. You can choose between copying with the file name or without it.

Link to extension

Endsmart

Endsmart logo

Endsmart automatically adds the end keyword to Ruby blocks.

Why It’s Useful

In Ruby, ensuring every block has an end can be tedious. Endsmart saves you time by automatically adding end whenever you start a new block, reducing the chances of syntax errors.

Adding the End with Ease

Endwise extension demo for Visual Studio Code
Endwise demo

After opening a block, simply press Enter and the end is added automatically. You can also use CMD+Enter to add it in the middle of a line.

Link to extension

ERB Linter

ERB Linter logo

ERB Linter checks the code style in ERB files to ensure consistency.

Why It’s Useful

This tool helps maintain consistent code style across your ERB templates, which is crucial in large projects where multiple developers work on the same codebase.

Checking Your ERB Code Style

ERB Linter extension demo for Visual Studio Code
ERB Linter demo

First, install the erb_lint gem. You can then use ERB Linter in VS Code by saving your ERB file, which automatically flags errors, or by using the command palette to manually lint or autocorrect.

Link to extension

ESLint

ESLint logo

This extension integrates the popular ESLint into Visual Studio Code.

Why It’s Useful

JavaScript is often a part of Ruby on Rails projects, and ESLint ensures your JavaScript code follows style standards, keeping your codebase clean and consistent.

Using ESLint

First, install and configure eslint on your machine, then install the ESLint extension. When you open a JavaScript file, the extension will check the syntax and style based on your configuration.

Link to extension

Git Blame

Git Blame logo

Git Blame shows when a line of code was last modified, and who did it, directly in the status bar.

Why It’s Useful

Understanding the history of a line of code is essential for debugging and collaboration. Git Blame lets you see who wrote a line of code and when, providing valuable context, especially in larger projects.

Using Git Blame

Git Blame extension demo for Visual Studio Code
Git Blame demo

Just place the cursor on a line of code, and the information will appear in the status bar. Click on it to open the last commit that changed that line.

Link to extension

Git Graph

Git Graph logo

Git Graph provides a visual representation of your Git repository, making it easier to understand the commit history, branches, and merges.

Why It’s Useful

Git can be complex, especially when working with multiple branches and collaborators. Git Graph allows you to visualize the entire commit history of your project, making it easier to understand changes, track merges, and resolve conflicts.

Using Git Graph

After installing the extension, you can access the Git Graph view by opening the command palette and selecting Git Graph: View Git Graph, or by clicking the Git Graph icon in the activity bar. From there, you can see a visual representation of the commit history, checkout branches, and perform common Git operations.

Link to extension

GitHub Theme

GitHub Theme logo

GitHub Theme brings the official GitHub color schemes to Visual Studio Code.

Why It’s Useful

Using a familiar theme can make the transition between different tools smoother, and GitHub Theme provides both light and dark variations, matching your preferred GitHub appearance.

Applying GitHub Theme

GitHub Theme for Visual Studio Code
GitHub Theme for Visual Studio Code

After installing the theme, open the theme list (CMD+K, CMD+T on macOS) and choose your preferred variation.

Link to extension

Output Colorizer

Output Colorizer logo

Output Colorizer colorizes the output panels in Visual Studio Code.

Why It’s Useful

This extension makes it easier to read logs and output by adding color, which helps to distinguish different parts of the output more easily.

Using Output Colorizer

Output Colorizer extension screenshot for Visual Studio Code
Output Colorizer extension screenshot

No configuration is needed — once installed, the content of the output panels is automatically colorized.

Link to extension

Rails DB Schema

Rails DB Schema logo

Rails DB Schema provides autocomplete for model attributes, schema tables, and more.

Why It’s Useful

It improves productivity by offering quick access to model attributes and schema definitions, making database-related work faster and more convenient.

Using Rails DB Schema

Rails DB Schema extension autocomplete demo for Visual Studio Code
Rails DB Schema autocomplete demo

The auto-completion works after typing a dot. To access object definitions, hold CMD (or ALT on Windows/Linux) and click the object. Use the command palette to open or insert schema attributes.

Link to extension

Ruby LSP

Ruby LSP logo

Ruby LSP provides auto-completion, code checks, and documentation for Ruby.

Why It’s Useful

This extension speeds up development by suggesting methods, checking code style with Rubocop, and providing inline documentation — all within VS Code.

Setting Up Ruby LSP

Ruby LSP extension demo for Visual Studio Code
Ruby LSP demo

To set up Ruby LSP, first install the extension from the Visual Studio Code marketplace. Once installed, you can start using it right away.

For more advanced functionality, enable experimental features through the configuration settings, which can be accessed via the “Ruby LSP: Toggle features” option in the command palette.

Link to extension

SVG

SVG logo

SVG allows you to create, modify, minify, and preview SVGs.

Why It’s Useful

It simplifies working with SVG files by offering auto-completion and preview features, making it easier to create and modify SVG graphics directly within VS Code.

Using SVG

SVG extension previewing demo for Visual Studio Code
SVG previewing demo

Right-click on an SVG file and choose Preview SVG to view the image. You can also use the command palette to minify the SVG.

Link to extension

VSCode rdbg Ruby Debugger

VSCode rdbg Ruby Debugger logo

VSCode rdbg helps you visually debug Ruby applications.

Why It’s Useful

Debugging Ruby is typically done in the console, but VSCode rdbg brings a visual approach to debugging, making it more intuitive and easier to manage breakpoints and step through code.

Setting Up VSCode rdbg

Install the debug gem, which is the new debugging standard in Ruby.

Then follow these steps:

  • Go to the Run and Debug section and create a new launch.json file.
  • Choose Ruby as the language.
  • Configure it with whatever you need. For example, if you want to do debugging in Ruby on Rails, put this in the script option: “${workspaceFolder}/bin/rails server”.

If you’re interested in this topic, check out my course on LinkedIn Learning, where I cover advanced debugging techniques and best practices for Ruby developers.

Link to extension

vscode-gemfile

vscode-gemfile logo

vscode-gemfile allows quick access to gem documentation directly from the Gemfile.

Why It’s Useful

Hovering over a gem name provides a link to its RubyDoc page, saving time when you need to check gem details or documentation.

Using vscode-gemfile

vscode-gemfile extension demo for Visual Studio Code
vscode-gemfile demo

Hover over a gem name in your Gemfile, and a popup will appear with a link to its documentation.

Link to extension

vscode-icons

vscode-icons logo

vscode-icons provides an icon pack that works well with Ruby projects.

Why It’s Useful

Icons help visually distinguish between different file types. vscode-icons offers a balanced style that makes navigating your project easier without being too flashy or dull.

Applying vscode-icons

vscode-icons extension demo for Visual Studio Code
vscode-icons demo

Install the extension and activate the icons via the command palette if prompted.

Link to extension

Summary

These are just a few of the Visual Studio Code extensions that have made my Ruby development workflow smoother. I encourage you to try them out and see how they fit into your work. Below is a quick reference list to all the mentioned extensions:

  • ANSI Colors: Colorize log files for readability.
  • Auto Close Tag: Automatically close tags in various file types.
  • ColorTabs: Assign different colors to tabs to easily organize and distinguish files.
  • Copy With Line Numbers: Copy snippets with line numbers for easy reference.
  • Endsmart: Automatically add end to Ruby blocks.
  • ERB Linter: Lint ERB files to ensure consistent style.
  • ESLint: Enforce JavaScript coding standards.
  • Git Blame: View the history of a line of code directly in the editor.
  • Git Graph: An inline IDE to manage your Git repository.
  • GitHub Theme: Apply GitHub’s official color schemes.
  • Output Colorizer: Colorize output panels for readability.
  • Rails DB Schema: Autocomplete model attributes and schema information.
  • Ruby LSP: Provide Ruby auto-completion, symbol search, highlight errors, showing documentation, and much more.
  • SVG: Create, modify, and preview SVGs.
  • VSCode rdbg Ruby Debugger: Debug Ruby applications visually.
  • vscode-gemfile: Quickly access gem documentation.
  • vscode-icons: Use a well-designed icon pack for easier file distinction.

If you have any other favorite extensions or tips for improving Ruby development, feel free to share them in the comments!

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

David Morales
David Morales

Written by David Morales

Exploring the intersections of productivity, economy, business, marketing, and software engineering for growth and success. 💻💼📈🚀

Responses (2)

Write a response