DB の行の配列からハッシュを作成したいと考えています。以下のコードで簡単に実行できます。私はPHPからRubyに来ました。これが私のやり方です。Ruby(またはRails)でこれを行うためのより良い/適切な方法はありますか?
def features_hash
features_hash = {}
product_features.each do |feature|
features_hash[feature.feature_id] = feature.value
end
features_hash
end
# {1 => 'Blue', 2 => 'Medium', 3 => 'Metal'}