Skip to content

Instantly share code, notes, and snippets.

@koko1000ban
Created February 15, 2012 01:43
Show Gist options
  • Save koko1000ban/1832414 to your computer and use it in GitHub Desktop.
Save koko1000ban/1832414 to your computer and use it in GitHub Desktop.
test_area_getter
module Ekispert
# よく考えると地域だからインスタンス化されるような使い方はないか..
module Area
LIST = [{ :name => :japan, :yomi => "全国", :code => 111 ..}, ..]
# クラスメソッドのかきかたわすれた..
module_function
def find(&block)
# クロージャで取捨選択
end
# ActiveRecordみたいにfind_by_xxxを自動生成しても
def find_by_code(code)
LIST.find{ |lst| lst.code == code }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment