在 rails 4 中安装 insoshi,在 windows 7 中安装 ruby 1.9.3

installing insoshi in rails 4 with ruby 1.9.3 in windows 7

我正在尝试在 Rails 4 中使用 Insoshi,在 $ script/install 之前一切正常。每当我将此命令放入命令提示符时,我都会收到此错误:

'script' is not recognized as an internal or external command, operable program or batch file.

我是 rails 的新手,想尝试 Insoshi。如果可以的话请帮忙。我在 Windows 7.

上使用 Rails 4.0.0 和 Ruby 1.9.3

用法 ruby script/install 出现在 Rails 2.3.x 版本及更早的版本中。

如果您查看 insoshi https://github.com/insoshi/insoshi/blob/master/script/install

中的 script/install 文件

你可以看到下面的命令

system("rake gems:install")
# Install the gem dependencies (if any).
system("sudo rake gems:install")
# Create the databases.
system("rake db:create:all")
# Run the main install task.
system("rake install")

所以你可以运行那些命令

cd insoshi bundle exec rake db:create bundle exec rake install