This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hi fellow backenders | |
If you run into an issue with adding a gem that results in a bundler failure due to version mismatch ("Bundler could not find compatible versions for...") | |
It may well be that you will succeed by using either: | |
the version branch, or | |
the default (master|main) branch | |
in your Gemfile, e.g. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const exec = require('child_process').exec; | |
function openURL(url) { | |
let opener; | |
switch (process.platform) { | |
case 'darwin': | |
opener = 'open'; | |
break; | |
case 'win32': |