SlideShare a Scribd company logo
1 of 32
Download to read offline
Rails 开发的⼀一些⼲干货
David
2015.8.16
• 2013.4 - 2013.10 主⼒力开发nanfang.com
• 2013.10 - 2014.6 主⼒力开发ezitask项⽬目
⼯工作经历
• github https://github.com/lexuszhi1990
• blog http://lingzhi.me/
Ruby 语⾔言
❖ DRY / COC
❖ 简洁 稳定 拓展
❖ 语⾔言⼗〸十分接近⼈人类语⾔言

“?, !” 的应⽤用(“ Model.any?” “String.merge!”)
!, ? , <
❖ merge!
❖ any?
❖ class A < B
blocks, Procs, lambdas 和 Methods
❖ array.collect! { |n| n ** 2 }
❖ square = proc { |n| n ** 2 }
❖ lambda { |n| n ** 2 }
❖ def square(n); n ** 2 ; end

method(:square).call(9)
Ruby 变量命名
❖ 起的名字是有意义的,可以表达⼀一个概念;
❖ 要考虑名字的长度,名称中只有必要的信息;
❖ 符合“编码规范”,帮助理解;
❖ ⼀一个概念不要多种名字混⽤用;
❖ 变量是及名词短语,⽅方法名是动词或者 动词_宾语
Ruby 编写规范
❖ guide style : https://github.com/bbatsov/
ruby-style-guide
❖ http://rocodev.gitbooks.io/rails-102/
content/chapter4-ruby/README.html
Rack
❖ a modular Ruby
webserver interface
❖ https://github.com/
rack/rack
❖ http://confreaks.tv/
videos/railsconf2013-
from-rails-to-the-web-
server-to-the-browser
Rails MVC
Rails controller
❖ request 处理
❖ Sessions处理
❖ Cookies处理
❖ Flash消息处理
❖ Render結果
controller 需要做的事情
[ihower actioncontroller](https://ihower.tw/rails4/actioncontroller.html)
[action controller overview](http://guides.rubyonrails.org/action_controller_overview.html)
rails controller
❖ action_name
❖ cookies
❖ headers
❖ params
❖ request
❖ xml_http_request? 或 xhr?
❖ host_with_port
❖ remote_ip
❖ headers
❖ response
❖ session
Request中包含有的信息
http://api.rubyonrails.org/classes/ActionDispatch/Request.html
Skinny Controller
❖ controller 的代码最多10⾏行
❖ 使⽤用 Concern。 其实也就是我们通常说的 Shared Mixin Module。就
是把 Controllers/Models ⾥里⾯面⼀一些通⽤用的应⽤用逻辑抽象到⼀一个
Module ⾥里⾯面做封装,我们约定叫它 Concern
❖ Delegation Pattern

[ruby forwardable](http://ruby-doc.org/stdlib-2.0.0/libdoc/
forwardable/rdoc/Forwardable.html)

[dive into forwardable](http://www.saturnflyer.com/blog/jim/
2015/01/20/ruby-forwardable-deep-dive/)
❖ Service and Presenter
http://yedingding.com/2013/03/04/steps-to-refactor-
controller-and-models-in-rails-projects.html
rails model
❖ the layer of the system responsible for
representing business data and logic
❖ Object Relational Mapping
❖ http://guides.rubyonrails.org/
active_record_basics.html
Model
❖ ActiveSupport::Concern
❖ ActiveSupport
❖ Class && Module(include && extend)
❖ Eigenclass and methods
PG - Extensions
❖ JSON
❖ Range Types
❖ Composite Types
❖ UUID
❖ Full Text Search
❖ fuzzystrmatch || Trigram
❖ cube
asset precompile
❖ http://gogojimmy.net/2012/07/03/understand-assets-
pipline/
asset precompile
❖ https://ruby-china.org/topics/19437
debugger
❖ pry
❖ log file
❖ https://speakerdeck.com/lidaobing/chu-liao-wen-ti-
bu-yao-kao-cai
❖ http://railscasts-china.com/episodes/do-not-guess-
the-problem-lidaobing
debugger
debugger
debugger
efficiency
❖ alias
❖ 熟练使⽤用 gems
❖ git
❖ ⼀一款顺⼿手的编辑器
Alias
❖ 封装最常⽤用的命令
❖ 推荐: https://github.com/rainchen/git-cmd-helpers
将常⽤用的⼏几个命令捆绑成⼀一个命令
❖ alias 'one-task-ended'='git-master-update && git-delete-
merged-branches && cap-staging-deploy‘
为每个项⽬目订制命令
熟练使⽤用的GEM
❖ http://codebeerstartups.com/2013/04/must-have-
gems-for-development-machine-in-ruby-on-rails/
基本的设计概念
❖ http://
book.douban.com/
subject/3323633/
❖ 对齐
❖ 颜⾊色
❖ 字体
❖ …
基本的设计概念
javacript
❖ Secrets of the JavaScript Ninja
❖ Functional JavaScript
API + JS框架
Q&A

More Related Content

Similar to Rails dev experices

Ruby in prijatelji
Ruby in prijateljiRuby in prijatelji
Ruby in prijatelji
Oto Brglez
 
Ruby on Rails: Outreach for Women, SF
Ruby on Rails: Outreach for Women, SFRuby on Rails: Outreach for Women, SF
Ruby on Rails: Outreach for Women, SF
Karen Zeller
 

Similar to Rails dev experices (20)

Ruby on Rails: a brief introduction
Ruby on Rails: a brief introductionRuby on Rails: a brief introduction
Ruby on Rails: a brief introduction
 
Ruby in prijatelji
Ruby in prijateljiRuby in prijatelji
Ruby in prijatelji
 
Ruby+rails
Ruby+railsRuby+rails
Ruby+rails
 
Ruby on Rails Training - Module 1
Ruby on Rails Training - Module 1Ruby on Rails Training - Module 1
Ruby on Rails Training - Module 1
 
Iron* - An Introduction to Getting Dynamic on .NET
Iron* - An Introduction to Getting Dynamic on .NETIron* - An Introduction to Getting Dynamic on .NET
Iron* - An Introduction to Getting Dynamic on .NET
 
IDLs
IDLsIDLs
IDLs
 
Ruby on Rails : First Mile
Ruby on Rails : First MileRuby on Rails : First Mile
Ruby on Rails : First Mile
 
遇見 Ruby on Rails
遇見 Ruby on Rails遇見 Ruby on Rails
遇見 Ruby on Rails
 
Golang workshop - Mindbowser
Golang workshop - MindbowserGolang workshop - Mindbowser
Golang workshop - Mindbowser
 
Kubernetes and AWS Lambda can play nicely together
Kubernetes and AWS Lambda can play nicely togetherKubernetes and AWS Lambda can play nicely together
Kubernetes and AWS Lambda can play nicely together
 
Ruby is dying. What languages are cool now?
Ruby is dying. What languages are cool now?Ruby is dying. What languages are cool now?
Ruby is dying. What languages are cool now?
 
Ruby On Rails Overview
Ruby On Rails OverviewRuby On Rails Overview
Ruby On Rails Overview
 
ruby-cocoa
ruby-cocoaruby-cocoa
ruby-cocoa
 
ruby-cocoa
ruby-cocoaruby-cocoa
ruby-cocoa
 
Bhavesh ro r
Bhavesh ro rBhavesh ro r
Bhavesh ro r
 
Real-world polyglot programming on the JVM - Ben Summers (ONEIS)
Real-world polyglot programming on the JVM  - Ben Summers (ONEIS)Real-world polyglot programming on the JVM  - Ben Summers (ONEIS)
Real-world polyglot programming on the JVM - Ben Summers (ONEIS)
 
Intro to Ruby on Rails
Intro to Ruby on RailsIntro to Ruby on Rails
Intro to Ruby on Rails
 
The story of language development
The story of language developmentThe story of language development
The story of language development
 
Ruby on Rails: Outreach for Women, SF
Ruby on Rails: Outreach for Women, SFRuby on Rails: Outreach for Women, SF
Ruby on Rails: Outreach for Women, SF
 
Using deploy in drupal 8
Using deploy in drupal 8Using deploy in drupal 8
Using deploy in drupal 8
 

Recently uploaded

%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
masabamasaba
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
VictoriaMetrics
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
masabamasaba
 

Recently uploaded (20)

AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 

Rails dev experices