Created
September 1, 2010 20:37
-
-
Save remear/561321 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
∴ rails server | |
Usage: | |
rails new APP_PATH [options] | |
Options: | |
-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) | |
-r, [--ruby=PATH] # Path to the Ruby binary of your choice | |
# Default: /Users/millsb/.rvm/rubies/ruby-1.8.7-head/bin/ruby | |
[--edge] # Setup the application with Gemfile pointing to Rails repository | |
[--skip-gemfile] # Don't create a Gemfile | |
[--dev] # Setup the application with Gemfile pointing to your Rails checkout | |
-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 | |
-G, [--skip-git] # Skip Git ignores and keeps | |
Runtime options: | |
-f, [--force] # Overwrite files that already exist | |
-p, [--pretend] # Run but do not make any changes | |
-q, [--quiet] # Supress status output | |
-s, [--skip] # Skip files that already exist | |
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
∴ rails help | |
Usage: | |
rails new APP_PATH [options] | |
Options: | |
-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) | |
-r, [--ruby=PATH] # Path to the Ruby binary of your choice | |
# Default: /Users/millsb/.rvm/rubies/ruby-1.8.7-head/bin/ruby | |
[--edge] # Setup the application with Gemfile pointing to Rails repository | |
[--skip-gemfile] # Don't create a Gemfile | |
[--dev] # Setup the application with Gemfile pointing to your Rails checkout | |
-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 | |
-G, [--skip-git] # Skip Git ignores and keeps | |
Runtime options: | |
-f, [--force] # Overwrite files that already exist | |
-p, [--pretend] # Run but do not make any changes | |
-q, [--quiet] # Supress status output | |
-s, [--skip] # Skip files that already exist | |
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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment