robust_excel_ole 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
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 can be sent.
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 +:default_excel+, +:force_excel+, +:if_absent+, +:if_unsaved+, +:if_obstructed+, +:read_only+, +:visible+, +:displayalerts+.
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
- Opening a workbook with the same name in a different path.
44
- The option +:if_obstructed+ => +:forget+ causes the old workbook to close such that it does not block the new workbook anymore.
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
- Opening another workbook with the same file name in the running Excel. The option +:if_unsaved+ => +:accept+ has the effect that if the workbook contains unsaved changes, then the workbook remains open, but no error is raised, i.e. the program can continue.
57
+ book = Book.open('workbook.xls', :if_unsaved => :accept)
49
58
 
50
- book3 = Book.open('workbook.xls', :if_unsaved => :accept)
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
- The option is : +:if_unsaved+. Example:
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, +:visible+
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:Readme_detail_rdoc.html
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 processes Excel files, allows to perform all win32ole operations,
4
- convenient methods for opening, saving and closing, and implements an Excel file management system.
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 book.
24
+ === Opening a workbook.
21
25
 
22
26
  Example:
23
27
 
24
28
  book = Book.open('workbook.xls')
25
29
 
26
- Open a book with a block.
27
- The semantics is similar to, e.g., File.open.
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 used before if the book was once open (default: +reuse+)
36
- +:force_excel+:: open in a new or given Excel instance (defaut: +:new+)
37
- +:if_absent+:: create a new workbook and save it if it does not exists (default: +create+)
38
- +:if_unsaved+:: specify behaviour if the book was unsaved (default: +new_excel+)
39
- +:if_obstructed+:: specidy behaviour if the book is blocked by another book (default: +new_excel+)
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 book was open before, then open it in the Excel instance used before. If the book cannot be reopened, then
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 book was open before,
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 an unsaved book with the same name is open, then
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 book.
71
- +:accept+:: Let the unsaved book open.
72
- +:forget+:: Discard any changes and reopen the book.
73
- +:new_excel+:: Open the new book in a new Excel instance
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 book with same name in a different path is open, then
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 book.
81
- +:forget+:: Close the old book, open the new book.
82
- +:save+:: Save the old book, close it, open the new book
83
- +:close_if_saved+:: Close the old book and open the new book, if the old book is saved, otherwise raise an exception.
84
- +:new_excel+:: Open the new book in a new Excel instance.
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 book.
92
+ === Closing a workbook.
89
93
 
90
94
  Simple close.
91
95
 
92
96
  book.close
93
97
 
94
- The option is : +:if_unsaved+ . It can have one of the following values:
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 book is unsaved, then
102
+ The option specifies: If the workbook is unsaved, then
99
103
 
