rjack-slf4j 1.6.1.0-java → 1.6.2.0-java

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,3 +1,6 @@
1
+ === 1.6.2.0 (2011-8-29)
2
+ * Upgraded to SLF4J 1.6.2
3
+
1
4
  === 1.6.1.0 (2010-8-31)
2
5
  * Upgraded to SLF4J 1.6.1
3
6
  * Remove SLF4J from global namespace (was kept deprecated for
data/Manifest.txt CHANGED
@@ -18,12 +18,12 @@ lib/rjack-slf4j/log4j-over-slf4j.rb
18
18
  lib/rjack-slf4j/log4j12.rb
19
19
  lib/rjack-slf4j/nop.rb
20
20
  lib/rjack-slf4j/simple.rb
21
- lib/rjack-slf4j/jcl-over-slf4j-1.6.1.jar
22
- lib/rjack-slf4j/jul-to-slf4j-1.6.1.jar
23
- lib/rjack-slf4j/log4j-over-slf4j-1.6.1.jar
24
- lib/rjack-slf4j/slf4j-api-1.6.1.jar
25
- lib/rjack-slf4j/slf4j-jcl-1.6.1.jar
26
- lib/rjack-slf4j/slf4j-jdk14-1.6.1.jar
27
- lib/rjack-slf4j/slf4j-log4j12-1.6.1.jar
28
- lib/rjack-slf4j/slf4j-nop-1.6.1.jar
29
- lib/rjack-slf4j/slf4j-simple-1.6.1.jar
21
+ lib/rjack-slf4j/jcl-over-slf4j-1.6.2.jar
22
+ lib/rjack-slf4j/jul-to-slf4j-1.6.2.jar
23
+ lib/rjack-slf4j/log4j-over-slf4j-1.6.2.jar
24
+ lib/rjack-slf4j/slf4j-api-1.6.2.jar
25
+ lib/rjack-slf4j/slf4j-jcl-1.6.2.jar
26
+ lib/rjack-slf4j/slf4j-jdk14-1.6.2.jar
27
+ lib/rjack-slf4j/slf4j-log4j12-1.6.2.jar
28
+ lib/rjack-slf4j/slf4j-nop-1.6.2.jar
29
+ lib/rjack-slf4j/slf4j-simple-1.6.2.jar
data/README.rdoc CHANGED
@@ -1,7 +1,8 @@
1
1
  = rjack-slf4j
2
2
 
3
+ * http://rjack.rubyforge.org/slf4j
3
4
  * http://rjack.rubyforge.org
4
- * http://rubyforge.org/projects/rjack
5
+ * https://github.com/dekellum/rjack
5
6
 
6
7
  == Description
7
8
 
@@ -36,7 +37,7 @@ components in a JRuby application.
36
37
 
37
38
  === rjack-slf4j gem
38
39
 
39
- Copyright (c) 2008-2010 David Kellum
40
+ Copyright (c) 2008-2011 David Kellum
40
41
  All rights reserved.
41
42
 
42
43
  The SLF4J ruby wrapper and gem packaging is released under the same
data/Rakefile CHANGED
@@ -4,15 +4,14 @@ $LOAD_PATH << './lib'
4
4
  require 'rjack-slf4j/base'
5
5
 
6
6
  require 'rubygems'
7
- gem 'rjack-tarpit', '~> 1.2.0'
7
+ gem 'rjack-tarpit', '~> 1.3.0'
8
8
  require 'rjack-tarpit'
9
9
 
10
10
  t = RJack::TarPit.new( 'rjack-slf4j', RJack::SLF4J::VERSION, :java_platform )
11
11
 
12
12
  t.specify do |h|
13
13
  h.developer( "David Kellum", "dek-oss@gravitext.com" )
14
- h.rubyforge_name = "rjack"
15
- h.remote_rdoc_dir = "slf4j"
14
+ h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/slf4j"
16
15
  end
17
16
 
18
17
  loaders =
data/assembly.xml CHANGED
@@ -6,6 +6,7 @@
6
6
  <includeBaseDirectory>false</includeBaseDirectory>
7
7
  <dependencySets>
8
8
  <dependencySet>
9
+ <useProjectArtifact>false</useProjectArtifact>
9
10
  <includes>
10
11
  <include>org.slf4j:slf4j-api</include>
11
12
  <include>org.slf4j:jcl-over-slf4j</include>
data/lib/rjack-slf4j.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2010 David Kellum
2
+ # Copyright (c) 2008-2011 David Kellum
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person
5
5
  # obtaining a copy of this software and associated documentation files
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2010 David Kellum
2
+ # Copyright (c) 2008-2011 David Kellum
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person
5
5
  # obtaining a copy of this software and associated documentation files
@@ -26,7 +26,7 @@ module RJack
26
26
  module SLF4J
27
27
 
28
28
  # SLF4J-java version
29
- SLF4J_VERSION = '1.6.1'
29
+ SLF4J_VERSION = '1.6.2'
30
30
  # SLF4J gem version
31
31
  VERSION = SLF4J_VERSION + '.0'
32
32
 
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2010 David Kellum
2
+ # Copyright (c) 2008-2011 David Kellum
3
3
  # All rights reserved.
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person obtaining
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2010 David Kellum
2
+ # Copyright (c) 2008-2011 David Kellum
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person
5
5
  # obtaining a copy of this software and associated documentation files
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2010 David Kellum
2
+ # Copyright (c) 2008-2011 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
Binary file
data/pom.xml CHANGED
@@ -7,39 +7,43 @@
7
7
  <version>1.0</version>
8
8
  <name>SLF4J assembly</name>
9
9
 
10
+ <properties>
11
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12
+ </properties>
13
+
10
14
  <dependencies>
11
15
 
12
16
  <dependency>
13
17
  <groupId>org.slf4j</groupId>
14
18
  <artifactId>slf4j-api</artifactId>
15
- <version>1.6.1</version>
19
+ <version>1.6.2</version>
16
20
  </dependency>
17
21
 
18
22
  <dependency>
19
23
  <groupId>org.slf4j</groupId>
20
24
  <artifactId>jcl-over-slf4j</artifactId>
21
- <version>1.6.1</version>
25
+ <version>1.6.2</version>
22
26
  <scope>runtime</scope>
23
27
  </dependency>
24
28
 
25
29
  <dependency>
26
30
  <groupId>org.slf4j</groupId>
27
31
  <artifactId>jul-to-slf4j</artifactId>
28
- <version>1.6.1</version>
32
+ <version>1.6.2</version>
29
33
  <scope>runtime</scope>
30
34
  </dependency>
31
35
 
32
36
  <dependency>
33
37
  <groupId>org.slf4j</groupId>
34
38
  <artifactId>log4j-over-slf4j</artifactId>
35
- <version>1.6.1</version>
39
+ <version>1.6.2</version>
36
40
  <scope>runtime</scope>
37
41
  </dependency>
38
42
 
39
43
  <dependency>
40
44
  <groupId>org.slf4j</groupId>
41
45
  <artifactId>slf4j-jdk14</artifactId>
42
- <version>1.6.1</version>
46
+ <version>1.6.2</version>
43
47
  <scope>runtime</scope>
44
48
  <optional>true</optional>
45
49
  </dependency>
@@ -47,7 +51,7 @@
47
51
  <dependency>
48
52
  <groupId>org.slf4j</groupId>
49
53
  <artifactId>slf4j-log4j12</artifactId>
50
- <version>1.6.1</version>
54
+ <version>1.6.2</version>
51
55
  <scope>runtime</scope>
52
56
  <optional>true</optional>
53
57
  </dependency>
@@ -55,7 +59,7 @@
55
59
  <dependency>
56
60
  <groupId>org.slf4j</groupId>
57
61
  <artifactId>slf4j-jcl</artifactId>
58
- <version>1.6.1</version>
62
+ <version>1.6.2</version>
59
63
  <scope>runtime</scope>
60
64
  <optional>true</optional>
61
65
  </dependency>
@@ -63,7 +67,7 @@
63
67
  <dependency>
64
68
  <groupId>org.slf4j</groupId>
65
69
  <artifactId>slf4j-simple</artifactId>
66
- <version>1.6.1</version>
70
+ <version>1.6.2</version>
67
71
  <scope>runtime</scope>
68
72
  <optional>true</optional>
69
73
  </dependency>
@@ -71,7 +75,7 @@
71
75
  <dependency>
72
76
  <groupId>org.slf4j</groupId>
73
77
  <artifactId>slf4j-nop</artifactId>
74
- <version>1.6.1</version>
78
+ <version>1.6.2</version>
75
79
  <scope>runtime</scope>
76
80
  <optional>true</optional>
77
81
  </dependency>
@@ -82,18 +86,20 @@
82
86
  <plugins>
83
87
  <plugin>
84
88
  <artifactId>maven-assembly-plugin</artifactId>
89
+ <version>2.2.1</version>
85
90
  <configuration>
91
+ <attach>false</attach>
92
+ <ignoreDirFormatExtensions>false</ignoreDirFormatExtensions>
86
93
  <descriptors>
87
94
  <descriptor>assembly.xml</descriptor>
88
95
  </descriptors>
89
- <tarLongFileMode>gnu</tarLongFileMode>
90
96
  </configuration>
91
97
  <executions>
92
98
  <execution>
93
99
  <id>assembly</id>
94
100
  <phase>package</phase>
95
101
  <goals>
96
- <goal>attached</goal>
102
+ <goal>single</goal>
97
103
  </goals>
98
104
  </execution>
99
105
  </executions>
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env jruby
2
2
  #--
3
- # Copyright (c) 2008-2010 David Kellum
3
+ # Copyright (c) 2008-2011 David Kellum
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person
6
6
  # obtaining a copy of this software and associated documentation files
data/test/test_slf4j.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env jruby
2
2
  #--
3
- # Copyright (c) 2008-2010 David Kellum
3
+ # Copyright (c) 2008-2011 David Kellum
4
4
  #
5
5
  # Permission is hereby granted, free of charge, to any person
6
6
  # obtaining a copy of this software and associated documentation files
metadata CHANGED
@@ -1,13 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-slf4j
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 6
8
- - 1
9
- - 0
10
- version: 1.6.1.0
4
+ prerelease:
5
+ version: 1.6.2.0
11
6
  platform: java
12
7
  authors:
13
8
  - David Kellum
@@ -15,21 +10,17 @@ autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
12
 
18
- date: 2010-08-31 00:00:00 -07:00
19
- default_executable:
13
+ date: 2011-08-30 00:00:00 Z
20
14
  dependencies:
21
15
  - !ruby/object:Gem::Dependency
22
16
  name: rjack-tarpit
23
17
  prerelease: false
24
18
  requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
25
20
  requirements:
26
21
  - - ~>
27
22
  - !ruby/object:Gem::Version
28
- segments:
29
- - 1
30
- - 2
31
- - 2
32
- version: 1.2.2
23
+ version: 1.3.3
33
24
  type: :development
34
25
  version_requirements: *id001
35
26
  description: |-
@@ -75,17 +66,16 @@ files:
75
66
  - lib/rjack-slf4j/log4j12.rb
76
67
  - lib/rjack-slf4j/nop.rb
77
68
  - lib/rjack-slf4j/simple.rb
78
- - lib/rjack-slf4j/jcl-over-slf4j-1.6.1.jar
79
- - lib/rjack-slf4j/jul-to-slf4j-1.6.1.jar
80
- - lib/rjack-slf4j/log4j-over-slf4j-1.6.1.jar
81
- - lib/rjack-slf4j/slf4j-api-1.6.1.jar
82
- - lib/rjack-slf4j/slf4j-jcl-1.6.1.jar
83
- - lib/rjack-slf4j/slf4j-jdk14-1.6.1.jar
84
- - lib/rjack-slf4j/slf4j-log4j12-1.6.1.jar
85
- - lib/rjack-slf4j/slf4j-nop-1.6.1.jar
86
- - lib/rjack-slf4j/slf4j-simple-1.6.1.jar
87
- has_rdoc: true
88
- homepage: http://rjack.rubyforge.org
69
+ - lib/rjack-slf4j/jcl-over-slf4j-1.6.2.jar
70
+ - lib/rjack-slf4j/jul-to-slf4j-1.6.2.jar
71
+ - lib/rjack-slf4j/log4j-over-slf4j-1.6.2.jar
72
+ - lib/rjack-slf4j/slf4j-api-1.6.2.jar
73
+ - lib/rjack-slf4j/slf4j-jcl-1.6.2.jar
74
+ - lib/rjack-slf4j/slf4j-jdk14-1.6.2.jar
75
+ - lib/rjack-slf4j/slf4j-log4j12-1.6.2.jar
76
+ - lib/rjack-slf4j/slf4j-nop-1.6.2.jar
77
+ - lib/rjack-slf4j/slf4j-simple-1.6.2.jar
78
+ homepage: http://rjack.rubyforge.org/slf4j
89
79
  licenses: []
90
80
 
91
81
  post_install_message:
@@ -95,23 +85,21 @@ rdoc_options:
95
85
  require_paths:
96
86
  - lib
97
87
  required_ruby_version: !ruby/object:Gem::Requirement
88
+ none: false
98
89
  requirements:
99
90
  - - ">="
100
91
  - !ruby/object:Gem::Version
101
- segments:
102
- - 0
103
92
  version: "0"
104
93
  required_rubygems_version: !ruby/object:Gem::Requirement
94
+ none: false
105
95
  requirements:
106
96
  - - ">="
107
97
  - !ruby/object:Gem::Version
108
- segments:
109
- - 0
110
98
  version: "0"
111
99
  requirements: []
112
100
 
113
- rubyforge_project: rjack
114
- rubygems_version: 1.3.6
101
+ rubyforge_project: rjack-slf4j
102
+ rubygems_version: 1.8.9
115
103
  signing_key:
116
104
  specification_version: 3
117
105
  summary: A JRuby adaption and gem packaging of the {Simple Logging Facade for Java}[http://www.slf4j.org/]
Binary file
Binary file