DEV Community

Discussion on: Complete Guide to setup VS Code for Ruby on Rails (Debugger, Linter, Completion, Formatting)

Collapse
 
cindrmon profile image
Cindr Mon • Edited

There's something wrong when i bundle install with debase. it always gives me this error: Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

Collapse
 
exconf profile image
Sergiy

Try to replace the line
gem "debase", require: false
with
gem 'debase', '~> 0.2.5.beta2', require: false
in your Gemfile. Worked for me.