Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-06-27から1日間の記事一覧

Ruby on Rails | ActiveModelの規約

概要 ActiveModelの規約 詳細 ActiveModelは、いくつかの規約を前提とすることで成り立っています。 クラス名・テーブル名 クラス名は対象の単数形のアッパーキャメルケース テーブル名は対象の複数形のスネークケース 主キー キー名を id とする 外部キー …

Ruby | Method | to_proc

概要 Method#to_proc -> Proc 詳細 self を call する Proc オブジェクトを生成して返却。 サンプルコード 1.rb require 'tbpgr_utils' class Hoge def hoge1 "hoge" end def hoge2(param1, param2) [param1, param2]*2 end end h = Hoge.new m1 = h.method(…