# 6.6 常用 Gem
## 概要:
本课时总结本书内提到的常用的工具类 Gem。
## 正文
### Devise
提供了用户注册,登录,邮件确认等众多实用功能。
[https://github.com/plataformatec/devise](https://github.com/plataformatec/devise)
### will_paginate
分页。
[https://github.com/mislav/will_paginate](https://github.com/mislav/will_paginate)
### cancan(can)
权限管理。因为 Ryan Bates已经两年没有维护 cancan 的代码,Ruby 社区推出了 cancancan。
[https://github.com/CanCanCommunity/cancancan](https://github.com/CanCanCommunity/cancancan)
### carrierwave
文件上传。
[https://github.com/carrierwaveuploader/carrierwave](https://github.com/carrierwaveuploader/carrierwave)
### ransack
搜索。
[https://github.com/activerecord-hackery/ransack](https://github.com/activerecord-hackery/ransack)
### Active Admin
后台管理。
[https://github.com/activeadmin/activeadmin](https://github.com/activeadmin/activeadmin)
### Simple Form
方便易用的表单。
[https://github.com/plataformatec/simple_form](https://github.com/plataformatec/simple_form)
### Paranoia
物理和逻辑删除记录。
[lhttps://github.com/radar/paranoia](https://github.com/radar/paranoia)
### omniauth
第三方验证。
[https://github.com/intridea/omniauth](https://github.com/intridea/omniauth)
### settingslogic
配置文件管理。
[https://github.com/binarylogic/settingslogic/](https://github.com/binarylogic/settingslogic/)
### Spree
开源的电商程序。
[https://github.com/spree/spree](https://github.com/spree/spree)
### Ruby China 社区源码
开源的社区程序。
[https://github.com/ruby-china/ruby-china](https://github.com/ruby-china/ruby-china)
- 写在前面
- 第一章 Ruby on Rails 概述
- Ruby on Rails 开发环境介绍
- Rails 文件简介
- 用户界面(UI)设计
- 第二章 Rails 中的资源
- 应用 scaffold 命令创建资源
- REST 架构
- 深入路由(routes)
- 第三章 Rails 中的视图
- 布局和辅助方法
- 表单
- 视图中的 AJAX 交互
- 模板引擎的使用
- 第四章 Rails 中的模型
- 模型的基础操作
- 深入模型查询
- 模型中的关联关系
- 模型中的校验
- 模型中的回调
- 第五章 Rails 中的控制器
- 控制器中的方法
- 控制器中的逻辑
- 第六章 Rails 的配置及部署
- Assets 管理
- 缓存及缓存服务
- 异步任务及邮件发送
- I18n
- 生产环境部署
- 常用 Gem
- 写在后面