https://github.com/jbox-web/acts_as_xlsx
https://github.com/jbox-web/acts_as_xlsx
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jbox-web/acts_as_xlsx
- Owner: jbox-web
- License: mit
- Created: 2019-03-14T00:33:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T16:06:03.000Z (10 months ago)
- Last Synced: 2024-09-06T19:13:23.951Z (10 months ago)
- Language: Ruby
- Size: 64.5 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ActsAsXLSX
[](https://github.com/jbox-web/acts_as_xlsx/blob/master/LICENSE)
[](https://github.com/jbox-web/acts_as_xlsx/releases/latest)
[](https://github.com/jbox-web/acts_as_xlsx/actions)
[](https://codeclimate.com/github/jbox-web/acts_as_xlsx)
[](https://codeclimate.com/github/jbox-web/acts_as_xlsx/coverage)ActsAsXLSX is an ActiveRecord plugin for Axlsx. It makes generating Excel spreadsheets from any subclass of ActiveRecord::Base as simple as a couple of lines of code.
## Installation
Put this in your `Gemfile` :
```ruby
git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }gem 'acts_as_xlsx', github: 'jbox-web/acts_as_xlsx', tag: '1.1.0'
```then run `bundle install`.
## Usage
See the Guides [here](http://axlsx.blog.randym.net/).