sheet_mapper icon indicating copy to clipboard operation
sheet_mapper copied to clipboard

Map spreadsheet rows to a ruby objects

Results 6 sheet_mapper issues
Sort by recently updated
recently updated
newest added

Hello, I started seeing the following error today when using this gem: ``` Authentication failed for [my username]: Response code 404 for post https://www.google.com/accounts/ClientLogin: https://developers.google.com/accounts/docs/AuthForInstalledApps ``` https://developers.google.com/accounts/docs/AuthForInstalledApps indicates that ClientLogin...

Add support for casting types automatically ``` column :body, String column :age, Integer ```

add support for call backs

Add support for validations

Add ability to insert a new spreadsheet row into the collection: ``` collection.create(:foo => "bar", ...) ```

Ability to delete a row: ``` record = collection.records[1] collection.delete(record) ```