我正在尝试在rails应用上启动服务器。有些应用程序可以正常使用,有些应用程序可以收到此消息:
rails s
Usage:
rails new APP_PATH [options]
Options:
[--skip-gemfile] # Don't create a Gemfile
-d, [--database=DATABASE] # Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite3/frontbase/ibm_db)
# Default: sqlite3
-O, [--skip-active-record] # Skip Active Record files
[--dev] # Setup the application with Gemfile pointing to your Rails checkout
-J, [--skip-prototype] # Skip Prototype files
-T, [--skip-test-unit] # Skip Test::Unit files
-G, [--skip-git] # Skip Git ignores and keeps
-r, [--ruby=PATH] # Path to the Ruby binary of your choice
# Default: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
-m, [--template=TEMPLATE] # Path to an application template (can be a filesystem path or URL)
-b, [--builder=BUILDER] # Path to an application builder (can be a filesystem path or URL)
[--edge] # Setup the application with Gemfile pointing to Rails repository
Runtime options:
-q, [--quiet] # Supress status output
-s, [--skip] # Skip files that already exist
-f, [--force] # Overwrite files that already exist
-p, [--pretend] # Run but do not make any changes
Rails options:
-h, [--help] # Show this help message and quit
-v, [--version] # Show Rails version number and quit
我正在使用Rails 3.0.3和ruby 1.8.7
答案 0 :(得分:3)
我认为您正在尝试使用此命令运行Rails 2.x应用程序。它会因此消息而失败。由于它在某些应用程序上始终失败,请检查它们是否是rails 2.x apps。
您只能使用此命令运行Rails 3.x应用程序。
答案 1 :(得分:1)
您必须缺少script/rails
个文件。也许你是偶然删除它,或者从Rails 2升级时做错了。只需从工作项目(或新项目)中复制它。
答案 2 :(得分:0)
我的猜测是你在's'之后加入了一个角色。如果你键入“Rails s”它会起作用,但如果输入“Rails s”则不行。
这与哪些应用有效以及哪些应用不起作用一致?
答案 3 :(得分:0)
我有同样的问题。我发现问题是通过从我的系统中删除rails 4.0.0beta1而创建的。我仍然安装了3.2版,但我认为删除也删除了脚本文件夹。输入后
gem install rails
它再次起作用。也许这有助于某人。