blob: 175371e829e85bfb014bc2970a3b8b832b31a343 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# encoding: UTF-8
module Axlsx
# The version of the gem
# When using bunle exec rake and referencing the gem on github or locally
# it will use the gemspec, which preloads this constant for the gem's version.
# We check to make sure that it has not already been loaded
VERSION="1.1.0" unless Axlsx.const_defined? :VERSION
end
|