level 6
rails new hello --skip-bundle
rails s -p 4000
2017年02月16日 23点02分
4
level 2
先要安装好所需的 环境
sudo apt install ruby
gem install rails
新建一个app
rails new hello
进入 app
cd hello
运行
rails s -p 4000
2017年11月24日 09点11分
5
level 1
rails new hello
cd hello
gem install bundle
bundle install
bundle exec rails s -p 4000 &
2017年12月31日 10点12分
6