Ошибка // Использование: rails new APP_PATH [options] // при запуске 'rails server' - PullRequest
5 голосов
/ 09 января 2011

Справочная информация:

Я использую GIT, чтобы получить репозиторий проекта с файлами Ruby в нем. Проект живет в моей папке SITES в домашней директории на моем Mac.

У меня есть Ruby: 1.8.7

Я только что обновил Rails до: 3.0.3

Все, что я пытаюсь сделать, это иметь возможность рендерить localhost.com:3000 в моем браузере проекта GIT, который я уже скачал, чтобы я мог работать с ним локально.

Я выполнил команду 'rails server' и получил следующее сообщение ::

Usage:
  rails new APP_PATH [options]

Options:
      [--skip-gemfile]        # Don't create a Gemfile
  -m, [--template=TEMPLATE]   # Path to an application template (can be a filesystem path or URL)
  -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
  -J, [--skip-prototype]      # Skip Prototype files
  -T, [--skip-test-unit]      # Skip Test::Unit files
      [--dev]                 # Setup the application with Gemfile pointing to your Rails checkout
  -r, [--ruby=PATH]           # Path to the Ruby binary of your choice
                              # Default: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
  -G, [--skip-git]            # Skip Git ignores and keeps
  -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:
  -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:
  -h, [--help]     # Show this help message and quit
  -v, [--version]  # Show Rails version number 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 ]

11 голосов
/ 09 января 2011

Вы запускаете rails server из неправильного каталога. Перейдите в каталог, содержащий ваше приложение, и выполните команду оттуда. Например, если вы запустили rails new thingy, вы должны быть в каталоге thingy при использовании rails server.

7 голосов
/ 30 июля 2012

Я получил это при переходе с рельсов 2 на рельсы 3 также. Затем я запустил rails new ., чтобы заменить все необходимые файлы, и после этого все заработало.

...