StyleGuide
RubyStyleGuide
error
raise_rescue
raise SomeException, 'message'
# 捕获异常返回 nil
do_something rescue nildef method
# run code
rescue Timeout::Error
# do something ...
rescue => ex
# do something ...
endthrow_catch
def throw_some
throw :some,'some_throw'
endswap var
数组
flatten
获取
||=
||=&&=
&&=解构
Class
to_s
Module
Hash
获取
转换
Number
String
引号
new
拼接
替换
匹配
RailsStyleGuide
Macro Style Methods
最后更新于