diff options
| author | Randy Morgan <[email protected]> | 2012-07-26 08:37:33 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-07-26 08:37:33 +0900 |
| commit | 32744f03415e38aa954146ad18a95a16f01c3f0e (patch) | |
| tree | 25be4c66f51f946eeda39973d5783c1e1d5eb4b8 /README.md | |
| parent | 03e66ca56d6f32cc87c3b969481c9a33df037001 (diff) | |
| download | caxlsx-32744f03415e38aa954146ad18a95a16f01c3f0e.tar.gz caxlsx-32744f03415e38aa954146ad18a95a16f01c3f0e.zip | |
update README to include axlsx_rails
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -29,7 +29,18 @@ Axlsx: Office Open XML Spreadsheet Generation If you are working in rails, or with active record see: * http://github.com/randym/acts_as_xlsx +acts_as_xlsx is a simple ActiveRecord mixin that lets you do stuff like +'''ruby + +Posts.where(created_at > Time.now-30.days).to_xlsx + +''' +To automatically generate a workbook + +** and ** + * http://github.com/straydogstudio/axlsx_rails +Axlsx_Rails provides an Axlsx renderer so you can move all your spreadsheet code from your controller into view files. Partials are supported so you can organize any code into reusable chunks (e.g. cover sheets, common styling, etc.) You can use it with acts_as_xlsx, placing the to_xlsx call in a view and add ':package => xlsx_package' to the parameter list. Now you can keep your controllers thin! There are guides for using axlsx and acts_as_xlsx here: [http://axlsx.blogspot.com](http://axlsx.blogspot.com) @@ -232,6 +243,8 @@ done without the help of the people below. [rfc2616](https://github.com/rfc2616) - for FINALLY working out the interop issues with google docs. +[straydogstudio](https://github.com/straydocstudio) - For making an AWESOME axlsx templating gem for rails. + #Copyright and License ---------- |
