所以我有一个应用程序,在该应用程序的Gemfile
中指定应该使用Rails -v 3.2.12,但是当我从该应用程序的目录中运行'rails -v
'时,'{输出{1}}'。关于为什么会发生这种情况的任何想法?
更新:
我现在正在使用Rails 2.3.14
。
答案 0 :(得分:0)
尝试使用:
运行bundle exec rails -v
您使用的是rbenv还是类似的?无论哪种方式,可能发生的是您安装了旧版本的rails。如果你不需要它:
gem uninstall rails -v 2.3.14
然后安装bundler和
bundle install
答案 1 :(得分:0)
好的,我刚刚安装了rvm
,然后按照以下链接中的说明进行操作: