bcrypt をインストールできないのはなぜですか?

bcrypt をインストールできないのはなぜですか?

問題があります。「bundle install」コマンドを使用して Gem をインストールしようとすると、次の出力が表示されます。

Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

/usr/bin/ruby2.1 -r ./siteconf20141210-5447-g6skes.rb extconf.rb 
mkmf.rb can't find header files for ruby at /usr/lib/ruby/include/ruby.h

extconf failed, exit code 1

Gem files will remain installed in /var/lib/gems/2.1.0/gems/bcrypt-3.1.7 for inspection.
Results logged to /var/lib/gems/2.1.0/extensions/x86_64-linux/2.1.0/bcrypt-3.1.7/gem_make.out
An error occurred while installing bcrypt (3.1.7), and Bundler cannot continue.
Make sure that `gem install bcrypt -v '3.1.7'` succeeds before bundling.

なぜですか? どうすれば解決できますか?

答え1

最近のバージョンではbcrypt-rubyGMP ライブラリを使用しているようです。

次のようなものが役に立つはずです:

sudo aptitude install libgmp-dev

開発に必要なものをすべてインストールすることを忘れないでください:

sudo aptitude install build-essential

関連情報