19 20 21 22 23
# File 'lib/crowd_fund/fund_request.rb', line 19 def load_projects(file) CSV.foreach(file) do |row| add_project(Project.new(row[0], row[2].to_i, row[1].to_i)) end end