ruby-debug install error: failed to build gem native extension

前端 未结 8 2061
忘了有多久
忘了有多久 2021-01-30 02:46

I\'m running 1.9.2 with rails 3.

I\'m using rvm.

I did:

sudo gem install ruby-gem

and got:

Building native exte         


        
8条回答
  •  青春惊慌失措
    2021-01-30 03:12

    the ruby-debug gem is not compatible to Ruby 1.9.2 and later . replace gem 'ruby-debug19' with following You need use the gem ruby-debug19 So change in your Gemfile to use this one

    gem 'ruby-debug19'

提交回复
热议问题