1.整理Ruby相关的各种概念(rvm, gem, bundle, rake, rails等)
http://www.cnblogs.com/ziyouchutuwenwu/p/4099690.html
2.
rails 开发环境 进入到 生产环境:
RAILS_ENV=production rails c
exit 退出
3.辅助方法:
link_to #生成一个链接
image_tag:'logo.png' #asset/images下的图片引用
number_to_currency # ¥
form_tag #
form_for #
<%= stylesheet_link_tag "application", :media => "all" %> #头部引用CSS文件
<%= javascript_include_tag "application" %> #尾部引用JS文件
表单帮助方法
http://guides.ruby-china.org/form_helpers.html
http://314858770.iteye.com/blog/691999
http://www.thinksaas.cn/group/topic/283930/
4.
<%= render @products %> #引用局部模板partial : _products.html.erb
<%= render 'flash' %> #_flash.html.erb 放在共享文件中
5.
介绍 Rails 4.0 的 Turbolinks
http://www.oschina.net/translate/introducing-turbolinks-for-rails-4-0
6.
Rails应用目录结构
https://ruby-china.org/topics/2432
7.
Sunspot 学习笔记