diff options
| author | 2025-11-26 19:02:28 -0500 | |
|---|---|---|
| committer | 2025-11-26 19:02:28 -0500 | |
| commit | c62f8376a13e7a4f493167aba1c66a9201fc59c6 (patch) | |
| tree | d58492f972be02c406d26620004e1ffe2086fbc7 /lib/roo/utils.rb | |
| parent | ae103e148eb3c15606b816505492d870ef062ad3 (diff) | |
New upstream version 3.0.0.upstream/3.0.0upstream
Diffstat (limited to 'lib/roo/utils.rb')
| -rw-r--r-- | lib/roo/utils.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/roo/utils.rb b/lib/roo/utils.rb index 2d6754a..9dcfd24 100644 --- a/lib/roo/utils.rb +++ b/lib/roo/utils.rb @@ -5,6 +5,7 @@ module Roo extend self LETTERS = ('A'..'Z').to_a + URI_PARSER = defined?(::URI::RFC2396_PARSER) ? ::URI::RFC2396_PARSER : ::URI::DEFAULT_PARSER def extract_coordinate(s) num = letter_num = 0 @@ -34,8 +35,6 @@ module Roo extract_coordinate(str) end - - def split_coord(str) coord = extract_coordinate(str) [number_to_letter(coord.column), coord.row] |
