forked from pillowfactory/csv-mapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHistory.txt
25 lines (19 loc) · 883 Bytes
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
== 0.5.0 2010-05-12
* Parsing performance is now approximately 8x-10x faster when not specifying a custom map_to class.
* Default class mapping is now Struct instead of OpenStruct
* Recommended usage is now "CsvMapper.import_csv(...)"
* Fixes recurring problem with using CsvMapper in rake tasks
* Keeps everything a little cleaner
* #map transformations now prefer blocks over lambdas or symbols.
* Converted from using newgem to jeweler for managing the library itself.
== 0.0.4 2009-08-05
* Merged contributions from Jeffrey Chupp - http://semanticart.com
* Added support for "Automagical Attribute Discovery"
* Added Ruby 1.9 compatibility
== 0.0.3 2008-12-22
* Fixed specs to work with RSpec 1.1.9 and later where Modules aren't auto included
== 0.0.2 2008-12-15
* Added #stop_at_row method to RowMap
== 0.0.1 2008-12-05
* 1 major enhancement:
* Initial release