globalog 0.1.2 → 0.1.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/lib/globalog.rb +2 -2
- data/test/tc_globalog_main.rb +3 -3
- metadata +2 -2
data/lib/globalog.rb
CHANGED
@@ -60,8 +60,8 @@
|
|
60
60
|
|
61
61
|
require 'logger'
|
62
62
|
class GlobaLog < Logger
|
63
|
-
require 'globalog_args'
|
64
|
-
require 'globalog_hijack'
|
63
|
+
require File.join( File.dirname( File.expand_path(__FILE__)), 'globalog_args')
|
64
|
+
require File.join( File.dirname( File.expand_path(__FILE__)), 'globalog_hijack')
|
65
65
|
|
66
66
|
# The GlobaLog.logger acts as a constructor method for the logger.
|
67
67
|
# === Parameters
|
data/test/tc_globalog_main.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
$:.unshift File.join(File.dirname(__FILE__), "..", "lib")
|
2
|
-
require 'globalog'
|
3
1
|
require 'test/unit'
|
4
2
|
|
5
|
-
require '
|
3
|
+
require File.join( File.dirname( File.expand_path(__FILE__)), '..', 'lib', 'globalog')
|
4
|
+
require File.join( File.dirname( File.expand_path(__FILE__)), 'external_helper')
|
5
|
+
|
6
6
|
|
7
7
|
class TestGlobaLogMain < Test::Unit::TestCase
|
8
8
|
include LogMessage
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: globalog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Louis-Philippe Perron
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-02-
|
12
|
+
date: 2009-02-26 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|