私はこのようなコードを持っています:
class Foo
# (method definitions)
def make_hash
{
some_method: some_method,
some_other_method: some_other_method
}
end
end
どうすれば単純化、つまりDRYできmake_hash
ますか?slice
Railsのようなものが欲しいのですattributes.slice
が、通常のクラスのメソッドに適用します。