diff options
| -rw-r--r-- | .travis.yml | 6 | ||||
| -rw-r--r-- | README.md | 12 | ||||
| -rw-r--r-- | appveyor.yml | 3 | ||||
| -rw-r--r-- | axlsx.gemspec | 2 | ||||
| -rw-r--r-- | lib/caxlsx.rb | 2 |
5 files changed, 16 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index e7627047..d37ee3ba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,9 +15,11 @@ notifications: matrix: include: - rvm: 2.1 - - rvm: 2.2.8 + - rvm: 2.2.10 - rvm: 2.3.5 - - rvm: 2.4.2 + - rvm: 2.4.7 + - rvm: 2.5.6 + - rvm: 2.6.4 - rvm: rbx-3 - rvm: jruby-19mode - rvm: jruby-9.1.17.0 @@ -10,14 +10,14 @@ Please consider helping develop and test these gems. Axlsx: Office Open XML Spreadsheet Generation ==================================== -[](http://travis-ci.org/randym/axlsx/) +[](https://travis-ci.com/caxlsx/caxlsx) If you are using axlsx for commercial purposes, or just want to show your appreciation for the gem, please don't hesitate to make a donation. **IRC**:[irc.freenode.net / #axlsx](irc://irc.freenode.net/axlsx) -**Git**:[http://github.com/caxlsx/axlsx](http://github.com/randym/axlsx) +**Git**:[http://github.com/caxlsx/caxlsx](http://github.com/caxlsx/caxlsx) **Google Group**: [https://groups.google.com/forum/?fromgroups#!forum/axlsx](https://groups.google.com/forum/?fromgroups#!forum/axlsx) @@ -38,9 +38,9 @@ appreciation for the gem, please don't hesitate to make a donation. **Release Date**: September 12th 2013 If you are working in rails, or with active record see: -[acts_as_xlsx](http://github.com/caxlsx/acts_as_xlsx) +[acts_as_caxlsx](http://github.com/caxlsx/acts_as_caxlsx) -acts_as_xlsx is a simple ActiveRecord mixin that lets you generate a workbook with: +acts_as_caxlsx is a simple ActiveRecord mixin that lets you generate a workbook with: ```ruby Posts.where(created_at > Time.now-30.days).to_xlsx @@ -56,7 +56,7 @@ There are guides for using axlsx and acts_as_xlsx here: If you are working with ActiveAdmin see: -[activeadmin-axlsx](http://github.com/caxlsx/activeadmin-axlsx) +[activeadmin-caxlsx](http://github.com/caxlsx/activeadmin-caxlsx) It provides a plugin and dsl for generating downloadable reports. @@ -125,7 +125,7 @@ Installing To install Axlsx, use the following command: - $ gem install axlsx + $ gem install caxlsx #Examples ------ diff --git a/appveyor.yml b/appveyor.yml index 0d7d5fce..c2fd1547 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,6 +2,9 @@ version: 2.1.0.{build}-{branch} environment: matrix: + - RUBY_VERSION: 26 + - RUBY_VERSION: 25 + - RUBY_VERSION: 24 - RUBY_VERSION: 23 - RUBY_VERSION: 22 - RUBY_VERSION: 21 diff --git a/axlsx.gemspec b/axlsx.gemspec index bfdf0f9b..7bd72d56 100644 --- a/axlsx.gemspec +++ b/axlsx.gemspec @@ -5,7 +5,7 @@ Gem::Specification.new do |s| s.version = Axlsx::VERSION s.authors = ["Randy Morgan", "Jurriaan Pruis", "Noel Peden"] s.email = '[email protected]' - s.homepage = 'https://github.com/caxlsx/axlsx' + s.homepage = 'https://github.com/caxlsx/caxlsx' s.platform = Gem::Platform::RUBY s.date = Time.now.strftime('%Y-%m-%d') s.summary = "Excel OOXML (xlsx) with charts, styles, images and autowidth columns." diff --git a/lib/caxlsx.rb b/lib/caxlsx.rb new file mode 100644 index 00000000..a82d49fb --- /dev/null +++ b/lib/caxlsx.rb @@ -0,0 +1,2 @@ +# encoding: UTF-8 +require 'axlsx.rb' |
