Files | Admin

Notes:

Release Name: 0.13.0

Notes:
This release adds support for reading ODS and XLS files into Ruport's table structure:

Table("foo.ods") and Table("foo.xls") now work, so long as roo is installed.

Also, we've added support for ActiveRecord style query parameters:

Ruport::Query.new(["select * from fo where bar=?", 1234]) 

The old way still works, too:

Ruport::Query.new(:file => "foo", :params => [1234])




Changes: