diff options
| author | Randy Morgan <[email protected]> | 2011-12-08 01:09:35 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2011-12-08 01:09:35 +0900 |
| commit | f19ef66e110c05b0df87554bc3b25f1d1dca067c (patch) | |
| tree | 159e475a688dfb9f8009d977a3cfde767f103372 | |
| parent | 0910dc150b319f65ec1d649f3e480143c537e228 (diff) | |
| download | caxlsx-f19ef66e110c05b0df87554bc3b25f1d1dca067c.tar.gz caxlsx-f19ef66e110c05b0df87554bc3b25f1d1dca067c.zip | |
library should require the version constant
| -rw-r--r-- | lib/axlsx.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/axlsx.rb b/lib/axlsx.rb index 7d0d9e05..4fbe2b92 100644 --- a/lib/axlsx.rb +++ b/lib/axlsx.rb @@ -1,10 +1,13 @@ Encoding::default_internal = 'UTF-8' unless RUBY_VERSION < '1.9' Encoding::default_external = 'UTF-8' unless RUBY_VERSION < '1.9' +require 'axlsx/version.rb' + require 'axlsx/util/simple_typed_list.rb' require 'axlsx/util/constants.rb' require 'axlsx/util/validators.rb' + # to be included with parsable intitites. #require 'axlsx/util/parser.rb' |
