문제

i am using ruby 1.8.7 and rails 3.0.12 for my project. when i run "bundle install", i get the following error.

Gem::InstallError: linecache19 requires Ruby version >= 1.9.2.
An error occurred while installing linecache19 (0.5.12), and Bundler cannot continue.

i don't want to change my ruby version.

도움이 되었습니까?

해결책

You can try using the debugger gem instead of ruby-debug. Check out your gemfile and replace gem "ruby-debug" with gem "debugger". From memory that's how I did it.

다른 팁

Replacing gem 'ruby-debug19' with gem 'ruby-debug' worked for me.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top