robust_excel_ole 1.19.2 → 1.19.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/Changelog +4 -1
- data/README.rdoc +5 -1
- data/bin/{jreo.bat → jreo} +0 -0
- data/bin/reo +2 -19
- data/bin/reo.rb +21 -0
- data/lib/robust_excel_ole/version.rb +1 -1
- data/robust_excel_ole.gemspec +1 -0
- metadata +19 -5
- data/bin/reo.bat +0 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 708ee59b1de0837be9b9c43acfeafb381d40e4548394325d96f05f563db2b442
|
|
4
|
+
data.tar.gz: 1c1aae5be7989a82c359e56afa298fc8757adf7d50dee937f8cd8b17d6281653
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7406dead8ea47a8ba23289266e70820257c3367e019f4715e151e760225534637a009cd436be2215264cd820392c3faa95d51463cfb319c372253815859d11b1
|
|
7
|
+
data.tar.gz: b84d2f084ee989b10f870540e7bea9e111af45b72b9dc1263fa80ffa341c1b0991d5cc0fff971797ec94af43d1c0dbac5d8031a4b8f4e633966e69a9a7dfa00a
|
data/Changelog
CHANGED
data/README.rdoc
CHANGED
|
@@ -61,7 +61,11 @@ or as a console. You can start the console via the command
|
|
|
61
61
|
|
|
62
62
|
reo
|
|
63
63
|
|
|
64
|
-
|
|
64
|
+
If you want to start the console under jruby, and if you don't want to use a version manager to switch between ruby and jruby, then use the command
|
|
65
|
+
|
|
66
|
+
jreo
|
|
67
|
+
|
|
68
|
+
The call of the console will include RobustExcelOle for you.
|
|
65
69
|
|
|
66
70
|
The following examples can be used for both scripts and console. If you have started the console in the gem path, you can just put these examples.
|
|
67
71
|
|
data/bin/{jreo.bat → jreo}
RENAMED
|
File without changes
|
data/bin/reo
CHANGED
|
@@ -1,21 +1,4 @@
|
|
|
1
|
-
require 'pry'
|
|
2
|
-
require 'robust_excel_ole'
|
|
3
|
-
include REO
|
|
4
|
-
# include RobustExcelOle
|
|
5
|
-
include General
|
|
6
1
|
|
|
7
|
-
|
|
8
|
-
puts
|
|
2
|
+
@echo off
|
|
9
3
|
|
|
10
|
-
|
|
11
|
-
# some pry configuration
|
|
12
|
-
Pry.config.windows_console_warning = false
|
|
13
|
-
Pry.config.history.should_save = true
|
|
14
|
-
#Pry.editor = 'notepad' # 'subl', 'vi'
|
|
15
|
-
#Pry.config.prompt =
|
|
16
|
-
# [
|
|
17
|
-
# ->(_obj, _nest_level, _) { ">> " },
|
|
18
|
-
# ->(*) { " " }
|
|
19
|
-
# ]
|
|
20
|
-
|
|
21
|
-
pry
|
|
4
|
+
ruby reo
|
data/bin/reo.rb
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
require 'pry'
|
|
2
|
+
require 'robust_excel_ole'
|
|
3
|
+
include REO
|
|
4
|
+
# include RobustExcelOle
|
|
5
|
+
include General
|
|
6
|
+
|
|
7
|
+
puts 'REO console started'
|
|
8
|
+
puts
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# some pry configuration
|
|
12
|
+
Pry.config.windows_console_warning = false
|
|
13
|
+
Pry.config.history.should_save = true
|
|
14
|
+
#Pry.editor = 'notepad' # 'subl', 'vi'
|
|
15
|
+
#Pry.config.prompt =
|
|
16
|
+
# [
|
|
17
|
+
# ->(_obj, _nest_level, _) { ">> " },
|
|
18
|
+
# ->(*) { " " }
|
|
19
|
+
# ]
|
|
20
|
+
|
|
21
|
+
pry
|
data/robust_excel_ole.gemspec
CHANGED
|
@@ -33,6 +33,7 @@ Gem::Specification.new do |s|
|
|
|
33
33
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
34
34
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
35
35
|
s.require_paths = ["lib"]
|
|
36
|
+
s.add_runtime_dependency "pry", '>= 0.12.1'
|
|
36
37
|
s.add_development_dependency "rspec", '>= 2.6.0'
|
|
37
38
|
s.required_ruby_version = '>= 2.1'
|
|
38
39
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: robust_excel_ole
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.19.
|
|
4
|
+
version: 1.19.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- traths
|
|
@@ -10,6 +10,20 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2020-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: pry
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.12.1
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.12.1
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: rspec
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -34,9 +48,9 @@ description: "RobustExcelOle helps controlling Excel. \n This
|
|
|
34
48
|
email:
|
|
35
49
|
- Thomas.Raths@gmx.net
|
|
36
50
|
executables:
|
|
37
|
-
- jreo
|
|
51
|
+
- jreo
|
|
38
52
|
- reo
|
|
39
|
-
- reo.
|
|
53
|
+
- reo.rb
|
|
40
54
|
extensions: []
|
|
41
55
|
extra_rdoc_files:
|
|
42
56
|
- README.rdoc
|
|
@@ -65,9 +79,9 @@ files:
|
|
|
65
79
|
- benchmarking/sample_excel_files/xlsx_500_rows.xlsx
|
|
66
80
|
- benchmarking/simple_xlsx_reader_example.rb
|
|
67
81
|
- benchmarking/spreadsheet_example.rb
|
|
68
|
-
- bin/jreo
|
|
82
|
+
- bin/jreo
|
|
69
83
|
- bin/reo
|
|
70
|
-
- bin/reo.
|
|
84
|
+
- bin/reo.rb
|
|
71
85
|
- docs/README_excel.rdoc
|
|
72
86
|
- docs/README_open.rdoc
|
|
73
87
|
- docs/README_ranges.rdoc
|
data/bin/reo.bat
DELETED