【发布时间】:2016-12-19 03:38:02
【问题描述】:
我使用了 rubyMine 并想运行调试器,但有错误,我的和 waht 需要做什么? screen
/home/ivan/.rbenv/versions/2.3.1/bin/ruby -e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) /home/ivan/host/courses/lesson8/bin/rake spec
Testing started at 20:27 ...
/home/ivan/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.12.4/lib/bundler/spec_set.rb:95:in `block in materialize': Could not find rake-11.3.0 in any of the sources (Bundler::GemNotFound)
我也有ruby-2.3.3
ruby -v
ruby 2.3.3p222 (2016-11-21 revision 56859) [x86_64-linux]
但我也有 rvm
rvm env
export PATH="/home/ivan/.rvm/gems/ruby-2.3.3/bin:/home/ivan/.rvm/gems/ruby-2.3.3@global/bin:/home/ivan/.rvm/rubies/ruby-2.3.3/bin:$PATH"
export GEM_HOME='/home/ivan/.rvm/gems/ruby-2.3.3'
export GEM_PATH='/home/ivan/.rvm/gems/ruby-2.3.3:/home/ivan/.rvm/gems/ruby-2.3.3@global'
export MY_RUBY_HOME='/home/ivan/.rvm/rubies/ruby-2.3.3'
export IRBRC='/home/ivan/.rvm/rubies/ruby-2.3.3/.irbrc'
unset MAGLEV_HOME
unset RBXOPT
export RUBY_VERSION='ruby-2.3.3'
我做错了什么? 如何更正 Ruby Mine 中的配置调试器?
【问题讨论】:
-
从命令行运行
gem update bundler。 -
Updating installed gems Nothing to update -
Rake 丢失。你跑
bundle install了吗?
标签: ruby-on-rails ruby debugging rubymine