100
- +:save+:: Save the book before closing it.
101
- +:raise+:: Raise an exception. Don't close the book.
102
- +:forget+:: Close the book.
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 book.
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 book
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
- Sometimes the user wants to read and possibly modify a book, no matter if it is open in some Excel instance or not, is saved or unsaved. The method +unobtrusively+ provides this service. When modifying a book unobtrusively, its status remains unchanged. This status includes, wheter the book is opened or closed, saved or unsaved, readonly or writable. If the books were closed and the Excel instance are still running, then the book is opened in the Excel instance where it was opened most recently or in a new Excel. This is relevant if the book has references to other books.
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 books in one separate Excel instance that is not visible and has no displayaslerts
136
- :reuse : open closed books in the Excel instance of the book, if it exists, otherwise reuse another Excel
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
- === Alive.
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
- === Make an Excel visible or invisible, and enable and disable DisplayAlerts.
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 = self.class.create(@file)
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 ExcelUserCanceled, "open: canceled by user"
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 = was_not_alive_or_nil ?
285
- (options[:if_closed] == :hidden ? open(file, :force_excel => book_store.ensure_hidden_excel) : open(file)) :
286
- ((was_writable || options[:read_only]) ? book :
287
- (options[:use_readonly_excel] ? open(file, :force_excel => book.excel) : open(file, :force_excel => :new)))
288
- book.excel.visible = opts[:visible] unless opts[:visible].nil?
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
- @filename2books[filename_key].delete(wr_book)
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 ensure_hidden_excel
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": "book.rb",
36
- "settings":
37
- {
38
- "buffer_size": 2756,
39
- "line_ending": "Windows"
40
- }
41
- }
42
- ],
43
- "build_system": "",
44
- "command_palette":
45
- {
46
- "height": 196.0,
47
- "selected_items":
48
- [
49
- [
50
- "INST",
51
- "Package Control: Install Package"
52
- ],
53
- [
54
- "pack",
55
- "Package Control: Upgrade/Overwrite All Packages"
56
- ],
57
- [
58
- "upg",
59
- "Package Control: Upgrade/Overwrite All Packages"
60
- ],
61
- [
62
- "",
63
- "Package Control: Upgrade Package"
64
- ],
65
- [
66
- "ins",
67
- "Package Control: Install Package"
68
- ],
69
- [
70
- "pa",
71
- "Package Control: Install Package"
72
- ]
73
- ],
74
- "width": 386.0
75
- },
76
- "console":
77
- {
78
- "height": 126.0
79
- },
80
- "distraction_free":
81
- {
82
- "menu_visible": true,
83
- "show_minimap": false,
84
- "show_open_files": false,
85
- "show_tabs": false,
86
- "side_bar_visible": false,
87
- "status_bar_visible": false
88
- },
89
- "file_history":
90
- [
91
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/robust_excel_ole/spec/book_spec.rb",
92
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/robust_excel_ole/lib/robust_excel_ole.rb",
93
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/robust_excel_ole/lib/robust_excel_ole/book.rb",
94
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/ruby/einmaleins_test.rb",
95
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/robust_excel_ole/spec/spec_helper.rb",
96
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/test/unit/wandler/wandler_hr5_test.rb",
97
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/test/unit/system_fkt/excel_zugriff/exlzug_ats_test.rb",
98
- "/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/RubyTest.sublime-settings",
99
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/app/models/system_fkt/excel_zugriff/exlzug_basis.rb",
100
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/ruby/einmaleins_v07.rb",
101
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/test/unit/dbf_boxes/v_objekte/rk_test.rb",
102
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/app/models/dbf_boxes/v_objekte/rk.rb",
103
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/test/schmiedebasis_test.rb",
104
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/app/controllers/gui_apollo/schmiedebasis.rb",
105
- "/C/Dokumente und Einstellungen/Zauberthomas/Eigene Dateien/aSrc/app/galaxy_script/g_script/galaxy_object.rb",
106
- "/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/Preferences.sublime-settings",
107
- "/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/Default/Preferences.sublime-settings",
108
- "/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/RubyTest/RubyTest.sublime-settings",
109
- "/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/Distraction Free.sublime-settings",
110
- "/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/JSON.sublime-settings",
111
- "/I/gim/ats/TodoListe.txt",
112
- "/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Packages/User/RubyTest.last-run",
113
- "/I/gim/ats/aSrc/test/testbasis.rb",
114
- "/I/gim/ats/aSrc/test/fixture_generell.rb",
115
- "/C/ProgLang/Ruby-1.8.6/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb",
116
- "/I/gim/ats/aSrc/app/controllers/prozesse/diener.rb",
117
- "/C/Dokumente und Einstellungen/sound/Lokale Einstellungen/Temp/tar2rubyscript.d.3800.1/tsExpo/app/controllers/prozesse/diener.rb",
118
- "/I/gim/ats/aSrc/app/controllers/ats_konsole.rb",
119
- "/I/gim/ats/aSrc/test/controllers/prozesse/dienstherr_test.rb",
120
- "/I/gim/ats/aSrc/lib/controllers/prozesse/dienstherr.rb",
121
- "/I/gim/ats/aSrc/lib/schmiedebasis.rb",
122
- "/C/ProgLang/Ruby-1.8.6/lib/ruby/gems/1.8/gems/autotest-standalone-4.5.11/lib/autotest/notify.rb",
123
- "/C/Dokumente und Einstellungen/sound/Anwendungsdaten/Sublime Text 3/Installed Packages/RubyTest.sublime-package",
124
- "/I/gim/ats/aSrc/app/.loadpath",
125
- "/I/gim/ats/aSrc/app/iconv.rb",
126
- "/I/gim/ats/aSrc/app/init_x.rb",
127
- "/I/gim/ats/aSrc/app/schmiedebasis.rb",
128
- "/I/gim/ats/aSrc/app/temp_app.rb",
129
- "/I/gim/ats/aSrc/app/testhilfe.rb",
130
- "/I/gim/ats/aSrc/app/version.rb",
131
- "/I/gim/ats/aSrc/app/models/wandler/dbf2exl.rb",
132
- "/I/gim/ats/aSrc/app/models/wandler/excel_zuordnung.rb",
133
- "/I/gim/ats/aSrc/app/models/wandler/satz_split.rb",
134
- "/I/gim/ats/aSrc/app/models/wandler/wandler_allgemein.rb",
135
- "/I/gim/ats/aSrc/app/models/wandler/wandler_hr5.rb",
136
- "/I/gim/ats/aSrc/app/models/wandler/wandler_zu_excel.rb",
137
- "/I/gim/ats/aSrc/app/models/wandler/excel_zuordnung/zuord_hr5.rb",
138
- "/I/gim/ats/aSrc/app/models/wandler/excel_zuordnung/zuord_hr6.rb",
139
- "/I/gim/ats/aSrc/app/models/wandler/excel_zuordnung/zuord_ng1.rb",
140
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung/eintrag_persistenz.rb",
141
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung/haupt_konfig_hash.rb",
142
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung/inifile_hash.rb",
143
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung/konfig_option.rb",
144
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung/konfig_optionen.rb",
145
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung/konfig_opts.rb",
146
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung/ort_persistenz.rb",
147
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung/schmiedebasis.rb",
148
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung/vergleichs_ergebnis.rb",
149
- "/I/gim/ats/aSrc/app/models/system_fkt/excel_zugriff/exlzug_ats.rb",
150
- "/I/gim/ats/aSrc/app/models/system_fkt/excel_zugriff/exlzug_basis.rb",
151
- "/I/gim/ats/aSrc/app/models/system_fkt/excel_zugriff/exlzug_openclose.rb",
152
- "/I/gim/ats/aSrc/app/models/system_fkt/datei_aufraeumer.rb",
153
- "/I/gim/ats/aSrc/app/models/system_fkt/dbase_zugriff.rb",
154
- "/I/gim/ats/aSrc/app/models/system_fkt/excel_prozesse.rb",
155
- "/I/gim/ats/aSrc/app/models/system_fkt/excel_zugriff.rb",
156
- "/I/gim/ats/aSrc/app/models/system_fkt/protokollierer.rb",
157
- "/I/gim/ats/aSrc/app/models/system_fkt/schmiedebasis.rb",
158
- "/I/gim/ats/aSrc/app/models/system_fkt/speicherung.rb",
159
- "/I/gim/ats/aSrc/app/models/system_fkt/tasten_sender.rb",
160
- "/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekt.rb",
161
- "/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte.rb",
162
- "/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/va.rb",
163
- "/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/vb.rb",
164
- "/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/vd.rb",
165
- "/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/vk.rb",
166
- "/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/vt.rb",
167
- "/I/gim/ats/aSrc/app/models/dbf_boxes/v_objekte/rk.rb",
168
- "/I/gim/ats/aSrc/app/models/basis_logik/zeit.rb",
169
- "/I/gim/ats/aSrc/app/controllers/teste_tv2_a03.rb",
170
- "/I/gim/ats/aSrc/app/controllers/teste_tv2.rb",
171
- "/I/gim/ats/aSrc/app/controllers/schmiedebasis.rb",
172
- "/I/gim/ats/aSrc/app/controllers/orte_controller.rb",
173
- "/I/gim/ats/aSrc/app/controllers/mathstar_per_tasten.rb",
174
- "/I/gim/ats/aSrc/app/controllers/mathstar_per_dll.rb",
175
- "/I/gim/ats/aSrc/app/controllers/iterator.rb",
176
- "/I/gim/ats/aSrc/app/controllers/galaxy_script.rb",
177
- "/I/gim/ats/aSrc/app/controllers/dbf_vergleicher.rb",
178
- "/I/gim/ats/aSrc/app/controllers/controller.rb",
179
- "/I/gim/ats/aSrc/app/controllers/gui_apollo/gui_ap.rb",
180
- "/I/gim/ats/aSrc/app/controllers/gui_apollo/gui_basis_ap.rb",
181
- "/I/gim/ats/aSrc/app/controllers/gui_apollo/guikonfig_ap.rb",
182
- "/I/gim/ats/aSrc/app/controllers/gui_apollo/guivertr_ap.rb",
183
- "/I/gim/ats/aSrc/app/controllers/gui_apollo/schmiedebasis.rb",
184
- "/I/gim/ats/aSrc/app/controllers/prozesse/aufgaben.rb",
185
- "/I/gim/ats/aSrc/app/controllers/prozesse/dienstherr.rb",
186
- "/I/gim/ats/aSrc/app/controllers/prozesse/dienstkontakt.rb",
187
- "/I/gim/ats/aSrc/app/controllers/prozesse/schmiedebasis.rb",
188
- "/I/gim/ats/aSrc/app/controllers/teste_tv2_prober2.rb",
189
- "/C/ProgLang/Ruby-1.8.6/lib/ruby/gems/1.8/gems/wrap_in_module-0.1.0/lib/wrap_in_module.rb",
190
- "/I/gim/ats/aSrc/app/oldandnewlocation.rb",
191
- "/I/gim/ats/aSrc/app/models/dbf_boxes/monkeypatch_dbf_gem.rb",
192
- "/I/gim/ats/aSrc/test/schmiedebasis_test.rb",
193
- "/I/gim/ats/aSrc/test/unit/ort_haupt_test.rb",
194
- "/I/gim/ats/aSrc/app/models/ort_exlist.rb",
195
- "/I/gim/ats/aSrc/app/models/ort_haupt.rb",
196
- "/I/gim/ats/aSrc/app/models/orte.rb",
197
- "/I/gim/ats/aSrc/app/models/schmiedebasis.rb",
198
- "/I/gim/ats/aSrc/app/models/ort_excel.rb",
199
- "/I/gim/ats/aSrc/app/models/dbf_boxes.rb",
200
- "/I/gim/ats/aSrc/app/models/generali.rb",
201
- "/I/gim/ats/aSrc/init.rb",
202
- "/I/gim/ats/rakefile.rb"
203
- ],
204
- "find":
205
- {
206
- "height": 27.0
207
- },
208
- "find_in_files":
209
- {
210
- "height": 0.0,
211
- "where_history":
212
- [
213
- "C:\\D,C:\\Dokumente und Einstellungen\\Zauberthomas\\Eigene Dateien\\aSrc\\app"
214
- ]
215
- },
216
- "find_state":
217
- {
218
- "case_sensitive": false,
219
- "find_history":
220
- [
221
- "&",
222
- "&:",
223
- "ExcelApplicationHelfer",
224
- "flex",
225
- "flexm",
226
- "SchmiebaSub_TempModule",
227
- "SchmiebaMain_TempModule"
228
- ],
229
- "highlight": true,
230
- "in_selection": false,
231
- "preserve_case": false,
232
- "regex": false,
233
- "replace_history":
234
- [
235
- "SB_Sub_TempModule",
236
- "SB_Main_TempModule"
237
- ],
238
- "reverse": false,
239
- "show_context": true,
240
- "use_buffer2": true,
241
- "whole_word": false,
242
- "wrap": true
243
- },
244
- "groups":
245
- [
246
- {
247
- "selected": 0,
248
- "sheets":
249
- [
250
- {
251
- "buffer": 0,
252
- "file": "book.rb",
253
- "settings":
254
- {
255
- "buffer_size": 2756,
256
- "regions":
257
- {
258
- },
259
- "selection":
260
- [
261
- [
262
- 0,
263
- 0
264
- ]
265
- ],
266
- "settings":
267
- {
268
- "syntax": "Packages/Ruby/Ruby.tmLanguage",
269
- "tab_size": 2,
270
- "translate_tabs_to_spaces": true
271
- },
272
- "translation.x": 0.0,
273
- "translation.y": 0.0,
274
- "zoom_level": 1.0
275
- },
276
- "type": "text"
277
- }
278
- ]
279
- }
280
- ],
281
- "incremental_find":
282
- {
283
- "height": 27.0
284
- },
285
- "input":
286
- {
287
- "height": 37.0
288
- },
289
- "layout":
290
- {
291
- "cells":
292
- [
293
- [
294
- 0,
295
- 0,
296
- 1,
297
- 1
298
- ]
299
- ],
300
- "cols":
301
- [
302
- 0.0,
303
- 1.0
304
- ],
305
- "rows":
306
- [
307
- 0.0,
308
- 1.0
309
- ]
310
- },
311
- "menu_visible": true,
312
- "output.exec":
313
- {
314
- "height": 301.0
315
- },
316
- "output.find_results":
317
- {
318
- "height": 0.0
319
- },
320
- "replace":
321
- {
322
- "height": 50.0
323
- },
324
- "save_all_on_build": true,
325
- "select_file":
326
- {
327
- "height": 0.0,
328
- "selected_items":
329
- [
330
- ],
331
- "width": 0.0
332
- },
333
- "select_project":
334
- {
335
- "height": 0.0,
336
- "selected_items":
337
- [
338
- ],
339
- "width": 0.0
340
- },
341
- "show_minimap": true,
342
- "show_open_files": false,
343
- "show_tabs": true,
344
- "side_bar_visible": true,
345
- "side_bar_width": 132.0,
346
- "status_bar_visible": true
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
+ }