robust_excel_ole 0.3.7 → 0.3.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,28 @@
1
+ LOG_TO_STDOUT = false unless Object.const_defined?(:LOG_TO_STDOUT)
2
+ REO_LOG_DIR = "" unless Object.const_defined?(:REO_LOG_DIR)
3
+ REO_LOG_FILE = "reo.log" unless Object.const_defined?(:REO_LOG_FILE)
4
+
5
+ File.delete REO_LOG_FILE rescue nil
6
+
7
+ module Utilities # :nodoc: #
8
+
9
+ def trace(text)
10
+ if LOG_TO_STDOUT
11
+ puts text
12
+ else
13
+ if REO_LOG_DIR.empty?
14
+ homes = ["HOME", "HOMEPATH"]
15
+ home = homes.find {|h| ENV[h] != nil}
16
+ reo_log_dir = ENV[home]
17
+ else
18
+ reo_log_dir = REO_LOG_DIR
19
+ end
20
+ File.open(reo_log_dir + "/" + REO_LOG_FILE,"a") do | file |
21
+ file.puts text
22
+ end
23
+ end
24
+ end
25
+
26
+ module_function :trace
27
+
28
+ end
@@ -1,3 +1,3 @@
1
1
  module RobustExcelOle
2
- VERSION = "0.3.7"
2
+ VERSION = "0.3.8"
3
3
  end
@@ -235,7 +235,6 @@ describe Book do
235
235
  book5 = Book.open(@simple_file, :force_excel => book2.workbook)
236
236
  book5.excel.should === book2.excel
237
237
  win32ole_excel1 = WIN32OLE.connect(@book.workbook.Fullname).Application
238
- puts "win32ole_excel1: #{win32ole_excel1}"
239
238
  book6 = Book.open(@simple_file, :force_excel => win32ole_excel1)
240
239
  book6.excel.should === @book.excel
241
240
  end
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: robust_excel_ole
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 3
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 7
10
- version: 0.3.7
9
+ - 8
10
+ version: 0.3.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - traths
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2015-12-04 00:00:00 +01:00
18
+ date: 2016-02-12 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -87,6 +87,7 @@ files:
87
87
  - lib/robust_excel_ole/robustexcelole.sublime-project
88
88
  - lib/robust_excel_ole/robustexcelole.sublime-workspace
89
89
  - lib/robust_excel_ole/sheet.rb
90
+ - lib/robust_excel_ole/utilities.rb
90
91
  - lib/robust_excel_ole/version.rb
91
92
  - lib/spec_helper.rb
92
93
  - reo.bat