我在創建新的應用程序時遇到3.0.3之後的任何rails版本問題,我希望得到您的意見。如何使用rails> 3.0.3創建新的rails應用程序?
首先,我從系統中刪除導軌gem uninstall rails
並正確按照說明進行操作。然後我安裝最新版本的導軌gem install rails
,一切都很順利,我的系統上安裝了rails 3.0.7。
當我嘗試創建一個新的應用,這裏是我得到:
Usage:
rails new APP_PATH [options]
Options:
-J, [--skip-prototype] # Skip Prototype files
-T, [--skip-test-unit] # Skip Test::Unit files
-G, [--skip-git] # Skip Git ignores and keeps
-m, [--template=TEMPLATE] # Path to an application template (can be a filesystem path or URL)
[--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
[--skip-gemfile] # Don't create a Gemfile
-d, [--database=DATABASE] # Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite3/frontbase/ibm_db)
# Default: sqlite3
-r, [--ruby=PATH] # Path to the Ruby binary of your choice
# Default: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
-O, [--skip-active-record] # Skip Active Record files
Runtime options:
-q, [--quiet] # Supress status output
-s, [--skip] # Skip files that already exist
-f, [--force] # Overwrite files that already exist
-p, [--pretend] # Run but do not make any changes
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.
有沒有方法來創建一個框架,我不斷收到該菜單。
如果我刪除3.0.7並切換回3.0.3,那麼一切都很好,我得到一個應用程序骨架。如果我嘗試3.0.4,同樣的問題。
有什麼想法?
你正在運行什麼命令?我可以用'rails new project'創建一個新的框架' – 2011-05-17 17:40:51
剛試過一個新的rails gem(3.0.7),一切都很順利。你發佈的輸出是從'rails new(appname)'?你確定你不會忘記'new'? 'rails sometestapp'給了我你粘貼的菜單,但'rails new sometestapp'給我一個3.0.7版本的新rails應用程序。 – 2011-05-17 17:42:40
@RexM @Brett我正在運行'rails new appname',我仔細檢查了幾次。既然它適合你,它只能是我需要理解的一個配置問題。 – RaySF 2011-05-17 17:57:17