excel_to_code 0.3.14 → 0.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/src/excel_to_code.rb +1 -1
- data/src/simplify/map_formulae_to_values.rb +8 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d2c59c883974dffad372f4ddc7aefd00f1e9847
|
4
|
+
data.tar.gz: 268cb5f552b2e58ac9039321599593cd88811fcb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 018a1d2825910da4518ebd04328f08638780e6ebbe965b67940bd2f09213cb0783011ce2f34e7039f79a168754fe2a775240f09b703847ddfe6be744ebd0521d
|
7
|
+
data.tar.gz: 72264447d6bc4f05f4f4d8597d41aa6ae10be87b9108ea40747f0690ddac88bcb29358e5ad710b4a478cb79186af6abf277b3599ef649324b68d31ec2acf898c
|
data/src/excel_to_code.rb
CHANGED
@@ -191,6 +191,14 @@ class MapFormulaeToValues
|
|
191
191
|
normal_function(ast,nil)
|
192
192
|
end
|
193
193
|
|
194
|
+
def map_vlookup(ast)
|
195
|
+
normal_function(ast,nil)
|
196
|
+
end
|
197
|
+
|
198
|
+
def map_hlookup(ast)
|
199
|
+
normal_function(ast, nil)
|
200
|
+
end
|
201
|
+
|
194
202
|
OK_CHECK_RANGE_TYPES = [:sheet_reference, :cell, :area, :array, :number, :string, :boolean_true, :boolean_false]
|
195
203
|
|
196
204
|
def map_sumifs(ast)
|