robust_excel_ole 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.
- data/README.rdoc +24 -18
- data/README_detail.rdoc +46 -40
- data/lib/robust_excel_ole/book.rb +23 -16
- data/lib/robust_excel_ole/book_store.rb +9 -3
- data/lib/robust_excel_ole/robustexcelole.sublime-workspace +419 -347
- data/lib/robust_excel_ole/version.rb +1 -1
- data/spec/book_spec.rb +48 -11
- data/spec/book_store_spec.rb +10 -9
- metadata +4 -4
data/README.rdoc
CHANGED
@@ -2,9 +2,12 @@
|
|
2
2
|
|
3
3
|
robust_excel_ole implements methods for accessing Excel files using win32ole.
|
4
4
|
It provides convenient methods for opening, modifying, saving and closing Excel files.
|
5
|
-
Furthermore all VBA methods
|
5
|
+
Furthermore all VBA methods are deligated to Excel.
|
6
|
+
|
7
|
+
robust_excel_ole can manage Excel workbooks that are open in several Excel instances.
|
8
|
+
It allows to automatically perform Excel operations while the user can operate with Excel manually.
|
9
|
+
|
6
10
|
|
7
|
-
robust_excel_ole manages Excel workbooks that have been opened in several Excel instances.
|
8
11
|
|
9
12
|
This is work in progress.
|
10
13
|
|
@@ -26,41 +29,47 @@ Example:
|
|
26
29
|
book = Book.open('workbook.xls')
|
27
30
|
|
28
31
|
Opening a workbook with a block.
|
29
|
-
The semantics is similar to, e.g., File.open
|
32
|
+
The semantics is similar to, e.g., +File.open+.
|
30
33
|
|
31
34
|
Book.open('workbook.xls') do |book|
|
32
35
|
# do something
|
33
36
|
end
|
34
37
|
|
35
|
-
Options are
|
38
|
+
Options are
|
39
|
+
|
40
|
+
+:default_excel+, +:force_excel+, +:if_absent+, +:if_unsaved+, +:if_obstructed+,
|
41
|
+
|
42
|
+
+:read_only+, +:visible+, +:displayalerts+.
|
36
43
|
|
37
44
|
Here are a few examples:
|
38
45
|
|
46
|
+
Opening a workbook in the Excel instance where it was opened before, or opening the workbook in a new Excel instance if it was not opened before.
|
47
|
+
|
48
|
+
book = Book.open('workbook.xls', :default_excel => :new)
|
49
|
+
|
39
50
|
Opening a workbook in a new Excel instance and make it visible.
|
40
51
|
|
41
52
|
book = Book.open('workbook.xls', :force_excel => :new, :visible => true)
|
42
53
|
|
43
|
-
|
44
|
-
The option +:
|
45
|
-
|
46
|
-
book2 = Book.open('path/workbook.xls', :if_obstructed => :forget)
|
54
|
+
If a workbook contains unsaved changes and a workbook with the same filename shall be opened, then Excel gives an alert message.
|
55
|
+
The option +:if_unsaved+ manages this case. For example, +:if_unsaved+ => +:accept+ indicates that the workbook remains open, but no error is raised, i.e. the program can continue.
|
47
56
|
|
48
|
-
|
57
|
+
book = Book.open('workbook.xls', :if_unsaved => :accept)
|
49
58
|
|
50
|
-
|
59
|
+
If a workbook is open and a workbook with the same name but in different path shall be opened, then the first workbook blocks opening the other workbook. The option +:if_obstructed+ => handles this situation. For example, +:if_obstructed+ => +:forget+ causes the old workbook to close and to open the new workbook.
|
51
60
|
|
61
|
+
book = Book.open('path/workbook.xls', :if_obstructed => :forget)
|
52
62
|
|
53
63
|
=== Closing a workbook.
|
54
64
|
|
55
65
|
book.close
|
56
66
|
|
57
|
-
|
67
|
+
There is one option: : +:if_unsaved+. Example:
|
58
68
|
|
59
69
|
Closing the workbook and saving it before if it has unsaved changes.
|
60
70
|
|
61
71
|
book.close(:if_unsaved => :save)
|
62
72
|
|
63
|
-
|
64
73
|
=== Reopening workbooks.
|
65
74
|
|
66
75
|
A special feature of robust_excel_ole is that it allows to reopen books after closing them.
|
@@ -69,10 +78,7 @@ A special feature of robust_excel_ole is that it allows to reopen books after cl
|
|
69
78
|
book.close
|
70
79
|
reopened_book = Book.open('workbook.xls')
|
71
80
|
|
72
|
-
The closed book is now alive again, i.e. responds to Excel methods.
|
73
|
-
|
74
|
-
book.alive?
|
75
|
-
=> true
|
81
|
+
The closed book is now alive again, i.e. is open and responds to Excel methods.
|
76
82
|
|
77
83
|
This feature is achieved by providing identity transperence and by storing the file name.
|
78
84
|
Identity transperence means that the same Book objects refer to the same Excel files, and vice versa.
|
@@ -100,7 +106,7 @@ Saving a workbook and overwriting the file if it exists before.
|
|
100
106
|
|
101
107
|
The method +unobtrusively+ enables the user to read or modify a workbook, no matter if it is open in some Excel instance, if it is saved or unsaved, and if it is writable or not. When opening a workbook unobtrusively, its status remains unchanged. This status includes, whether the book is opened or closed, saved or unsaved, readonly or writable.
|
102
108
|
|
103
|
-
Options are +:if_closed+, +:read_only+, +:use_readonly_excel+, +:keep_open
|
109
|
+
Options are +:if_closed+, +:read_only+, +:use_readonly_excel+, and +:keep_open.
|
104
110
|
|
105
111
|
The option +:if_closed+ => +:hidden+ provokes that a closed book is opened unobtrusively in a separate Excel instance that is not visible and has no DisplayAlerts. Any following closed book would be opened in this Excel instance as well when using this option.
|
106
112
|
|
@@ -436,7 +442,7 @@ The book is modified, but its status is unchanged.
|
|
436
442
|
|
437
443
|
=== More Details
|
438
444
|
|
439
|
-
For more details about usage: see link:
|
445
|
+
For more details about usage: see link:Readme_detail.rdoc
|
440
446
|
|
441
447
|
=== Development
|
442
448
|
|
data/README_detail.rdoc
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
= RobustExcelOle
|
2
2
|
|
3
|
-
robust_excel_ole
|
4
|
-
convenient methods for opening, saving and closing
|
3
|
+
robust_excel_ole implements methods for accessing Excel files using win32ole.
|
4
|
+
It provides convenient methods for opening, modifying, saving and closing Excel files.
|
5
|
+
Furthermore all VBA methods are deligated to Excel.
|
6
|
+
|
7
|
+
robust_excel_ole can manage Excel workbooks that are open in several Excel instances.
|
8
|
+
It allows to automatically perform Excel operations while the user can operate with Excel manually.
|
5
9
|
|
6
10
|
This is work in progress.
|
7
11
|
|
@@ -17,14 +21,14 @@ This is work in progress.
|
|
17
21
|
|
18
22
|
include RobustExcelOle
|
19
23
|
|
20
|
-
=== Opening a
|
24
|
+
=== Opening a workbook.
|
21
25
|
|
22
26
|
Example:
|
23
27
|
|
24
28
|
book = Book.open('workbook.xls')
|
25
29
|
|
26
|
-
|
27
|
-
The semantics is similar to, e.g.,
|
30
|
+
Opening a workbook with a block.
|
31
|
+
The semantics is similar to, e.g., +File.open+.
|
28
32
|
|
29
33
|
Book.open('workbook.xls') do |book|
|
30
34
|
# do something
|
@@ -32,18 +36,18 @@ The semantics is similar to, e.g., File.open.
|
|
32
36
|
|
33
37
|
Options are the following:
|
34
38
|
|
35
|
-
+:default_excel+:: open in the Excel instance
|
36
|
-
+:force_excel+:: open in a new or given Excel instance (defaut: +:new+)
|
37
|
-
+:if_absent+::
|
38
|
-
+:if_unsaved+:: specify behaviour if the
|
39
|
-
+:if_obstructed+:: specidy behaviour if the
|
39
|
+
+:default_excel+:: open the workbook in the Excel instance where it was opened before if the book was once open, otherwise in a new or already used Excel instance (default: +reuse+)
|
40
|
+
+:force_excel+:: open the workbook in a new or given Excel instance (defaut: +:new+)
|
41
|
+
+:if_absent+:: specify behaviour if the workbook with the given file name does not exist if the workbook does not exist (default: +create+)
|
42
|
+
+:if_unsaved+:: specify behaviour if the workbook was unsaved (default: +new_excel+)
|
43
|
+
+:if_obstructed+:: specidy behaviour if the workbook is blocked by another book (default: +new_excel+)
|
40
44
|
+:read_only+:: open in read-only mode (default: +false+)
|
41
45
|
+:displayalerts+:: allow display alerts in Excel (default: +false+)
|
42
46
|
+:visible+:: make visibe in Excel (default: +false+)
|
43
47
|
|
44
48
|
The option +:defaut_excel+ :
|
45
49
|
|
46
|
-
If the
|
50
|
+
If the workbook was open before, then open it in the Excel instance where it was open before. If the workbook cannot be reopened, then
|
47
51
|
|
48
52
|
+:reuse+:: Connect to a running Excel, if it exists, otherwise open a new Excel.
|
49
53
|
+:new+:: Open in a new Excel.
|
@@ -51,9 +55,9 @@ If the book was open before, then open it in the Excel instance used before. If
|
|
51
55
|
|
52
56
|
The option +:force_excel :
|
53
57
|
|
54
|
-
No matter if the
|
58
|
+
No matter if the workbook was open before,
|
55
59
|
|
56
|
-
+:new+:: Open in a new Excel.
|
60
|
+
+:new+:: Open in a new Excel instance.
|
57
61
|
[instance]:: Open in a given Excel instance.
|
58
62
|
|
59
63
|
The option +:if_absent :
|
@@ -65,45 +69,45 @@ If the Excel file does not exists, then
|
|
65
69
|
|
66
70
|
The option +:if_unsaved+ :
|
67
71
|
|
68
|
-
If
|
72
|
+
If a workbook contains unsaved changes and a new workbook with the same file name shall be opened, then
|
69
73
|
|
70
|
-
+:raise+:: Raise an exeption. Don't open the
|
71
|
-
+:accept+:: Let the unsaved
|
72
|
-
+:forget+:: Discard any changes and reopen the
|
73
|
-
+:new_excel+:: Open the new
|
74
|
+
+:raise+:: Raise an exeption. Don't open the workbook.
|
75
|
+
+:accept+:: Let the unsaved workbook open.
|
76
|
+
+:forget+:: Discard any changes and reopen the workbook.
|
77
|
+
+:new_excel+:: Open the new workbook in a new Excel instance
|
74
78
|
+:alert+:: Give control to Excel.
|
75
79
|
|
76
80
|
The option +:if_obstructed+ :
|
77
81
|
|
78
|
-
If a
|
82
|
+
If a workbook is open and a new workbook with same name and a different path is open, then
|
79
83
|
|
80
|
-
+:raise+:: Raise an exception. Don't open the
|
81
|
-
+:forget+:: Close the old
|
82
|
-
+:save+:: Save the old
|
83
|
-
+:close_if_saved+:: Close the old
|
84
|
-
+:new_excel+:: Open the new
|
84
|
+
+:raise+:: Raise an exception. Don't open the workbook.
|
85
|
+
+:forget+:: Close the old workbook, open the new workbook.
|
86
|
+
+:save+:: Save the old workbook, close it, open the new workbook
|
87
|
+
+:close_if_saved+:: Close the old workbook and open the new workbook, if the old workbook is saved, otherwise raise an exception.
|
88
|
+
+:new_excel+:: Open the new workbook in a new Excel instance.
|
85
89
|
|
86
90
|
The values :displayalerts and :visible are reached to the class Excel that controls opening and closing Excel instances.
|
87
91
|
|
88
|
-
=== Closing a
|
92
|
+
=== Closing a workbook.
|
89
93
|
|
90
94
|
Simple close.
|
91
95
|
|
92
96
|
book.close
|
93
97
|
|
94
|
-
|
98
|
+
There is one option: +:if_unsaved+ . It can have one of the following values:
|
95
99
|
|
96
100
|
+:raise+ (default), +:save+, +:forget+, +:alert+
|
97
101
|
|
98
|
-
The option specifies: If the
|
102
|
+
The option specifies: If the workbook is unsaved, then
|
99
103
|
|
100
|
-
+:save+:: Save the
|
101
|
-
+:raise+:: Raise an exception. Don't close the
|
102
|
-
+:forget+:: Close the
|
104
|
+
+:save+:: Save the workbook before closing it.
|
105
|
+
+:raise+:: Raise an exception. Don't close the workbook.
|
106
|
+
+:forget+:: Close the workbook.
|
103
107
|
+:alert+:: Give control to Excel.
|
104
108
|
|
105
109
|
|
106
|
-
=== Saving a
|
110
|
+
=== Saving a workbook.
|
107
111
|
|
108
112
|
Simple save.
|
109
113
|
|
@@ -126,20 +130,24 @@ If a book with the file name already exists, then
|
|
126
130
|
+:alert+:: Give the control to Excel.
|
127
131
|
|
128
132
|
|
129
|
-
=== Unobtrusively modifying a
|
133
|
+
=== Unobtrusively modifying a workbook
|
134
|
+
|
135
|
+
The method +unobtrusively+ enables the user to read or modify a workbook, no matter if it is open in some Excel instance, if it is saved or unsaved, and if it is writable or not. When opening a workbook unobtrusively, its status remains unchanged. This status includes, whether the book is opened or closed, saved or unsaved, readonly or writable.
|
130
136
|
|
131
|
-
|
137
|
+
Options are +:if_closed+, +:read_only+, +:use_readonly_excel+, and +:keep_open.
|
138
|
+
|
139
|
+
The option +:if_closed+ => +:hidden+ provokes that a closed book is opened unobtrusively in a separate Excel instance that is not visible and has no DisplayAlerts. Any following closed book would be opened in this Excel instance as well when using this option.
|
132
140
|
|
133
141
|
Options are the following:
|
134
142
|
|
135
|
-
+:if_closed+:: :hidden (default) : open closed
|
136
|
-
:
|
143
|
+
+:if_closed+:: :hidden (default) : open a closed workbooks in one separate Excel instance that is not visible and has no displayaslerts
|
144
|
+
<excel-instance> : open a closed workbooks in the given Excel instance
|
145
|
+
:reuse : open a closed workbooks in the Excel instance of the book, if it exists, otherwise reuse another Excel
|
137
146
|
+:read_only+:: Open the book unobtrusively for reading only (default: false)
|
138
147
|
+:use_readonly_excel+:: if the book is opened only as ReadOnly and shall be modified, then
|
139
148
|
true: close it and open it as writable in the excel instance where it was open so far
|
140
149
|
false (default) open it as writable in another running excel instance, if it exists,
|
141
150
|
otherwise open in a new excel instance
|
142
|
-
+:visible+:: Make the Excel instance of the book visible (default: false)
|
143
151
|
+:keep_open+:: let the book open after unobtrusively opening (default: false)
|
144
152
|
|
145
153
|
Book.unobtrusively('workbook.xls') do |book|
|
@@ -154,13 +162,11 @@ Returning the value of a cell or range that has a with a defined name.
|
|
154
162
|
|
155
163
|
book.nvalue(name)
|
156
164
|
|
157
|
-
===
|
158
|
-
|
159
|
-
Checking whether the referenced Excel workbook responds to methods.
|
165
|
+
=== Checking whether the referenced Excel workbook responds to methods.
|
160
166
|
|
161
167
|
if book.alive? then sheet = book[0] end
|
162
168
|
|
163
|
-
===
|
169
|
+
=== Making an Excel visible or invisible, and enable and disable DisplayAlerts.
|
164
170
|
|
165
171
|
Make an Excel visible
|
166
172
|
|
@@ -190,7 +190,7 @@ module RobustExcelOle
|
|
190
190
|
|
191
191
|
def open_or_create_workbook
|
192
192
|
if (not File.exist?(@file))
|
193
|
-
@workbook =
|
193
|
+
@workbook = Excel.current.generate_workbook(@file)
|
194
194
|
#@workbook = Excel.new(:reuse => true).generate_workbook(@file)
|
195
195
|
return
|
196
196
|
end
|
@@ -199,9 +199,9 @@ module RobustExcelOle
|
|
199
199
|
filename = RobustExcelOle::absolute_path(@file)
|
200
200
|
workbooks = @excel.Workbooks
|
201
201
|
workbooks.Open(filename,{ 'ReadOnly' => @options[:read_only] })
|
202
|
-
rescue WIN32OLERuntimeError
|
203
|
-
raise
|
204
|
-
end
|
202
|
+
rescue WIN32OLERuntimeError => msg
|
203
|
+
raise ExcelErrorOpen, "open: user canceled or open error" if msg.message =~ /OLE error code:800A03EC/
|
204
|
+
end
|
205
205
|
begin
|
206
206
|
# workaround for bug in Excel 2010: workbook.Open does not always return
|
207
207
|
# the workbook with given file name
|
@@ -212,12 +212,6 @@ module RobustExcelOle
|
|
212
212
|
end
|
213
213
|
end
|
214
214
|
|
215
|
-
# generate, save and close an empty workbook
|
216
|
-
def self.create(file)
|
217
|
-
@workbook = Excel.new(:reuse => true).generate_workbook(file)
|
218
|
-
@workbook
|
219
|
-
end
|
220
|
-
|
221
215
|
# closes the book, if it is alive
|
222
216
|
#
|
223
217
|
# options:
|
@@ -262,6 +256,7 @@ module RobustExcelOle
|
|
262
256
|
# options:
|
263
257
|
# :if_closed : :hidden (default) : open closed books in one separate Excel instance that is not visible and has no displayaslerts
|
264
258
|
# :reuse : open closed books in the Excel instance of the book, if it exists, reuse another Excel, otherwise
|
259
|
+
# <excel-instance> : open closed books in the given Excel instance
|
265
260
|
# :read_only: Open the book unobtrusively for reading only (default: false)
|
266
261
|
# :use_readonly_excel: if the book is opened only as ReadOnly and shall be modified, then
|
267
262
|
# true: close it and open it as writable in the excel instance where it was open so far
|
@@ -281,11 +276,23 @@ module RobustExcelOle
|
|
281
276
|
was_writable = book.writable unless was_not_alive_or_nil
|
282
277
|
old_visible = (book && book.excel.alive?) ? book.excel.visible : false
|
283
278
|
begin
|
284
|
-
book =
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
279
|
+
book =
|
280
|
+
if was_not_alive_or_nil
|
281
|
+
case options[:if_closed]
|
282
|
+
when :hidden
|
283
|
+
open(file, :force_excel => book_store.hidden_excel)
|
284
|
+
when :reuse
|
285
|
+
open(file)
|
286
|
+
else
|
287
|
+
options[:if_closed].alive? ? open(file, :force_excel => options[:if_closed]) : open(file)
|
288
|
+
end
|
289
|
+
else
|
290
|
+
if was_writable || options[:read_only]
|
291
|
+
book
|
292
|
+
else
|
293
|
+
options[:use_readonly_excel] ? open(file, :force_excel => book.excel) : open(file, :force_excel => :new)
|
294
|
+
end
|
295
|
+
end
|
289
296
|
yield book
|
290
297
|
ensure
|
291
298
|
book.save if (was_not_alive_or_nil || was_saved || ((not was_writable) && (not options[:read_only]))) && (not book.saved)
|
@@ -488,7 +495,7 @@ module RobustExcelOle
|
|
488
495
|
|
489
496
|
public
|
490
497
|
|
491
|
-
class ExcelErrorNValue < WIN32OLERuntimeError # :nodoc #
|
498
|
+
class ExcelErrorNValue < WIN32OLERuntimeError # :nodoc: #
|
492
499
|
end
|
493
500
|
|
494
501
|
class ExcelUserCanceled < RuntimeError # :nodoc: #
|
@@ -24,7 +24,11 @@ module RobustExcelOle
|
|
24
24
|
result = open_book = closed_book = nil
|
25
25
|
weakref_books.each do |wr_book|
|
26
26
|
if (not wr_book.weakref_alive?)
|
27
|
-
|
27
|
+
begin
|
28
|
+
@filename2books[filename_key].delete(wr_book)
|
29
|
+
rescue
|
30
|
+
puts "Warning: deleting dead reference failed! (file: #{filename})"
|
31
|
+
end
|
28
32
|
else
|
29
33
|
book = wr_book.__getobj__
|
30
34
|
next if book.excel == try_hidden_excel
|
@@ -57,13 +61,15 @@ module RobustExcelOle
|
|
57
61
|
end
|
58
62
|
|
59
63
|
# creates and returns a separate Excel instance with Visible and DisplayAlerts false
|
60
|
-
def
|
64
|
+
def hidden_excel
|
61
65
|
unless (@hidden_excel_instance && @hidden_excel_instance.weakref_alive? && @hidden_excel_instance.__getobj__.alive?)
|
62
66
|
@hidden_excel_instance = WeakRef.new(Excel.create)
|
63
67
|
end
|
64
68
|
@hidden_excel_instance.__getobj__
|
65
69
|
end
|
66
70
|
|
71
|
+
private
|
72
|
+
|
67
73
|
def try_hidden_excel
|
68
74
|
@hidden_excel_instance.__getobj__ if (@hidden_excel_instance && @hidden_excel_instance.weakref_alive? && @hidden_excel_instance.__getobj__.alive?)
|
69
75
|
end
|
@@ -93,7 +99,7 @@ module RobustExcelOle
|
|
93
99
|
|
94
100
|
end
|
95
101
|
|
96
|
-
class BookStoreError < WIN32OLERuntimeError
|
102
|
+
class BookStoreError < WIN32OLERuntimeError # :nodoc: #
|
97
103
|
end
|
98
104
|
|
99
105
|
end
|
@@ -1,347 +1,419 @@
|
|
1
|
-
{
|
2
|
-
"auto_complete":
|
3
|
-
{
|
4
|
-
"selected_items":
|
5
|
-
[
|
6
|
-
[
|
7
|
-
"rub",
|
8
|
-
"rubygems"
|
9
|
-
],
|
10
|
-
[
|
11
|
-
"module_",
|
12
|
-
"module_eval"
|
13
|
-
],
|
14
|
-
[
|
15
|
-
"Schm",
|
16
|
-
"SchmiebaSub_TempModule"
|
17
|
-
],
|
18
|
-
[
|
19
|
-
"schm",
|
20
|
-
"SchmiebaMain_TempModule"
|
21
|
-
],
|
22
|
-
[
|
23
|
-
"req",
|
24
|
-
"require"
|
25
|
-
],
|
26
|
-
[
|
27
|
-
"wrap",
|
28
|
-
"wrap_in_module"
|
29
|
-
]
|
30
|
-
]
|
31
|
-
},
|
32
|
-
"buffers":
|
33
|
-
[
|
34
|
-
{
|
35
|
-
"file": "
|
36
|
-
"settings":
|
37
|
-
{
|
38
|
-
"buffer_size":
|
39
|
-
"line_ending": "Windows"
|
40
|
-
}
|
41
|
-
}
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
"
|
55
|
-
"
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
[
|
66
|
-
"
|
67
|
-
"Package Control: Install Package"
|
68
|
-
],
|
69
|
-
[
|
70
|
-
"
|
71
|
-
"Package Control:
|
72
|
-
]
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
"
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
"
|
99
|
-
"
|
100
|
-
"
|
101
|
-
"
|
102
|
-
"
|
103
|
-
"
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
"/C/Dokumente und Einstellungen/
|
108
|
-
"/C/Dokumente und Einstellungen/
|
109
|
-
"/C/Dokumente und Einstellungen/
|
110
|
-
"/C/Dokumente und Einstellungen/
|
111
|
-
"/
|
112
|
-
"/C/Dokumente und Einstellungen/
|
113
|
-
"/
|
114
|
-
"/
|
115
|
-
"/C/
|
116
|
-
"/
|
117
|
-
"/C/Dokumente und Einstellungen/
|
118
|
-
"/
|
119
|
-
"/
|
120
|
-
"/
|
121
|
-
"/
|
122
|
-
"/C/
|
123
|
-
"/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/
|
124
|
-
"/
|
125
|
-
"/
|
126
|
-
"/
|
127
|
-
"/I/gim/ats/
|
128
|
-
"/
|
129
|
-
"/I/gim/ats/aSrc/
|
130
|
-
"/I/gim/ats/aSrc/
|
131
|
-
"/
|
132
|
-
"/I/gim/ats/aSrc/app/
|
133
|
-
"/
|
134
|
-
"/I/gim/ats/aSrc/app/
|
135
|
-
"/I/gim/ats/aSrc/
|
136
|
-
"/I/gim/ats/aSrc/
|
137
|
-
"/I/gim/ats/aSrc/
|
138
|
-
"/
|
139
|
-
"/
|
140
|
-
"/I/gim/ats/aSrc/app
|
141
|
-
"/I/gim/ats/aSrc/app/
|
142
|
-
"/I/gim/ats/aSrc/app/
|
143
|
-
"/I/gim/ats/aSrc/app/
|
144
|
-
"/I/gim/ats/aSrc/app/
|
145
|
-
"/I/gim/ats/aSrc/app/
|
146
|
-
"/I/gim/ats/aSrc/app/
|
147
|
-
"/I/gim/ats/aSrc/app/models/
|
148
|
-
"/I/gim/ats/aSrc/app/models/
|
149
|
-
"/I/gim/ats/aSrc/app/models/
|
150
|
-
"/I/gim/ats/aSrc/app/models/
|
151
|
-
"/I/gim/ats/aSrc/app/models/
|
152
|
-
"/I/gim/ats/aSrc/app/models/
|
153
|
-
"/I/gim/ats/aSrc/app/models/
|
154
|
-
"/I/gim/ats/aSrc/app/models/
|
155
|
-
"/I/gim/ats/aSrc/app/models/
|
156
|
-
"/I/gim/ats/aSrc/app/models/system_fkt/
|
157
|
-
"/I/gim/ats/aSrc/app/models/system_fkt/
|
158
|
-
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung.rb",
|
159
|
-
"/I/gim/ats/aSrc/app/models/system_fkt/
|
160
|
-
"/I/gim/ats/aSrc/app/models/
|
161
|
-
"/I/gim/ats/aSrc/app/models/
|
162
|
-
"/I/gim/ats/aSrc/app/models/
|
163
|
-
"/I/gim/ats/aSrc/app/models/
|
164
|
-
"/I/gim/ats/aSrc/app/models/
|
165
|
-
"/I/gim/ats/aSrc/app/models/
|
166
|
-
"/I/gim/ats/aSrc/app/models/
|
167
|
-
"/I/gim/ats/aSrc/app/models/
|
168
|
-
"/I/gim/ats/aSrc/app/models/
|
169
|
-
"/I/gim/ats/aSrc/app/
|
170
|
-
"/I/gim/ats/aSrc/app/
|
171
|
-
"/I/gim/ats/aSrc/app/
|
172
|
-
"/I/gim/ats/aSrc/app/
|
173
|
-
"/I/gim/ats/aSrc/app/
|
174
|
-
"/I/gim/ats/aSrc/app/
|
175
|
-
"/I/gim/ats/aSrc/app/
|
176
|
-
"/I/gim/ats/aSrc/app/
|
177
|
-
"/I/gim/ats/aSrc/app/
|
178
|
-
"/I/gim/ats/aSrc/app/
|
179
|
-
"/I/gim/ats/aSrc/app/
|
180
|
-
"/I/gim/ats/aSrc/app/
|
181
|
-
"/I/gim/ats/aSrc/app/
|
182
|
-
"/I/gim/ats/aSrc/app/
|
183
|
-
"/I/gim/ats/aSrc/app/
|
184
|
-
"/I/gim/ats/aSrc/app/
|
185
|
-
"/I/gim/ats/aSrc/app/controllers/
|
186
|
-
"/I/gim/ats/aSrc/app/controllers/
|
187
|
-
"/I/gim/ats/aSrc/app/controllers/
|
188
|
-
"/I/gim/ats/aSrc/app/controllers/
|
189
|
-
"/
|
190
|
-
"/I/gim/ats/aSrc/app/
|
191
|
-
"/I/gim/ats/aSrc/app/
|
192
|
-
"/I/gim/ats/aSrc/
|
193
|
-
"/I/gim/ats/aSrc/
|
194
|
-
"/I/gim/ats/aSrc/app/
|
195
|
-
"/I/gim/ats/aSrc/app/
|
196
|
-
"/I/gim/ats/aSrc/app/
|
197
|
-
"/I/gim/ats/aSrc/app/
|
198
|
-
"/I/gim/ats/aSrc/app/
|
199
|
-
"/I/gim/ats/aSrc/app/
|
200
|
-
"/I/gim/ats/aSrc/app/
|
201
|
-
"/I/gim/ats/aSrc/
|
202
|
-
"/I/gim/ats/
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
"
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
"
|
211
|
-
"
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
"
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
"
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
}
|
1
|
+
{
|
2
|
+
"auto_complete":
|
3
|
+
{
|
4
|
+
"selected_items":
|
5
|
+
[
|
6
|
+
[
|
7
|
+
"rub",
|
8
|
+
"rubygems"
|
9
|
+
],
|
10
|
+
[
|
11
|
+
"module_",
|
12
|
+
"module_eval"
|
13
|
+
],
|
14
|
+
[
|
15
|
+
"Schm",
|
16
|
+
"SchmiebaSub_TempModule"
|
17
|
+
],
|
18
|
+
[
|
19
|
+
"schm",
|
20
|
+
"SchmiebaMain_TempModule"
|
21
|
+
],
|
22
|
+
[
|
23
|
+
"req",
|
24
|
+
"require"
|
25
|
+
],
|
26
|
+
[
|
27
|
+
"wrap",
|
28
|
+
"wrap_in_module"
|
29
|
+
]
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"buffers":
|
33
|
+
[
|
34
|
+
{
|
35
|
+
"file": "book_store.rb",
|
36
|
+
"settings":
|
37
|
+
{
|
38
|
+
"buffer_size": 3610,
|
39
|
+
"line_ending": "Windows"
|
40
|
+
}
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"file": "/C/gim/ats/aSrc/gems/robust_excel_ole/spec/book_store_spec.rb",
|
44
|
+
"settings":
|
45
|
+
{
|
46
|
+
"buffer_size": 12744,
|
47
|
+
"line_ending": "Windows"
|
48
|
+
}
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"file": "book.rb",
|
52
|
+
"settings":
|
53
|
+
{
|
54
|
+
"buffer_size": 19471,
|
55
|
+
"line_ending": "Windows"
|
56
|
+
}
|
57
|
+
}
|
58
|
+
],
|
59
|
+
"build_system": "",
|
60
|
+
"command_palette":
|
61
|
+
{
|
62
|
+
"height": 196.0,
|
63
|
+
"selected_items":
|
64
|
+
[
|
65
|
+
[
|
66
|
+
"INST",
|
67
|
+
"Package Control: Install Package"
|
68
|
+
],
|
69
|
+
[
|
70
|
+
"pack",
|
71
|
+
"Package Control: Upgrade/Overwrite All Packages"
|
72
|
+
],
|
73
|
+
[
|
74
|
+
"upg",
|
75
|
+
"Package Control: Upgrade/Overwrite All Packages"
|
76
|
+
],
|
77
|
+
[
|
78
|
+
"",
|
79
|
+
"Package Control: Upgrade Package"
|
80
|
+
],
|
81
|
+
[
|
82
|
+
"ins",
|
83
|
+
"Package Control: Install Package"
|
84
|
+
],
|
85
|
+
[
|
86
|
+
"pa",
|
87
|
+
"Package Control: Install Package"
|
88
|
+
]
|
89
|
+
],
|
90
|
+
"width": 386.0
|
91
|
+
},
|
92
|
+
"console":
|
93
|
+
{
|
94
|
+
"height": 126.0
|
95
|
+
},
|
96
|
+
"distraction_free":
|
97
|
+
{
|
98
|
+
"menu_visible": true,
|
99
|
+
"show_minimap": false,
|
100
|
+
"show_open_files": false,
|
101
|
+
"show_tabs": false,
|
102
|
+
"side_bar_visible": false,
|
103
|
+
"status_bar_visible": false
|
104
|
+
},
|
105
|
+
"file_history":
|
106
|
+
[
|
107
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/robust_excel_ole/spec/book_spec.rb",
|
108
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/robust_excel_ole/lib/robust_excel_ole.rb",
|
109
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/robust_excel_ole/lib/robust_excel_ole/book.rb",
|
110
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/ruby/einmaleins_test.rb",
|
111
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/robust_excel_ole/spec/spec_helper.rb",
|
112
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/test/unit/wandler/wandler_hr5_test.rb",
|
113
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/test/unit/system_fkt/excel_zugriff/exlzug_ats_test.rb",
|
114
|
+
"/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/RubyTest.sublime-settings",
|
115
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/app/models/system_fkt/excel_zugriff/exlzug_basis.rb",
|
116
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/ruby/einmaleins_v07.rb",
|
117
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/test/unit/dbf_boxes/v_objekte/rk_test.rb",
|
118
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/app/models/dbf_boxes/v_objekte/rk.rb",
|
119
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/test/schmiedebasis_test.rb",
|
120
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/app/controllers/gui_apollo/schmiedebasis.rb",
|
121
|
+
"/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/app/galaxy_script/g_script/galaxy_object.rb",
|
122
|
+
"/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/Preferences.sublime-settings",
|
123
|
+
"/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/Default/Preferences.sublime-settings",
|
124
|
+
"/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/RubyTest/RubyTest.sublime-settings",
|
125
|
+
"/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/Distraction Free.sublime-settings",
|
126
|
+
"/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/JSON.sublime-settings",
|
127
|
+
"/I/gim/ats/TodoListe.txt",
|
128
|
+
"/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/RubyTest.last-run",
|
129
|
+
"/I/gim/ats/aSrc/test/testbasis.rb",
|
130
|
+
"/I/gim/ats/aSrc/test/fixture_generell.rb",
|
131
|
+
"/C/ProgLang/Ruby-1.8.6/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb",
|
132
|
+
"/I/gim/ats/aSrc/app/controllers/prozesse/diener.rb",
|
133
|
+
"/C/Dokumente und Einstellungen/sound/Lokale Einstellungen/Temp/tar2rubyscript.d.3800.1/tsExpo/app/controllers/prozesse/diener.rb",
|
134
|
+
"/I/gim/ats/aSrc/app/controllers/ats_konsole.rb",
|
135
|
+
"/I/gim/ats/aSrc/test/controllers/prozesse/dienstherr_test.rb",
|
136
|
+
"/I/gim/ats/aSrc/lib/controllers/prozesse/dienstherr.rb",
|
137
|
+
"/I/gim/ats/aSrc/lib/schmiedebasis.rb",
|
138
|
+
"/C/ProgLang/Ruby-1.8.6/lib/ruby/gems/1.8/gems/autotest-standalone-4.5.11/lib/autotest/notify.rb",
|
139
|
+
"/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Installed Packages/RubyTest.sublime-package",
|
140
|
+
"/I/gim/ats/aSrc/app/.loadpath",
|
141
|
+
"/I/gim/ats/aSrc/app/iconv.rb",
|
142
|
+
"/I/gim/ats/aSrc/app/init_x.rb",
|
143
|
+
"/I/gim/ats/aSrc/app/schmiedebasis.rb",
|
144
|
+
"/I/gim/ats/aSrc/app/temp_app.rb",
|
145
|
+
"/I/gim/ats/aSrc/app/testhilfe.rb",
|
146
|
+
"/I/gim/ats/aSrc/app/version.rb",
|
147
|
+
"/I/gim/ats/aSrc/app/models/wandler/dbf2exl.rb",
|
148
|
+
"/I/gim/ats/aSrc/app/models/wandler/excel_zuordnung.rb",
|
149
|
+
"/I/gim/ats/aSrc/app/models/wandler/satz_split.rb",
|
150
|
+
"/I/gim/ats/aSrc/app/models/wandler/wandler_allgemein.rb",
|
151
|
+
"/I/gim/ats/aSrc/app/models/wandler/wandler_hr5.rb",
|
152
|
+
"/I/gim/ats/aSrc/app/models/wandler/wandler_zu_excel.rb",
|
153
|
+
"/I/gim/ats/aSrc/app/models/wandler/excel_zuordnung/zuord_hr5.rb",
|
154
|
+
"/I/gim/ats/aSrc/app/models/wandler/excel_zuordnung/zuord_hr6.rb",
|
155
|
+
"/I/gim/ats/aSrc/app/models/wandler/excel_zuordnung/zuord_ng1.rb",
|
156
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung/eintrag_persistenz.rb",
|
157
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung/haupt_konfig_hash.rb",
|
158
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung/inifile_hash.rb",
|
159
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung/konfig_option.rb",
|
160
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung/konfig_optionen.rb",
|
161
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung/konfig_opts.rb",
|
162
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung/ort_persistenz.rb",
|
163
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung/schmiedebasis.rb",
|
164
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung/vergleichs_ergebnis.rb",
|
165
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/excel_zugriff/exlzug_ats.rb",
|
166
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/excel_zugriff/exlzug_basis.rb",
|
167
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/excel_zugriff/exlzug_openclose.rb",
|
168
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/datei_aufraeumer.rb",
|
169
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/dbase_zugriff.rb",
|
170
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/excel_prozesse.rb",
|
171
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/excel_zugriff.rb",
|
172
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/protokollierer.rb",
|
173
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/schmiedebasis.rb",
|
174
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/speicherung.rb",
|
175
|
+
"/I/gim/ats/aSrc/app/models/system_fkt/tasten_sender.rb",
|
176
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekt.rb",
|
177
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte.rb",
|
178
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/va.rb",
|
179
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/vb.rb",
|
180
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/vd.rb",
|
181
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/vk.rb",
|
182
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/vt.rb",
|
183
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/rk.rb",
|
184
|
+
"/I/gim/ats/aSrc/app/models/basis_logik/zeit.rb",
|
185
|
+
"/I/gim/ats/aSrc/app/controllers/teste_tv2_a03.rb",
|
186
|
+
"/I/gim/ats/aSrc/app/controllers/teste_tv2.rb",
|
187
|
+
"/I/gim/ats/aSrc/app/controllers/schmiedebasis.rb",
|
188
|
+
"/I/gim/ats/aSrc/app/controllers/orte_controller.rb",
|
189
|
+
"/I/gim/ats/aSrc/app/controllers/mathstar_per_tasten.rb",
|
190
|
+
"/I/gim/ats/aSrc/app/controllers/mathstar_per_dll.rb",
|
191
|
+
"/I/gim/ats/aSrc/app/controllers/iterator.rb",
|
192
|
+
"/I/gim/ats/aSrc/app/controllers/galaxy_script.rb",
|
193
|
+
"/I/gim/ats/aSrc/app/controllers/dbf_vergleicher.rb",
|
194
|
+
"/I/gim/ats/aSrc/app/controllers/controller.rb",
|
195
|
+
"/I/gim/ats/aSrc/app/controllers/gui_apollo/gui_ap.rb",
|
196
|
+
"/I/gim/ats/aSrc/app/controllers/gui_apollo/gui_basis_ap.rb",
|
197
|
+
"/I/gim/ats/aSrc/app/controllers/gui_apollo/guikonfig_ap.rb",
|
198
|
+
"/I/gim/ats/aSrc/app/controllers/gui_apollo/guivertr_ap.rb",
|
199
|
+
"/I/gim/ats/aSrc/app/controllers/gui_apollo/schmiedebasis.rb",
|
200
|
+
"/I/gim/ats/aSrc/app/controllers/prozesse/aufgaben.rb",
|
201
|
+
"/I/gim/ats/aSrc/app/controllers/prozesse/dienstherr.rb",
|
202
|
+
"/I/gim/ats/aSrc/app/controllers/prozesse/dienstkontakt.rb",
|
203
|
+
"/I/gim/ats/aSrc/app/controllers/prozesse/schmiedebasis.rb",
|
204
|
+
"/I/gim/ats/aSrc/app/controllers/teste_tv2_prober2.rb",
|
205
|
+
"/C/ProgLang/Ruby-1.8.6/lib/ruby/gems/1.8/gems/wrap_in_module-0.1.0/lib/wrap_in_module.rb",
|
206
|
+
"/I/gim/ats/aSrc/app/oldandnewlocation.rb",
|
207
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes/monkeypatch_dbf_gem.rb",
|
208
|
+
"/I/gim/ats/aSrc/test/schmiedebasis_test.rb",
|
209
|
+
"/I/gim/ats/aSrc/test/unit/ort_haupt_test.rb",
|
210
|
+
"/I/gim/ats/aSrc/app/models/ort_exlist.rb",
|
211
|
+
"/I/gim/ats/aSrc/app/models/ort_haupt.rb",
|
212
|
+
"/I/gim/ats/aSrc/app/models/orte.rb",
|
213
|
+
"/I/gim/ats/aSrc/app/models/schmiedebasis.rb",
|
214
|
+
"/I/gim/ats/aSrc/app/models/ort_excel.rb",
|
215
|
+
"/I/gim/ats/aSrc/app/models/dbf_boxes.rb",
|
216
|
+
"/I/gim/ats/aSrc/app/models/generali.rb",
|
217
|
+
"/I/gim/ats/aSrc/init.rb",
|
218
|
+
"/I/gim/ats/rakefile.rb"
|
219
|
+
],
|
220
|
+
"find":
|
221
|
+
{
|
222
|
+
"height": 27.0
|
223
|
+
},
|
224
|
+
"find_in_files":
|
225
|
+
{
|
226
|
+
"height": 0.0,
|
227
|
+
"where_history":
|
228
|
+
[
|
229
|
+
"C:\\D,C:\\Dokumente und Einstellungen\\Zauberthomas\\Eigene Dateien\\aSrc\\app"
|
230
|
+
]
|
231
|
+
},
|
232
|
+
"find_state":
|
233
|
+
{
|
234
|
+
"case_sensitive": false,
|
235
|
+
"find_history":
|
236
|
+
[
|
237
|
+
"&",
|
238
|
+
"&:",
|
239
|
+
"ExcelApplicationHelfer",
|
240
|
+
"flex",
|
241
|
+
"flexm",
|
242
|
+
"SchmiebaSub_TempModule",
|
243
|
+
"SchmiebaMain_TempModule"
|
244
|
+
],
|
245
|
+
"highlight": true,
|
246
|
+
"in_selection": false,
|
247
|
+
"preserve_case": false,
|
248
|
+
"regex": false,
|
249
|
+
"replace_history":
|
250
|
+
[
|
251
|
+
"SB_Sub_TempModule",
|
252
|
+
"SB_Main_TempModule"
|
253
|
+
],
|
254
|
+
"reverse": false,
|
255
|
+
"show_context": true,
|
256
|
+
"use_buffer2": true,
|
257
|
+
"whole_word": false,
|
258
|
+
"wrap": true
|
259
|
+
},
|
260
|
+
"groups":
|
261
|
+
[
|
262
|
+
{
|
263
|
+
"selected": 0,
|
264
|
+
"sheets":
|
265
|
+
[
|
266
|
+
{
|
267
|
+
"buffer": 0,
|
268
|
+
"file": "book_store.rb",
|
269
|
+
"settings":
|
270
|
+
{
|
271
|
+
"buffer_size": 3610,
|
272
|
+
"regions":
|
273
|
+
{
|
274
|
+
},
|
275
|
+
"selection":
|
276
|
+
[
|
277
|
+
[
|
278
|
+
883,
|
279
|
+
883
|
280
|
+
]
|
281
|
+
],
|
282
|
+
"settings":
|
283
|
+
{
|
284
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
285
|
+
"tab_size": 2,
|
286
|
+
"translate_tabs_to_spaces": true
|
287
|
+
},
|
288
|
+
"translation.x": 0.0,
|
289
|
+
"translation.y": 299.0,
|
290
|
+
"zoom_level": 1.0
|
291
|
+
},
|
292
|
+
"type": "text"
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"buffer": 1,
|
296
|
+
"file": "/C/gim/ats/aSrc/gems/robust_excel_ole/spec/book_store_spec.rb",
|
297
|
+
"settings":
|
298
|
+
{
|
299
|
+
"buffer_size": 12744,
|
300
|
+
"regions":
|
301
|
+
{
|
302
|
+
},
|
303
|
+
"selection":
|
304
|
+
[
|
305
|
+
[
|
306
|
+
10605,
|
307
|
+
10605
|
308
|
+
]
|
309
|
+
],
|
310
|
+
"settings":
|
311
|
+
{
|
312
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
313
|
+
"tab_size": 2,
|
314
|
+
"translate_tabs_to_spaces": true
|
315
|
+
},
|
316
|
+
"translation.x": 0.0,
|
317
|
+
"translation.y": 4865.0,
|
318
|
+
"zoom_level": 1.0
|
319
|
+
},
|
320
|
+
"type": "text"
|
321
|
+
},
|
322
|
+
{
|
323
|
+
"buffer": 2,
|
324
|
+
"file": "book.rb",
|
325
|
+
"settings":
|
326
|
+
{
|
327
|
+
"buffer_size": 19471,
|
328
|
+
"regions":
|
329
|
+
{
|
330
|
+
},
|
331
|
+
"selection":
|
332
|
+
[
|
333
|
+
[
|
334
|
+
0,
|
335
|
+
0
|
336
|
+
]
|
337
|
+
],
|
338
|
+
"settings":
|
339
|
+
{
|
340
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
341
|
+
"tab_size": 2,
|
342
|
+
"translate_tabs_to_spaces": true
|
343
|
+
},
|
344
|
+
"translation.x": 0.0,
|
345
|
+
"translation.y": 0.0,
|
346
|
+
"zoom_level": 1.0
|
347
|
+
},
|
348
|
+
"type": "text"
|
349
|
+
}
|
350
|
+
]
|
351
|
+
}
|
352
|
+
],
|
353
|
+
"incremental_find":
|
354
|
+
{
|
355
|
+
"height": 27.0
|
356
|
+
},
|
357
|
+
"input":
|
358
|
+
{
|
359
|
+
"height": 37.0
|
360
|
+
},
|
361
|
+
"layout":
|
362
|
+
{
|
363
|
+
"cells":
|
364
|
+
[
|
365
|
+
[
|
366
|
+
0,
|
367
|
+
0,
|
368
|
+
1,
|
369
|
+
1
|
370
|
+
]
|
371
|
+
],
|
372
|
+
"cols":
|
373
|
+
[
|
374
|
+
0.0,
|
375
|
+
1.0
|
376
|
+
],
|
377
|
+
"rows":
|
378
|
+
[
|
379
|
+
0.0,
|
380
|
+
1.0
|
381
|
+
]
|
382
|
+
},
|
383
|
+
"menu_visible": true,
|
384
|
+
"output.exec":
|
385
|
+
{
|
386
|
+
"height": 185.0
|
387
|
+
},
|
388
|
+
"output.find_results":
|
389
|
+
{
|
390
|
+
"height": 0.0
|
391
|
+
},
|
392
|
+
"replace":
|
393
|
+
{
|
394
|
+
"height": 50.0
|
395
|
+
},
|
396
|
+
"save_all_on_build": true,
|
397
|
+
"select_file":
|
398
|
+
{
|
399
|
+
"height": 0.0,
|
400
|
+
"selected_items":
|
401
|
+
[
|
402
|
+
],
|
403
|
+
"width": 0.0
|
404
|
+
},
|
405
|
+
"select_project":
|
406
|
+
{
|
407
|
+
"height": 0.0,
|
408
|
+
"selected_items":
|
409
|
+
[
|
410
|
+
],
|
411
|
+
"width": 0.0
|
412
|
+
},
|
413
|
+
"show_minimap": true,
|
414
|
+
"show_open_files": false,
|
415
|
+
"show_tabs": true,
|
416
|
+
"side_bar_visible": true,
|
417
|
+
"side_bar_width": 132.0,
|
418
|
+
"status_bar_visible": true
|
419
|
+
}
|