ROR学习笔记(34)——没想到还有这玩意

参考:
http://rails-practice.com/content/Chapter_1/1.3.html
感谢作者
不过正是因为现在才知道,我才对前端的一些东西有了解,否则啥也不知道。。。。

  1. 首先创建一个项目
rails new shop
  1. 增加下面三个gem,正是这三个gem实现了好看的样式
gem "therubyracer"
gem "less-rails"
gem "twitter-bootstrap-rails"
  1. 常规操作,运行后才能看到效果
bundle install
rails g scaffold product name price:decimal description:text
# 更新 db 解构
rake db:migrate
# 安装 bootstrap 文件
rails generate bootstrap:install
# 创建一个 layout
rails g bootstrap:layout
# 创建资源模板
rails g bootstrap:themed Products
rails s

OK,打开localhost:3000/products看一下效果。。如果出错,就在Gemfile里加这一行:gem 'sprockets', '=2.11.0'然后运行bundle update sprockets

你可能感兴趣的:(ROR学习笔记(34)——没想到还有这玩意)