0

Ruby 2.1.1 で RVM を使用して linecache をインストールしようとしています。

$ ruby --version
ruby 2.1.2p95 (2014-05-08 revision 45877) [x86_64-linux]

bundle install を実行します

$ bundle install

bundle install を実行すると、1.9.x と互換性がないと言って吹き飛ばされます。

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

/home/g/.rvm/rubies/ruby-2.1.2/bin/ruby extconf.rb 
Can't handle 1.9.x yet
*** extconf.rb failed ***

Could not create Makefile due to some reason, probably lack of necessary libraries
and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/home/g/.rvm/rubies/ruby-2.1.2/bin/ruby

extconf failed, exit code 1

Gem files will remain installed in /home/g/.rvm/gems/ruby-2.1.2/gems/linecache-0.46 
for inspection.

Results logged to /home/g/.rvm/gems/ruby-2.1.2/extensions/x86_64-linux/2.1.0
/linecache-0.46/gem_make.out

An error occurred while installing linecache (0.46), and Bundler cannot continue.
Make sure that `gem install linecache -v '0.46'` succeeds before bundling.

ここで何が起こっているのでしょうか?

4

1 に答える 1

1

Linecache は 3 年間更新されていません。最後の更新でバージョン 1.9.3 になりました。2.1.1 を使用しているため、他の誰かのフォークからプルしない限り、gem は機能しません。ほとんどの場合、エラー メッセージは更新されていないため、新しいバージョンを認識していないため、1.9.x では無効であることを示しているだけです。

于 2014-06-22T05:06:03.647 に答える