- 浏览: 17370 次
最新评论
-
oldsong:
原来是直着长的,怎么后来忽然变斜了,好像树倒了
周末就要像个周末的样 -
up2u0609:
Hooopo 写道这是你养的草??呵呵,必须啊,带感吧?
周末就要像个周末的样 -
Hooopo:
这是你养的草??
周末就要像个周末的样 -
up2u0609:
edokeh 写道是不是有点快了啊。。。我自己一开始也担心。不 ...
rails 新人培训提纲 -
乌龙饭:
不是一般的快......
rails 新人培训提纲
难得要ZT一下!
The Guide
# Formatting
Use UTF-8 as the source file encoding.
Use 2 space indent, no tabs. (Your editor/IDE should have a setting to help you with that)
Use Unix-style line endings. (Linux/OSX users are covered by default, Windows users have to be extra careful)
if you’re using Git you might want to do this $ git config --global core.autocrlf true to protect your project from Windows line endings creeping into your project
Use spaces around operators, after commas, colons and semicolons, around { and before }.
sum = 1 + 2
a, b = 1, 2
1 > 2 ? true : false; puts "Hi"
[1, 2, 3].each { |e| puts e }
No spaces after (, [ and before ], ).
some(arg).other
[1, 2, 3].length
Indent when as deep as case. (as suggested in the Pickaxe)
case
when song.name == "Misty"
puts "Not again!" when song.duration > 120
puts "Too long!" when Time.now.hour > 21
puts "It's too late"
else
song.play
end
kind = case year
when 1850..1889 then "Blues"
when 1890..1909 then "Ragtime"
when 1910..1929 then "New Orleans Jazz" when 1930..1939 then "Swing"
when 1940..1950 then "Bebop"
else "Jazz"
end
Use an empty line before the return value of a method (unless it only has one line), and an empty line between defs.
def some_method
do_something
do_something_else
result
end
def some_method
result
end
Use RDoc and its conventions for API documentation. Don’t put an empty line between the comment block and the def.
Use empty lines to break up a method into logical paragraphs.
Keep lines fewer than 80 characters.
Emacs users should really have a look at whitespace-mode
Avoid trailing whitespace.
Emacs users - whitespace-mode again comes to the rescue
Syntax
Use def with parentheses when there are arguments. Omit the parentheses when the method doesn’t accept any arguments.
def some_method
# body omitted
end
def some_method_with_arguments(arg1, arg2)
# body omitted
end
Never use for, unless you exactly know why. Most of the time iterators should be used instead.
arr = [1, 2, 3]
# bad
for elem in arr do
puts elem
end
# good
arr.each { |elem| puts elem }
Never use then for multiline if/unless.
# bad
if x.odd? then
puts "odd"
end
# good
if x.odd?
puts "odd"
end
Use when x; … for one-line cases.
Use &&/|| for boolean expressions, and/or for control flow. (Rule of thumb: If you have to use outer parentheses, you are using the wrong operators.)
Avoid multiline ?: (the ternary operator), use if/unless instead.
Favor modifier if/unless usage when you have a single-line body.
# bad
if some_condition
do_something
end
# good
do_something if some_condition
# another good option
some_condition && do_something
Favor unless over if for negative conditions:
# bad
do_something if !some_condition
# good
do_something unless some_condition
# another good option
some_condition || do_something
Suppress superfluous parentheses when calling methods, but keep them when calling “functions”, i.e. when you use the return value in the same line.
x = Math.sin(y)
array.delete e
Prefer {…} over do…end for single-line blocks. Avoid using {…} for multi-line blocks. Always use do…end for “control flow” and “method definitions” (e.g. in Rakefiles and certain DSLs.) Avoid do…end when chaining.
Avoid return where not required.
# bad
def some_method(some_arr)
return some_arr.size
end
# good
def some_method(some_arr)
some_arr.size
end
Avoid line continuation (\) where not required. In practice avoid using line continuations at all.
# bad
result = 1 + \
2
# good
result = 1 \
+ 2
Using the return value of = is okay:
if v = array.grep(/foo/) ...
Use ||= freely.
# set name to Bozhidar, only if it's nil or false
name ||= "Bozhidar"
Avoid using Perl-style global variables(like $0-9, $`, …)
Naming
Use snake_case for methods and variables.
Use CamelCase for classes and modules. (Keep acronyms like HTTP, RFC, XML uppercase.)
Use SCREAMING_SNAKE_CASE for other constants.
The length of an identifier determines its scope. Use one-letter variables for short block/method parameters, according to this scheme:
a,b,c: any object
d: directory names
e: elements of an Enumerable
ex: rescued exceptions
f: files and file names
i,j: indexes
k: the key part of a hash entry
m: methods
o: any object
r: return values of short methods
s: strings
v: any value
v: the value part of a hash entry
x,y,z: numbers
And in general, the first letter of the class name if all objects are of that type.
When using inject with short blocks, name the arguments |a, e| (mnemonic: accumulator, element)
When defining binary operators, name the argument “other”.
def +(other)
# body omitted
end
Prefer map over collect, find over detect, find_all over select, size over length. This is not a hard requirement, though - if the use of the alias enhances readability - it’s ok to use it.
Comments
Write self documenting code and ignore the rest of this section.
Comments longer than a word are capitalized and use punctuation. Use two spaces after periods.
Avoid superfluous comments.
Keep existing comments up-to-date - no comment is better than an outdated comment.
Misc
Write ruby -w safe code.
Avoid hashes-as-optional-parameters. Does the method do too much?
Avoid long methods (longer than 10 LOC). Ideally most methods will be shorter than 5 LOC. Empty line do not contribute to the relevant LOC.
Avoid long parameter lists (more than 3-4 params).
Use def self.method to define singleton methods. This makes the methods more resistent to refactoring changes.
class TestClass
# bad
def TestClass.some_method
# body omitted
end
# good
def self.some_other_method
# body omitted
end
end
Add “global” methods to Kernel (if you have to) and make them private.
Avoid alias when alias_method will do.
Use OptionParser for parsing complex command line options and ruby -s for trivial command line options.
Write for Ruby 1.9. Don’t use legacy Ruby 1.8 constructs.
use the new JavaScript literal hash syntax
use the new lambda syntax
methods like inject now accept method names as arguments - [1, 2, 3].inject(:+)
Avoid needless metaprogramming.
Design
Code in a functional way, avoid mutation when it makes sense.
Do not mutate arguments unless that is the purpose of the method.
Do not mess around in core classes when writing libraries. (do not monkey patch them)
Do not program defensively. See this article for more details.
Keep the code simple (subjective, but still…). Each method should have a single well-defined responsibility.
Avoid more than 3 levels of block nesting.
Don’t overdesign. Overly complex solutions tend to be brittle and hard to maintain.
Don’t underdesign. A solution to a problem should be as simple as possible… but it should not be simpler than that. Poor initial design can lead to a lot of problems in the future.
Be consistent. In an ideal world - be consistent with the points listed here in this guidelines.
Use common sense.
The Guide
# Formatting
Use UTF-8 as the source file encoding.
Use 2 space indent, no tabs. (Your editor/IDE should have a setting to help you with that)
Use Unix-style line endings. (Linux/OSX users are covered by default, Windows users have to be extra careful)
if you’re using Git you might want to do this $ git config --global core.autocrlf true to protect your project from Windows line endings creeping into your project
Use spaces around operators, after commas, colons and semicolons, around { and before }.
sum = 1 + 2
a, b = 1, 2
1 > 2 ? true : false; puts "Hi"
[1, 2, 3].each { |e| puts e }
No spaces after (, [ and before ], ).
some(arg).other
[1, 2, 3].length
Indent when as deep as case. (as suggested in the Pickaxe)
case
when song.name == "Misty"
puts "Not again!" when song.duration > 120
puts "Too long!" when Time.now.hour > 21
puts "It's too late"
else
song.play
end
kind = case year
when 1850..1889 then "Blues"
when 1890..1909 then "Ragtime"
when 1910..1929 then "New Orleans Jazz" when 1930..1939 then "Swing"
when 1940..1950 then "Bebop"
else "Jazz"
end
Use an empty line before the return value of a method (unless it only has one line), and an empty line between defs.
def some_method
do_something
do_something_else
result
end
def some_method
result
end
Use RDoc and its conventions for API documentation. Don’t put an empty line between the comment block and the def.
Use empty lines to break up a method into logical paragraphs.
Keep lines fewer than 80 characters.
Emacs users should really have a look at whitespace-mode
Avoid trailing whitespace.
Emacs users - whitespace-mode again comes to the rescue
Syntax
Use def with parentheses when there are arguments. Omit the parentheses when the method doesn’t accept any arguments.
def some_method
# body omitted
end
def some_method_with_arguments(arg1, arg2)
# body omitted
end
Never use for, unless you exactly know why. Most of the time iterators should be used instead.
arr = [1, 2, 3]
# bad
for elem in arr do
puts elem
end
# good
arr.each { |elem| puts elem }
Never use then for multiline if/unless.
# bad
if x.odd? then
puts "odd"
end
# good
if x.odd?
puts "odd"
end
Use when x; … for one-line cases.
Use &&/|| for boolean expressions, and/or for control flow. (Rule of thumb: If you have to use outer parentheses, you are using the wrong operators.)
Avoid multiline ?: (the ternary operator), use if/unless instead.
Favor modifier if/unless usage when you have a single-line body.
# bad
if some_condition
do_something
end
# good
do_something if some_condition
# another good option
some_condition && do_something
Favor unless over if for negative conditions:
# bad
do_something if !some_condition
# good
do_something unless some_condition
# another good option
some_condition || do_something
Suppress superfluous parentheses when calling methods, but keep them when calling “functions”, i.e. when you use the return value in the same line.
x = Math.sin(y)
array.delete e
Prefer {…} over do…end for single-line blocks. Avoid using {…} for multi-line blocks. Always use do…end for “control flow” and “method definitions” (e.g. in Rakefiles and certain DSLs.) Avoid do…end when chaining.
Avoid return where not required.
# bad
def some_method(some_arr)
return some_arr.size
end
# good
def some_method(some_arr)
some_arr.size
end
Avoid line continuation (\) where not required. In practice avoid using line continuations at all.
# bad
result = 1 + \
2
# good
result = 1 \
+ 2
Using the return value of = is okay:
if v = array.grep(/foo/) ...
Use ||= freely.
# set name to Bozhidar, only if it's nil or false
name ||= "Bozhidar"
Avoid using Perl-style global variables(like $0-9, $`, …)
Naming
Use snake_case for methods and variables.
Use CamelCase for classes and modules. (Keep acronyms like HTTP, RFC, XML uppercase.)
Use SCREAMING_SNAKE_CASE for other constants.
The length of an identifier determines its scope. Use one-letter variables for short block/method parameters, according to this scheme:
a,b,c: any object
d: directory names
e: elements of an Enumerable
ex: rescued exceptions
f: files and file names
i,j: indexes
k: the key part of a hash entry
m: methods
o: any object
r: return values of short methods
s: strings
v: any value
v: the value part of a hash entry
x,y,z: numbers
And in general, the first letter of the class name if all objects are of that type.
When using inject with short blocks, name the arguments |a, e| (mnemonic: accumulator, element)
When defining binary operators, name the argument “other”.
def +(other)
# body omitted
end
Prefer map over collect, find over detect, find_all over select, size over length. This is not a hard requirement, though - if the use of the alias enhances readability - it’s ok to use it.
Comments
Write self documenting code and ignore the rest of this section.
Comments longer than a word are capitalized and use punctuation. Use two spaces after periods.
Avoid superfluous comments.
Keep existing comments up-to-date - no comment is better than an outdated comment.
Misc
Write ruby -w safe code.
Avoid hashes-as-optional-parameters. Does the method do too much?
Avoid long methods (longer than 10 LOC). Ideally most methods will be shorter than 5 LOC. Empty line do not contribute to the relevant LOC.
Avoid long parameter lists (more than 3-4 params).
Use def self.method to define singleton methods. This makes the methods more resistent to refactoring changes.
class TestClass
# bad
def TestClass.some_method
# body omitted
end
# good
def self.some_other_method
# body omitted
end
end
Add “global” methods to Kernel (if you have to) and make them private.
Avoid alias when alias_method will do.
Use OptionParser for parsing complex command line options and ruby -s for trivial command line options.
Write for Ruby 1.9. Don’t use legacy Ruby 1.8 constructs.
use the new JavaScript literal hash syntax
use the new lambda syntax
methods like inject now accept method names as arguments - [1, 2, 3].inject(:+)
Avoid needless metaprogramming.
Design
Code in a functional way, avoid mutation when it makes sense.
Do not mutate arguments unless that is the purpose of the method.
Do not mess around in core classes when writing libraries. (do not monkey patch them)
Do not program defensively. See this article for more details.
Keep the code simple (subjective, but still…). Each method should have a single well-defined responsibility.
Avoid more than 3 levels of block nesting.
Don’t overdesign. Overly complex solutions tend to be brittle and hard to maintain.
Don’t underdesign. A solution to a problem should be as simple as possible… but it should not be simpler than that. Poor initial design can lead to a lot of problems in the future.
Be consistent. In an ideal world - be consistent with the points listed here in this guidelines.
Use common sense.
发表评论
-
centos 部署记
2011-11-14 11:45 1042这事吧,干一次麻烦一次,还是记下来吧。 1. 装git和cur ... -
more than Rails from Rails internal----1.rdoc & term-ansicolor
2011-09-15 20:20 775抓紧续上吧。 这段时间忙了点别的事情,当爸爸了呵呵,顺便掏出时 ... -
more than Rails from Rails internal----0.index
2011-07-27 20:36 884Rails是一个成功的ruby社区集体作品,从最早的几个 ... -
[警报解除]gem升级警报:使用rails3.1的同学不要着急升级sprockets
2011-07-26 23:25 1366此警报已接触,请 ... -
gem思维:痛苦地漂移在实用性和扩展性之间
2011-07-25 22:29 0过去的这个周末花了一天还多的时间来写一个gem,obj ... -
ruby-debugger, Thank you for saving my life
2011-07-19 21:25 966恶啊……从最初到最后的最爱…… 在需要调试的地方输入debu ... -
rails 新人培训提纲
2011-07-11 23:10 1115第一天:学习基本的rails做法,写一个博客作为例子。学习mo ... -
assets pipeline...a little pain in ass till now
2011-06-23 18:39 1428http://www.rubyinside.com/how-t ... -
对R3.1里的mountable engine有点意见
2011-06-21 21:24 1241我只是一个Rails的使用者,很多的事情了解得并不深,视角和深 ... -
ubuntu9.10+rails2.3.5+postgresql8.4的靠谱配置
2010-01-26 12:05 914apt-get install postgresql po ... -
在rails3真正到来之前,写一个小东西,yy一下在非ar类里调用validation
2010-01-22 22:10 727实际是在工作过程中假公济私的一个即兴滥涂。 在2.3.5里通过 ... -
what difference between Array and Set, why Set is applied to widely in source
2009-12-04 17:18 680will complete later -
why we use abstract_class in active_record ?
2009-12-04 17:00 942in the sample below: class Boo ...
相关推荐
The goal of this guide is to manage this complexity by describing in detail the dos and don'ts of writing C++ code. These rules exist to keep the code base manageable while still allowing coders to ...
Since its public release in 1995, Ruby has drawn devoted coders worldwide. In 2006, Ruby achieved ...Ruby is also totally free. Not only free of charge, but also free to use, copy, modify, and distribute
### 使用DOS命令创建文件夹列表工具的知识点详解 在日常工作中,我们经常会遇到需要整理大量文件和文件夹的情况。特别是在处理大型项目时,文件结构可能会变得非常复杂,导致查找特定文件或文件夹变得十分困难。...
Totally NSSA(Not So Stubby Area)是特殊区域的一种,它扩展了NSSA(Not-So-Stubby Area)的功能,进一步限制了AS外部路由的传播。 Totally NSSA的主要特性在于,它不接受任何AS外部路由信息(即LSA3、LSA4、LSA5...
本文主要介绍并探讨完全正矩阵(Totally Positive Matrices)及其相关概念。虽然在数学的各个领域中都有出现,但相比一般意义上的正矩阵,完全正矩阵的概念对于线性代数学者来说相对较为陌生。本文旨在通过统一的...
Java and C# share many common characteristics and by focussing on the key similarities and differences between the two languages, From Java to C#: A Developer's Guide enables you to use your existing...
博图V16 Update1 Totally_Integrated_Automation_Portal_V16_Upd1.part1.rar
This beautifully written and totally revised second edition includes coverage of features that are new in Ruby 2.1, as well as expanded and updated coverage of aspects of the language that have ...
totally_global_world
**OSPF特殊区域Totally Stub的理解与配置** OSPF(Open Shortest Path First,开放最短路径优先)是一种广泛使用的内部网关协议(IGP),用于在单一自治系统(AS)内交换路由信息。在OSPF中,网络被划分为不同类型...
totally_global_world042
However it is sometimes useful to set the device back to a totally erased state, particularly when making partition table changes or OTA app updates. To erase the entire flash, run idf.py erase_flash...
The book will guide you in a clear and practical way to this hardware platform and the official ST CubeHAL, showing its functionalities with a lot of examples and tutorials. The book assumes that you...
This book is for Java programmers who want to prepare for the SCWCD exam, which focuses on the Servlet and JavaServer Pages technologies. This book will also be very useful for beginners since we have...
Through this comprehensive one-stop guide, you'll get to grips with the entire UIKit framework and in a flash, you'll be creating modern user interfaces for your iOS devices using Swift. Starting ...
The last and the final module is your guide to obtaining full access to next generation devices and browser technology. Create responsive applications that make snappy connections for mobile browsers ...