Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
gem roo または同様の gem を使用して CSV ファイルをインポートすることは可能ですか? また、そのcsvファイルの最初の行を他のすべての行にハッシュとしてバインドする必要があります。
組み込みの CSV を使用できます。
require 'csv' options = { headers: true } CSV.foreach 'path/to/file.csv', options do |row| puts row.to_hash end