我庄里都开始招 Ruby 了  
哎呦 顶一发 看过一半 平凡的世界,写的很不错,哈哈
对心理学很感兴趣 咋么办
你们在几楼呢
  千万别嵌套了  我就乱了
支持若水,若水很勤奋,很好学,自叹不如
#9 楼 @wangzuoxin @rei 这是 ruby-china 的 白帽子?
正期待东哥的新书,被这种行为恶心到了,声援东哥
微信号:ruby_and_rails
还有  ~/.ssh/config
inputrc 相当好用
tigrc 也是个好东东
set commit-order = topo         # Order commits topologically
set git-colors = no             # Do not read Git's color settings.
set horizontal-scroll = 33%     # Scroll 33% of the view width
set blame-options = -C -C -C    # Blame lines from other files
# Wrap branch names with () and tags with <>
# set reference-format = (branch) <tag>
# Configure blame view columns using command spanning multiple lines.
set main-view = \
        date:default \
        author:abbreviated \
        id:yes,color \
        commit-title
还有  ~/.ssh/config
inputrc 相当好用
我感觉 http://coolshell.cn/ 博主 干货超多的
follow 大神去
#17 楼 @runajiang 谢谢您提醒 我会保留我自己的判断力
permitted = ActionController::Parameters.new(params).require(:city).permit!
result = City.new(permitted).save
第一张照片的 背景好销魂
现在好想去啊
有北京的么
   墙列支持 peter 跟 rei
报名参加
 
老白干路过 默默的干了
tianya-style
module API
  class BaseEntity < Grape::Entity
    format_with(:null) { |v| v.blank? ? "" : v } //here
    format_with(:iso_timestamp) { |dt| dt.iso8601 if dt }
  end
end
module API
  class KldTwoB < BaseEntity
    expose :ceo, format_with: :null //this
    expose :cto, format_with: :null
    expose :deadline, format_with: :iso_timestamp
  end
end