Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: fixed markdown #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 13 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,15 @@ Acts_as_xlsx is an active record plugin for Axlsx. It makes generating excel spr
Feature List
------------

**1. Mixes into active record base to provide to_xlsx

**2. Can work at the end of any series of finder methods.

**3. Can accept any set of find options

**4. Automates localization of column heading with i18n support

**5. Lets you specify columns and methods chains you want to call to populate your table in one go.

**6. Gives you access to the axlsx package so you can add styles, charts and pictures to satisfy those flashy sales guys.

**7. Plays nicely with both ruby 1.8.7 + rails 2.3 as well as ruby 1.9.3 + rails 3

**8. Automatically registers xlsx Mime type for use in respond_to web-service support.

**9. Allows you to specify the Axlsx package to add your data to so you can create a single workbook with a sheet for each to_xlsx call.
1. Mixes into active record base to provide to_xlsx
2. Can work at the end of any series of finder methods.
3. Can accept any set of find options
4. Automates localization of column heading with i18n support
5. Lets you specify columns and methods chains you want to call to populate your table in one go.
6. Gives you access to the axlsx package so you can add styles, charts and pictures to satisfy those flashy sales guys.
7. Plays nicely with both ruby 1.8.7 + rails 2.3 as well as ruby 1.9.3 + rails 3
8. Automatically registers xlsx Mime type for use in respond_to web-service support.
9. Allows you to specify the Axlsx package to add your data to so you can create a single workbook with a sheet for each to_xlsx call.

Installing
----------
Expand All @@ -47,25 +39,25 @@ To install, use the following command:
Usage
-----

###Examples
### Examples

See the Guides here:

[http://axlsx.blogspot.com/] (http://axlsx.blogspot.com/)
[http://axlsx.blogspot.com/](http://axlsx.blogspot.com/)

For examples on how to use axlsx for custom styles, charts, images and more see:

[http://github.com/randym/axlsx](http://github.com/randym/axlsx)

###Documentation
### Documentation

This gem is 100% documented with YARD, an exceptional documentation library. To see documentation for this, and all the gems installed on your system use:

gem install yard
yard server -g


###Specs
### Specs

This gem has 100% coverage using Test::Unit

Expand Down