Skip to content

Commit

Permalink
chore(nvim): don't install Solargraph
Browse files Browse the repository at this point in the history
Because it is causing problems on codespaces now:

  ERROR:  Error installing solargraph:
      The last version of nokogiri (>= 0) to support your Ruby & RubyGems was 1.15.5. Try installing it with `gem install nokogiri -v 1.15.5` and then running the current command again
      nokogiri requires Ruby version >= 3.0, < 3.4.dev. The current ruby version is 2.7.0.0.
  • Loading branch information
wincent committed Jan 16, 2024
1 parent 5d09fa3 commit a48d2a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aspects/nvim/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ task('install gems', async () => {
// TODO: maybe expose profile more directly in the DSL
const profile = variable('profile');
if (profile === 'codespaces' || profile === 'work') {
gems.push('sorbet', 'solargraph');
gems.push('sorbet');
}

await command('gem', ['install', ...gems], {
Expand Down

0 comments on commit a48d2a0

Please sign in to comment.