zoukankan      html  css  js  c++  java
  • rails s 命令不起作用

    diudiugirl@DIUs:/var/www/ashelf$ RAILS_ENV=production rails s
    Usage:
    rails new APP_PATH [options]
    
    Options:
    -r, [--ruby=PATH] # Path to the Ruby binary of your choice
    # Default: /home/diudiugirl/.rvm/rubies/ruby-2.3.0/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], [--no-skip-gemfile] # Don't create a Gemfile
    [--skip-bundle], [--no-skip-bundle] # Don't run bundle install
    -G, [--skip-git], [--no-skip-git] # Skip Git ignores and keeps
    -O, [--skip-active-record], [--no-skip-active-record] # Skip Active Record files
    -S, [--skip-sprockets], [--no-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], [--no-skip-javascript] # Skip JavaScript files
    [--dev], [--no-dev] # Setup the application with Gemfile pointing to your Rails checkout
    [--edge], [--no-edge] # Setup the application with Gemfile pointing to Rails repository
    -T, [--skip-test-unit], [--no-skip-test-unit] # Skip Test::Unit files
    [--old-style-hash], [--no-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], [--no-pretend] # Run but do not make any changes
    -q, [--quiet], [--no-quiet] # Suppress status output
    -s, [--skip], [--no-skip] # Skip files that already exist
    
    Rails options:
    -h, [--help], [--no-help] # Show this help message and quit
    -v, [--version], [--no-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.

    原因:缺少script文件夹或文件夹中缺少rails文件

    -------------------------------- |原来看似困难的事情是那么的简单ᶘ ᵒᴥᵒᶅ| --------------------------------
  • 相关阅读:
    IE6下,设置了domain,导致target指向iframe时,无法打开链接的问题及解决
    contains和compareDocumentPosition 方法来确定是否HTML节点间的关系
    xCode4.2中导入OpenFlow库到项目中出现编译警告warning: Semantic Issue: Writable atomic property
    NSXMLParser具体解析xml的应用详解
    CoCoa编程中视图控制器与视图类(一)
    CoCoa编程中视图控制器与视图类(二)
    关于值传递(高手请无视)
    程序员人生之DAN疼篇
    jquery杂谈jquery选择符
    怎么样把 swf格式 转换为flv格式
  • 原文地址:https://www.cnblogs.com/Sophiawow/p/5174841.html
Copyright © 2011-2022 走看看