logback 0.9.9.1 → 0.9.11.1
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/History.txt +7 -2
- data/Manifest.txt +3 -3
- data/Rakefile +2 -2
- data/lib/logback.rb +1 -4
- data/lib/logback/base.rb +1 -1
- data/lib/logback/{logback-access-0.9.9.jar → logback-access-0.9.11.jar} +0 -0
- data/lib/logback/logback-classic-0.9.11.jar +0 -0
- data/lib/logback/logback-core-0.9.11.jar +0 -0
- data/pom.xml +2 -2
- data/test/test_logback.rb +12 -12
- metadata +10 -10
- data/lib/logback/logback-classic-0.9.9.jar +0 -0
- data/lib/logback/logback-core-0.9.9.jar +0 -0
data/History.txt
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
===
|
|
1
|
+
=== 0.9.11.1 / 2008-11-01
|
|
2
2
|
|
|
3
|
-
*
|
|
3
|
+
* Upgraded to Logback 0.9.11
|
|
4
|
+
* Updated SLF4J dependency to ~> 1.5.5
|
|
5
|
+
|
|
6
|
+
=== 0.9.9.1 / 2008-10-08
|
|
7
|
+
|
|
8
|
+
* Initial release based on Logback 0.9.9
|
|
4
9
|
|
data/Manifest.txt
CHANGED
|
@@ -8,6 +8,6 @@ lib/logback.rb
|
|
|
8
8
|
lib/logback/access.rb
|
|
9
9
|
lib/logback/base.rb
|
|
10
10
|
test/test_logback.rb
|
|
11
|
-
lib/logback/logback-core-0.9.
|
|
12
|
-
lib/logback/logback-classic-0.9.
|
|
13
|
-
lib/logback/logback-access-0.9.
|
|
11
|
+
lib/logback/logback-core-0.9.11.jar
|
|
12
|
+
lib/logback/logback-classic-0.9.11.jar
|
|
13
|
+
lib/logback/logback-access-0.9.11.jar
|
data/Rakefile
CHANGED
|
@@ -70,8 +70,8 @@ end
|
|
|
70
70
|
task :clean => :mvn_clean
|
|
71
71
|
|
|
72
72
|
hoe = Hoe.new( "logback", LogbackBase::VERSION ) do |p|
|
|
73
|
-
p.developer( "David Kellum", "dek-
|
|
74
|
-
p.extra_deps << [ 'slf4j', '
|
|
73
|
+
p.developer( "David Kellum", "dek-ruby@gravitext.com" )
|
|
74
|
+
p.extra_deps << [ 'slf4j', '~> 1.5.5' ]
|
|
75
75
|
p.rubyforge_name = "rjack"
|
|
76
76
|
p.rdoc_pattern = /^(lib.*\.(rb|txt))|[^\/]*\.txt$/
|
|
77
77
|
end
|
data/lib/logback.rb
CHANGED
data/lib/logback/base.rb
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/pom.xml
CHANGED
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
<dependency>
|
|
13
13
|
<groupId>ch.qos.logback</groupId>
|
|
14
14
|
<artifactId>logback-classic</artifactId>
|
|
15
|
-
<version>0.9.
|
|
15
|
+
<version>0.9.11</version>
|
|
16
16
|
<scope>runtime</scope>
|
|
17
17
|
</dependency>
|
|
18
18
|
|
|
19
19
|
<dependency>
|
|
20
20
|
<groupId>ch.qos.logback</groupId>
|
|
21
21
|
<artifactId>logback-access</artifactId>
|
|
22
|
-
<version>0.9.
|
|
22
|
+
<version>0.9.11</version>
|
|
23
23
|
<scope>runtime</scope>
|
|
24
24
|
</dependency>
|
|
25
25
|
|
data/test/test_logback.rb
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
#!/usr/bin/env jruby
|
|
2
2
|
#--
|
|
3
|
-
# Copyright 2008 David Kellum
|
|
3
|
+
# Copyright (C) 2008 David Kellum
|
|
4
4
|
#
|
|
5
|
-
#
|
|
6
|
-
#
|
|
7
|
-
#
|
|
5
|
+
# Logback Ruby is free software: you can redistribute it and/or
|
|
6
|
+
# modify it under the terms of the
|
|
7
|
+
# {GNU Lesser General Public License}[http://www.gnu.org/licenses/lgpl.html]
|
|
8
|
+
# as published by the Free Software Foundation, either version 3 of the
|
|
9
|
+
# License, or (at your option) any later version.
|
|
8
10
|
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
11
|
-
#
|
|
12
|
-
#
|
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
14
|
-
# implied. See the License for the specific language governing
|
|
15
|
-
# permissions and limitations under the License.
|
|
11
|
+
# Logback Ruby is distributed in the hope that it will be useful, but
|
|
12
|
+
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14
|
+
# Lesser General Public License for more details.
|
|
16
15
|
#++
|
|
17
16
|
|
|
18
|
-
|
|
19
17
|
$LOAD_PATH.unshift File.join( File.dirname(__FILE__), "..", "lib" )
|
|
20
18
|
|
|
19
|
+
gem( 'slf4j', '~> 1.5.5' )
|
|
20
|
+
require 'slf4j'
|
|
21
21
|
require 'logback'
|
|
22
22
|
|
|
23
23
|
# Test load works
|
metadata
CHANGED
|
@@ -6,7 +6,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
6
6
|
version: "0"
|
|
7
7
|
version:
|
|
8
8
|
email:
|
|
9
|
-
- dek-
|
|
9
|
+
- dek-ruby@gravitext.com
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
12
|
summary: The Logback ruby gem packages the Logback[http://logback.qos.ch/] java log
|
|
@@ -42,9 +42,9 @@ files:
|
|
|
42
42
|
- lib/logback/access.rb
|
|
43
43
|
- lib/logback/base.rb
|
|
44
44
|
- test/test_logback.rb
|
|
45
|
-
- lib/logback/logback-core-0.9.
|
|
46
|
-
- lib/logback/logback-classic-0.9.
|
|
47
|
-
- lib/logback/logback-access-0.9.
|
|
45
|
+
- lib/logback/logback-core-0.9.11.jar
|
|
46
|
+
- lib/logback/logback-classic-0.9.11.jar
|
|
47
|
+
- lib/logback/logback-access-0.9.11.jar
|
|
48
48
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
49
49
|
requirements:
|
|
50
50
|
- - '>='
|
|
@@ -53,26 +53,26 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
53
53
|
version:
|
|
54
54
|
extensions: []
|
|
55
55
|
|
|
56
|
-
rubygems_version: 1.
|
|
56
|
+
rubygems_version: 1.3.1
|
|
57
57
|
requirements: []
|
|
58
58
|
|
|
59
59
|
authors:
|
|
60
60
|
- David Kellum
|
|
61
|
-
date: 2008-
|
|
61
|
+
date: 2008-11-03 08:00:00 +00:00
|
|
62
62
|
platform: ruby
|
|
63
63
|
test_files:
|
|
64
64
|
- test/test_logback.rb
|
|
65
65
|
version: !ruby/object:Gem::Version
|
|
66
|
-
version: 0.9.
|
|
66
|
+
version: 0.9.11.1
|
|
67
67
|
require_paths:
|
|
68
68
|
- lib
|
|
69
69
|
dependencies:
|
|
70
70
|
- !ruby/object:Gem::Dependency
|
|
71
71
|
version_requirements: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
|
-
- -
|
|
73
|
+
- - ~>
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 1.5.
|
|
75
|
+
version: 1.5.5
|
|
76
76
|
version:
|
|
77
77
|
type: :runtime
|
|
78
78
|
version_requirement:
|
|
@@ -82,7 +82,7 @@ dependencies:
|
|
|
82
82
|
requirements:
|
|
83
83
|
- - '>='
|
|
84
84
|
- !ruby/object:Gem::Version
|
|
85
|
-
version: 1.8.
|
|
85
|
+
version: 1.8.2
|
|
86
86
|
version:
|
|
87
87
|
type: :development
|
|
88
88
|
version_requirement:
|
|
Binary file
|
|
Binary file
|