说明:只针对Windows8.1
Windows下,上rubyinstaller上下载最新的railsinstaller包含Ruby2.1的,然后更新gem 用命令:
gem update --system
然后找好位置,使用命令:
rails new demo --skip-test-unit
注意,开启rails服务器只要进入项目目录使用命令:
rails server
即可,不需要bin/rails server
创建数据库使用
rake db:create 命令
不要再用gem装sqlite3了,因为railsinstaller已经安了sqlite
$ bin/rails g scaffold person name:string bio:text birthday:date