Rails g迁移不起作用

时间:2012-09-09 08:24:21

标签: ruby-on-rails ruby migration

当我运行命令

  

rails g migration migration_name

我会收到“错误”消息:

Usage:
  rails new APP_PATH [options]

Options:
  -r, [--ruby=PATH]              # Path to the Ruby binary of your choice
                                 # Default: /Users/radek/.rvm/rubies/ruby-1.9.2-p290/bin/ruby
  -b, [--builder=BUILDER]        # Path to a application builder (can be a filesystem path or URL)
  -m, [--template=TEMPLATE]      # Path to an application template (can be a filesystem path or URL)
      [--skip-gemfile]           # Don't create a Gemfile
      [--skip-bundle]            # Don't run bundle install
  -G, [--skip-git]               # Skip Git ignores and keeps
  -O, [--skip-active-record]     # Skip Active Record files
  -S, [--skip-sprockets]         # Skip Sprockets files
  -d, [--database=DATABASE]      # Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite3/frontbase/ibm_db/sqlserver/jdbcmysql/jdbcsqlite3/jdbcpostgresql/jdbc)
                                 # Default: sqlite3
  -j, [--javascript=JAVASCRIPT]  # Preconfigure for selected JavaScript library
                                 # Default: jquery
  -J, [--skip-javascript]        # Skip JavaScript files
      [--dev]                    # Setup the application with Gemfile pointing to your Rails checkout
      [--edge]                   # Setup the application with Gemfile pointing to Rails repository
  -T, [--skip-test-unit]         # Skip Test::Unit files
      [--old-style-hash]         # Force using old style hash (:foo => 'bar') on Ruby >= 1.9

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

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.

    You can specify extra command-line arguments to be used every time
    'rails new' runs in the .railsrc configuration file in your home directory.

    Note that the arguments specified in the .railsrc file don't affect the
    defaults values shown above in this help message.

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.

这是我第一次收到这条消息。在其他项目中,此命令运行良好,但在这里我仍然收到此消息...

是什么造成的?我错过了什么吗? (是的,我是相应项目的根源)

3 个答案:

答案 0 :(得分:7)

您没有在rails生成的项目目录中运行它。你在它外面运行它。

编辑:如果缺少脚本文件夹,也可能是这样。或者,如果在项目文件夹中执行rails脚本,则脚本文件夹中缺少rails脚本。

答案 1 :(得分:0)

我也有同样的事情,我通过这样做来解决:

cd /root/path/to/your/project

bundle install

bundle update

Voilà:)

答案 2 :(得分:0)

尝试将名为脚本的文件夹添加到rails根目录。

在此文件夹中添加一个名为 rails 的文件并将其添加到其中

APP_PATH = File.expand_path('../../ config / application', FILE

需要File.expand_path('../../ config / boot',文件

需要“ rails / commands”

然后再次执行

跟踪g迁移migration_name