robust_excel_ole 1.18.8 → 1.19

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: 6bdaf693eb1eaf0e68b2ec35417b2194be57ee185edb9f85042e97cee19ac3f8
4
- data.tar.gz: 8bab1df47739691b6085c4555227df98f7d7b80fc9e2b06ce05b0e182aec132c
3
+ metadata.gz: c5ff7771ae8a35d2cf47dce37e92a9d4d720148faa91eb37dc2342b1239f7d0a
4
+ data.tar.gz: 4d50eb99f297d38a60845eca2550a36ae2734694b538c52eb23052a9e9db0077
5
5
  SHA512:
6
- metadata.gz: bcb290fa110ebc385baf39094509144d1b8ab2972da127c119ccbf71fd477ada33f837fd0a37b97b5ce7a1affbf952a1600c96e2d2216f06433f3a582f3499fc
7
- data.tar.gz: 5dbb624113ab19f2539a8b6531d3c2cbc3a23ed0765f35e679205fcdf3518f106ad718cee2f6e7fdbfcdc919173e591d41deb0002e75fd246916e8e4cb4f78bd
6
+ metadata.gz: 2ccd9358b7d0ca576c8120e249c7af4122c4040f51357efc339536f93cde6d8a6b9a2bb32071382f5c5d8ddc3f084920831eda36df0c1a8ed9698972cea9d516
7
+ data.tar.gz: f1b813c71610b01d3bfd7e70245a52b02522910b2d0cbd6a9742825c06a131f47bc7f9310c59749b0caf881fef6d8a8bc64336f709ba2104a4f78bff844a44b6
@@ -14,23 +14,26 @@ Library references are supported.
14
14
  RobustExcelOle works by sending VBA methods via Win32OLE.
15
15
  Therefore, it runs on Windows only.
16
16
 
17
- == Feature list
17
+ == Features
18
+
19
+ RobustExcelOle supports
18
20
 
19
21
  - opening and processing workbooks across various Excel instances
20
- - reading and writing workbooks (cells and ranges)
21
- - reopening and unobtrusively opening workbooks
22
- - convenient methods for standard tasks (like opening, reading, writing, closing, saving workbooks, naming, adding, and copying ranges and worksheets)
23
- - dealing with various cases of Excel and user behaviour, e.g. managing conflicts when opening workbooks (e.g. blocking or unsaved workbooks),
24
- even with simultanously happening user interactions
22
+ - standard tasks like opening, reading, writing, saving, closing workbooks
23
+ - dealing with various cases of Excel and user behaviour
24
+ - managing conflicts when opening workbooks (e.g. blocking or unsaved workbooks)
25
+ - dealing with simultanously happening user interactions
25
26
  - workarounds for Excel bugs and JRuby bugs
26
- - various workbook formats, e.g. .xlsx, .xls, .xlsm are supported
27
- - library references are supported
28
- - console for convenient usage
29
-
30
- == What's new?
31
-
32
- - removing methods to operate on ranges directly from an Excel instance. However, you can use the method Excel.active_workbook to do so.
33
- See ChangeLogs.
27
+ - availability of all VBA methods
28
+ - availability of Excel constants (in form if Ruby constants: Excel constant.capitalize)
29
+ - standard Excel file formats (.xlsx, .xls, .xlsm)
30
+ - reopening workbooks after closing them
31
+ - unobtrusively opening workbooks, i.e. opening and processing workbooks
32
+ while preserving their status, e.g. saved status
33
+ - reading and writing workbooks, worksheets, cells, ranges, rows, columns
34
+ - naming, adding, and copying ranges and worksheets
35
+ - references to other Excel libraries
36
+ - console for interactive mode
34
37
 
35
38
  == Requirements
36
39
 
@@ -53,17 +56,11 @@ RobustExcelOle can be used either for scripts
53
56
  require 'robust_excel_ole'
54
57
  include RobustExcelOle
55
58
 
56
- or as a console. If you want to use RobustExcelOle as a console, you go (using 'cd') into the gem path that you find with help of
57
-
58
- gem env
59
-
60
- and go into the path of the gem 'robust_excel_ole'. There you start the console via the command
59
+ or as a console. You can start the console via the command
61
60
 
62
61
  reo
63
62
 
64
- If you don't want to use a version manager to switch between ruby and jruby, you can apply the command +reo+ when using ruby, and +jreo+ when using jruby.
65
-
66
- The call of the console will include RobustExcelOle for you.
63
+ 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.
67
64
 
68
65
  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.
69
66
 
@@ -67,7 +67,7 @@ or
67
67
 
68
68
  Now we copy the range. With help of VBA methods you would do
69
69
 
70
- range.Copy(:destination => sheet.range([4..6,5..8]).ole_range)
70
+ range.Copy(:destination => sheet.range([4,5]).ole_range)
71
71
 
72
72
  or with help of RobustExcelOle
73
73
 
@@ -124,7 +124,8 @@ Within a row or column range you can access a certain cell.
124
124
 
125
125
  === Deleting and inserting rows and columns
126
126
 
127
- As mentioned above, VBA methods can be applied to the RobustExcelOle objects, e.g. when deleting or inserting rows and columns.
127
+ For the following standard tasks no RobustExcelOle commands are provided, but VBA methods can be used.
128
+ Here are some examples:
128
129
 
129
130
  row1 = worksheet.row_range(1)
130
131
  row1.Delete
@@ -1,3 +1,3 @@
1
1
  module RobustExcelOle
2
- VERSION = "1.18.8"
2
+ VERSION = "1.19"
3
3
  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.18.8
4
+ version: '1.19'
5
5
  platform: ruby
6
6
  authors:
7
7
  - traths