在我的rails3應用程序中我已經安裝了rspec。但是當我在我的控制檯中運行rspec命令時,會出現以下錯誤。Rails 3 - Rspec
C:\myapp>rspec spec
'rspec' is not recognized as an internal or external command,
operable program or batch file.
請幫忙。
在此先感謝。
在我的rails3應用程序中我已經安裝了rspec。但是當我在我的控制檯中運行rspec命令時,會出現以下錯誤。Rails 3 - Rspec
C:\myapp>rspec spec
'rspec' is not recognized as an internal or external command,
operable program or batch file.
請幫忙。
在此先感謝。
您可以嘗試
bundle exec rspec spec
它不解決根本問題,但它是一個快速的變通
編輯:做了一些谷歌搜索給你的,你嘗試過嗎? http://getsatisfaction.com/railstutorial/topics/rspec_command_not_found#reply_4313182
您需要將ruby gems目錄添加到PATH環境變量中。
對於我來說這是「C:\ Program Files \ Ruby192 \ lib \ ruby \ gems」,但這取決於版本和安裝目錄。通過轉到計算機>系統屬性>高級系統設置>環境變量>路徑>編輯,可以將其添加到PATH變量中。確保你不擦除現有的內容。相反,添加一個分號並粘貼寶石路徑。
祝你好運。
我知道這個工作的周圍。但我想知道這個的根本原因。儘管謝謝你的回答。這可能對其他人有幫助。 :) – Rohit 2011-03-14 14:20:30
你應該可能某種窗口標籤的問題,因爲這是真的是什麼,而不是具體的軌道:) – leflings 2011-03-14 14:31:13
@Rohit增加了一些信息給我的答案,檢查出來 – leflings 2011-03-15 09:57:54