2017-08-03 18 views
0

私は$..classでしたが、これはFixnumであることを示していますが、その値がどのように導出されているかわかりません。ここではスニペットの一部です。

csv_files.each do |csv_file| 
    method, year, currency_col = nil, nil, nil 

    CSV.foreach(csv_file, headers: true) do |row| 

    if $. == 2 
     method_col, year_col, currency_col = "Method", "Year", "Correct Currency" 
     method_col2, year_col2    = "Quotation Method", "Fiscal Year" 
     validate_headers(csv_file, row, [method_col, year_col, currency_col], [method_col2, year_col2, currency_col]) 

     method = row[method_col] || row[method_col2] 
     year = row[year_col] || row[year_col2] 
    end 

答えて

関連する問題