logback 0.9.9.1 → 0.9.11.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,4 +1,9 @@
1
- === 1.5.3.1 / 2008-09-24
1
+ === 0.9.11.1 / 2008-11-01
2
2
 
3
- * Initial gem based on SLF4J 1.5.3 and gravitext-jruby 1.1 fork.
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.9.jar
12
- lib/logback/logback-classic-0.9.9.jar
13
- lib/logback/logback-access-0.9.9.jar
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-gem@gravitext.com" )
74
- p.extra_deps << [ 'slf4j', '>=1.5.3.1' ]
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
@@ -14,11 +14,8 @@
14
14
  #++
15
15
 
16
16
  require 'rubygems'
17
-
18
- gem( 'slf4j', '>=1.5.3.1' )
19
- require 'slf4j'
20
-
21
17
  require 'java'
18
+ require 'slf4j'
22
19
 
23
20
  require 'logback/base'
24
21
 
data/lib/logback/base.rb CHANGED
@@ -14,7 +14,7 @@
14
14
  #++
15
15
 
16
16
  module LogbackBase
17
- LOGBACK_VERSION = '0.9.9'
17
+ LOGBACK_VERSION = '0.9.11'
18
18
  VERSION = LOGBACK_VERSION + '.1'
19
19
 
20
20
  LOGBACK_DIR = File.dirname(__FILE__) # :nodoc:
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.9</version>
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.9</version>
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
- # Licensed under the Apache License, Version 2.0 (the "License"); you
6
- # may not use this file except in compliance with the License. You
7
- # may obtain a copy of the License at
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
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
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-gem@gravitext.com
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.9.jar
46
- - lib/logback/logback-classic-0.9.9.jar
47
- - lib/logback/logback-access-0.9.9.jar
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.2.0
56
+ rubygems_version: 1.3.1
57
57
  requirements: []
58
58
 
59
59
  authors:
60
60
  - David Kellum
61
- date: 2008-10-13 08:00:00 +00:00
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.9.1
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.3.1
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.0
85
+ version: 1.8.2
86
86
  version:
87
87
  type: :development
88
88
  version_requirement:
Binary file
Binary file