robust_excel_ole 1.19.2 → 1.19.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ba39d6930c0c0ba0391bd5a75bcbee0d5cfc33e8459ea0f45b383988a8b1621
4
- data.tar.gz: dc710437e2290d5caa21866349fe85d05752c7c5d2649010f150dce588f9ab90
3
+ metadata.gz: 708ee59b1de0837be9b9c43acfeafb381d40e4548394325d96f05f563db2b442
4
+ data.tar.gz: 1c1aae5be7989a82c359e56afa298fc8757adf7d50dee937f8cd8b17d6281653
5
5
  SHA512:
6
- metadata.gz: 7b227106e853e8395300f9c76886e7cf0d93e55ca52902eed745f0ca23874ff9af0c34214362c07da448c29b3e68a0817684cdc75b911b3d33711664915b1f4f
7
- data.tar.gz: aee9dac89259c407dd9b8f8ab5035af84bdc3c5561b40be6075af2602f590adcad0e45f945ff72ed5a4bf229a9b29c75e3cc16bf3d961f3d2ad669ce8a2e054c
6
+ metadata.gz: 7406dead8ea47a8ba23289266e70820257c3367e019f4715e151e760225534637a009cd436be2215264cd820392c3faa95d51463cfb319c372253815859d11b1
7
+ data.tar.gz: b84d2f084ee989b10f870540e7bea9e111af45b72b9dc1263fa80ffa341c1b0991d5cc0fff971797ec94af43d1c0dbac5d8031a4b8f4e633966e69a9a7dfa00a
data/Changelog CHANGED
@@ -2,7 +2,10 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
4
 
5
- ## [1.20] 2020-31.-8
5
+ ## [1.20] 2020-12-07
6
+
7
+ ### Changed
8
+ - using pry in console
6
9
 
7
10
  ### Added
8
11
  - ListObject
@@ -61,7 +61,11 @@ or as a console. You can start the console via the command
61
61
 
62
62
  reo
63
63
 
64
- You can use the command +jreo+ 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. The call of the console will include RobustExcelOle for you.
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
 
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
- puts 'REO console started'
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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module RobustExcelOle
2
- VERSION = "1.19.2"
2
+ VERSION = "1.19.3"
3
3
  end
@@ -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.2
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.bat
51
+ - jreo
38
52
  - reo
39
- - reo.bat
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.bat
82
+ - bin/jreo
69
83
  - bin/reo
70
- - bin/reo.bat
84
+ - bin/reo.rb
71
85
  - docs/README_excel.rdoc
72
86
  - docs/README_open.rdoc
73
87
  - docs/README_ranges.rdoc
@@ -1,4 +0,0 @@
1
-
2
- @echo off
3
-
4
- ruby reo