diff options
| author | Weston Ganger <[email protected]> | 2022-10-09 13:50:56 -0700 |
|---|---|---|
| committer | Weston Ganger <[email protected]> | 2022-10-09 13:50:56 -0700 |
| commit | 8694cab86130b9385231a21994b2f13f4c07924e (patch) | |
| tree | c009a6d0c9c8dba710957e9edc711e1f75b51947 /lib/axlsx.rb | |
| parent | fd8366970d9cb3f5fb431ba6c40a2a2ac2737615 (diff) | |
| download | caxlsx-8694cab86130b9385231a21994b2f13f4c07924e.tar.gz caxlsx-8694cab86130b9385231a21994b2f13f4c07924e.zip | |
Remove active_support dependency from axlsx_styler
Diffstat (limited to 'lib/axlsx.rb')
| -rw-r--r-- | lib/axlsx.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/axlsx.rb b/lib/axlsx.rb index f2403893..c30fcf26 100644 --- a/lib/axlsx.rb +++ b/lib/axlsx.rb @@ -166,6 +166,19 @@ module Axlsx end end + # utility method for performing a deep merge on a Hash + # @param [Hash] Hash to merge into + # @param [Hash] Hash to be added + def self.hash_deep_merge(first_hash, second_hash) + first_hash.merge(second_hash) do |key, this_val, other_val| + if this_val.is_a?(Hash) && other_val.is_a?(Hash) + Axlsx.hash_deep_merge(this_val, other_val) + else + other_val + end + end + end + # Instructs the serializer to not try to escape cell value input. # This will give you a huge speed bonus, but if you content has <, > or other xml character data # the workbook will be invalid and excel will complain. |
