excel_to_code 0.3.2 → 0.3.3
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/compile/c/a.out +0 -0
- data/src/excel/excel_functions/find.rb +4 -0
- data/src/excel_to_code.rb +1 -1
- data/src/simplify/map_formulae_to_values.rb +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0663c5e494db3faed27a118aa4cce8b2b5095655
|
4
|
+
data.tar.gz: 0aab1b24a30a1cea9a91ebdc0fed82f84bc3ec59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 401103eb0a1c639486412b7c735d322bbb060ddb1ebdc83d973a810e330e1e412070dd4b96f423ab9b5502c1ba2eb02ba73f19634fe4a176a443243d3802a66b
|
7
|
+
data.tar.gz: c746f24035da13f0e34581b48df68ae7fe7f4ddb2ccae54a320692a729cf8c0ae0cf9cc95a89ba5cfd98bba5f0e26aa8a8acbf8f474a21e963a111fa858932e3
|
data/src/compile/c/a.out
CHANGED
Binary file
|
@@ -8,6 +8,10 @@ module ExcelFunctions
|
|
8
8
|
# nils are treated as empty strings
|
9
9
|
find_text ||= ""
|
10
10
|
within_text ||= ""
|
11
|
+
|
12
|
+
# Other things should be turned into a string
|
13
|
+
find_text = find_text.to_s
|
14
|
+
within_text = within_text.to_s
|
11
15
|
|
12
16
|
# there are some cases where the start_number is remapped
|
13
17
|
case start_number
|
data/src/excel_to_code.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: excel_to_code
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Counsell, Green on Black Ltd
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubypeg
|