Method: CSV_MODULE::MyCSV#get_queries
- Defined in:
- lib/sentra/rest_client.rb
#get_queries ⇒ Object
11 12 13 14 15 16 17 18 |
# File 'lib/sentra/rest_client.rb', line 11 def get_queries queries = [] CSV.foreach(@filename, :headers=> true) do |row| queries.push(row.to_hash) #p row.to_hash end queries end |