Ruby on Rails,无法判断我是否已正确安装

时间:2011-03-24 22:23:03

标签: ruby-on-rails ruby-on-rails-3

我刚刚安装了Ruby on Rails,并准备开始运行教程,但是当我输入

@ heather-laptop:〜/ RubyProjects $ rails demo

我得到了

Usage:
  rails new APP_PATH [options]

Options:
  -G, [--skip-git]            # Skip Git ignores and keeps
      [--dev]                 # Setup the application with Gemfile pointing to your Rails 
checkout
  -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
  -m, [--template=TEMPLATE]   # Path to an application template (can be a filesystem path or URL)
      [--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
  -r, [--ruby=PATH]           # Path to the Ruby binary of your choice
                              # Default: /usr/bin/ruby1.8
  -J, [--skip-prototype]      # Skip Prototype files
  -T, [--skip-test-unit]      # Skip Test::Unit files

Runtime options:
  -f, [--force]    # Overwrite files that already exist
  -s, [--skip]     # Skip files that already exist
  -p, [--pretend]  # Run but do not make any changes
  -q, [--quiet]    # Supress status output

Rails options:
  -v, [--version]  # Show Rails version number and quit
  -h, [--help]     # Show this help message and quit

Description:
    The 'rails new' command creates a new Rails application with a default
    directory structure and configuration at the path you specify.

Example:
    rails new ~/Code/Ruby/weblog

    This generates a skeletal Rails installation in ~/Code/Ruby/weblog.
    See the README in the newly created application to get going.

我这样做得对吗?我需要添加标志吗?

2 个答案:

答案 0 :(得分:3)

您需要使用new ...确切地说输出...

rails new [Application Name]

答案 1 :(得分:0)

Usage:
  rails new APP_PATH [options]

如上面的输出所示,您错过了new

要开始使用Ruby on Rails,请阅读这些指南Getting started with Rails 3