2020-10-23 bundle update --conservative / puma install error
bundle update –conservative
保守的(conservative)にgem updateしたいときに便利なオプション、--conservative
。
$ bundle update --conservative rubocop
puma install error
puma がインストールできないというエラーに出くわした。
結果、下記のように設定すればOKっぽい。
$ bundle config build.puma --with-cflags="-Wno-error=implicit-function-declaration"
$ bundle install