diff options
| author | Jorne Kandziora <[email protected]> | 2021-03-27 11:41:11 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-27 11:41:11 +0100 |
| commit | 6072a9f6052f2022f5281f4ce2a0df499c01d07a (patch) | |
| tree | 808e6a6e3075d8c58feca66a1cd673f8968d2840 /lib/axlsx.rb | |
| parent | 46c2ff10319cf068c15052ab2a320b974699e6e9 (diff) | |
| download | caxlsx-6072a9f6052f2022f5281f4ce2a0df499c01d07a.tar.gz caxlsx-6072a9f6052f2022f5281f4ce2a0df499c01d07a.zip | |
Replace mimemagic with marcel (#95)
Mimemagic requires users to download or install additional files.
Rails used Marcel as an abstration layer on this library. Marcel
was updated to another file matching database. Following Rails in
this matter will remove the need for users to do additional work,
just to use caxlsx.
Diffstat (limited to 'lib/axlsx.rb')
| -rw-r--r-- | lib/axlsx.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx.rb b/lib/axlsx.rb index be4a2cd5..5be3c526 100644 --- a/lib/axlsx.rb +++ b/lib/axlsx.rb @@ -1,7 +1,7 @@ # encoding: UTF-8 require 'htmlentities' require 'axlsx/version.rb' -require 'mimemagic' +require 'marcel' require 'axlsx/util/simple_typed_list.rb' require 'axlsx/util/constants.rb' |
