rjack-slf4j 1.7.19.0-java → 1.7.25.0-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 54f74a83c45be383c44bf88db88ebac9a9c55220
4
- data.tar.gz: 43852319c917f96484d57602eacb767eb6d80786
2
+ SHA256:
3
+ metadata.gz: 402f9ac98b644797df83d1419a90864c041fe42994730ca8282283e3ad9980ab
4
+ data.tar.gz: '058b6a5a9dae179d109e7546b245021eeffc41f36e6acab4b216e4090ff9989e'
5
5
  SHA512:
6
- metadata.gz: 88eea52a60dadd7f3f7798ce83ce7798a007cd35fa5a7760f63e90d11631fb897b108f0c7f994fd76bd254684bd519594e68b1f56e7c8e1e09f1dca256927f8b
7
- data.tar.gz: 472a72a177bb88da3dd5d6029c4b0d3de1f0e1484749eacd13b5aed9ced07be7d30de3e55a5b0ed607648c9c380cd4891c9a0e5280a8d5697a95be6721782520
6
+ metadata.gz: 63c04ae88601728ab00fbfd7a76831faa43fc65c0e8443ae7778bdbb2ffe398d3864a416c252ca0ca0e9fb2d7389d85fd291d8df5070f7ec1f4c04fa15abfa87
7
+ data.tar.gz: 7077aca6d8fa98d06cd42a1fbb43a6fc851b0f33a1b537bde1df4455e850dc619dbc92cbb094b86db9fb3fe5244ac58d48b769c6454fd5a28b893454cb746801
@@ -1,3 +1,8 @@
1
+ === 1.7.25.0 (2017-6-19)
2
+ * Upgraded to SLF4J 1.7.25
3
+ * Add RJack::SLF4J::Logger#reopen no-op for ::Logger (stdlib 2.3)
4
+ compatibility.
5
+
1
6
  === 1.7.19.0 (2016-3-24)
2
7
  * Upgraded to SLF4J 1.7.19
3
8
 
@@ -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.7.19.jar
22
- lib/rjack-slf4j/jul-to-slf4j-1.7.19.jar
23
- lib/rjack-slf4j/log4j-over-slf4j-1.7.19.jar
24
- lib/rjack-slf4j/slf4j-api-1.7.19.jar
25
- lib/rjack-slf4j/slf4j-jcl-1.7.19.jar
26
- lib/rjack-slf4j/slf4j-jdk14-1.7.19.jar
27
- lib/rjack-slf4j/slf4j-log4j12-1.7.19.jar
28
- lib/rjack-slf4j/slf4j-nop-1.7.19.jar
29
- lib/rjack-slf4j/slf4j-simple-1.7.19.jar
21
+ lib/rjack-slf4j/jcl-over-slf4j-1.7.25.jar
22
+ lib/rjack-slf4j/jul-to-slf4j-1.7.25.jar
23
+ lib/rjack-slf4j/log4j-over-slf4j-1.7.25.jar
24
+ lib/rjack-slf4j/slf4j-api-1.7.25.jar
25
+ lib/rjack-slf4j/slf4j-jcl-1.7.25.jar
26
+ lib/rjack-slf4j/slf4j-jdk14-1.7.25.jar
27
+ lib/rjack-slf4j/slf4j-log4j12-1.7.25.jar
28
+ lib/rjack-slf4j/slf4j-nop-1.7.25.jar
29
+ lib/rjack-slf4j/slf4j-simple-1.7.25.jar
@@ -37,7 +37,7 @@ components in a JRuby application.
37
37
 
38
38
  === rjack-slf4j gem
39
39
 
40
- Copyright (c) 2008-2016 David Kellum
40
+ Copyright (c) 2008-2017 David Kellum
41
41
  All rights reserved.
42
42
 
43
43
  The SLF4J ruby wrapper and gem packaging is released under the same
data/Rakefile CHANGED
@@ -26,3 +26,10 @@ task :publish_rdoc => [ :clean, :rerdoc ] do
26
26
  aws s3 sync --acl public-read doc/ s3://rjack.gravitext.com/slf4j/
27
27
  SH
28
28
  end
29
+
30
+ task :rdoc do
31
+ sh <<-SH
32
+ rm -rf doc/fonts
33
+ cp ../rdoc_css/*.css doc/css/
34
+ SH
35
+ end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2016 David Kellum
2
+ # Copyright (c) 2008-2017 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
@@ -336,6 +336,10 @@ module RJack
336
336
  #No-OP
337
337
  end
338
338
 
339
+ # No-Op, for Ruby ::Logger compatibility.
340
+ def reopen
341
+ end
342
+
339
343
  end
340
344
 
341
345
  # Get Logger by name
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2016 David Kellum
2
+ # Copyright (c) 2008-2017 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.7.19'
29
+ SLF4J_VERSION = '1.7.25'
30
30
  # SLF4J gem version
31
31
  VERSION = SLF4J_VERSION + '.0'
32
32
 
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2016 David Kellum
2
+ # Copyright (c) 2008-2017 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-2016 David Kellum
2
+ # Copyright (c) 2008-2017 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-2016 David Kellum
2
+ # Copyright (c) 2008-2017 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
data/pom.xml CHANGED
@@ -16,34 +16,34 @@
16
16
  <dependency>
17
17
  <groupId>org.slf4j</groupId>
18
18
  <artifactId>slf4j-api</artifactId>
19
- <version>1.7.19</version>
19
+ <version>1.7.25</version>
20
20
  </dependency>
21
21
 
22
22
  <dependency>
23
23
  <groupId>org.slf4j</groupId>
24
24
  <artifactId>jcl-over-slf4j</artifactId>
25
- <version>1.7.19</version>
25
+ <version>1.7.25</version>
26
26
  <scope>runtime</scope>
27
27
  </dependency>
28
28
 
29
29
  <dependency>
30
30
  <groupId>org.slf4j</groupId>
31
31
  <artifactId>jul-to-slf4j</artifactId>
32
- <version>1.7.19</version>
32
+ <version>1.7.25</version>
33
33
  <scope>runtime</scope>
34
34
  </dependency>
35
35
 
36
36
  <dependency>
37
37
  <groupId>org.slf4j</groupId>
38
38
  <artifactId>log4j-over-slf4j</artifactId>
39
- <version>1.7.19</version>
39
+ <version>1.7.25</version>
40
40
  <scope>runtime</scope>
41
41
  </dependency>
42
42
 
43
43
  <dependency>
44
44
  <groupId>org.slf4j</groupId>
45
45
  <artifactId>slf4j-jdk14</artifactId>
46
- <version>1.7.19</version>
46
+ <version>1.7.25</version>
47
47
  <scope>runtime</scope>
48
48
  <optional>true</optional>
49
49
  </dependency>
@@ -51,7 +51,7 @@
51
51
  <dependency>
52
52
  <groupId>org.slf4j</groupId>
53
53
  <artifactId>slf4j-log4j12</artifactId>
54
- <version>1.7.19</version>
54
+ <version>1.7.25</version>
55
55
  <scope>runtime</scope>
56
56
  <optional>true</optional>
57
57
  </dependency>
@@ -59,7 +59,7 @@
59
59
  <dependency>
60
60
  <groupId>org.slf4j</groupId>
61
61
  <artifactId>slf4j-jcl</artifactId>
62
- <version>1.7.19</version>
62
+ <version>1.7.25</version>
63
63
  <scope>runtime</scope>
64
64
  <optional>true</optional>
65
65
  </dependency>
@@ -67,7 +67,7 @@
67
67
  <dependency>
68
68
  <groupId>org.slf4j</groupId>
69
69
  <artifactId>slf4j-simple</artifactId>
70
- <version>1.7.19</version>
70
+ <version>1.7.25</version>
71
71
  <scope>runtime</scope>
72
72
  <optional>true</optional>
73
73
  </dependency>
@@ -75,7 +75,7 @@
75
75
  <dependency>
76
76
  <groupId>org.slf4j</groupId>
77
77
  <artifactId>slf4j-nop</artifactId>
78
- <version>1.7.19</version>
78
+ <version>1.7.25</version>
79
79
  <scope>runtime</scope>
80
80
  <optional>true</optional>
81
81
  </dependency>
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env jruby
2
2
  #--
3
- # Copyright (c) 2008-2016 David Kellum
3
+ # Copyright (c) 2008-2017 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
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2008-2016 David Kellum
5
+ # Copyright (c) 2008-2017 David Kellum
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person
8
8
  # obtaining a copy of this software and associated documentation files
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-slf4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.19.0
4
+ version: 1.7.25.0
5
5
  platform: java
6
6
  authors:
7
7
  - David Kellum
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-24 00:00:00.000000000 Z
11
+ date: 2017-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -27,17 +27,23 @@ dependencies:
27
27
  - !ruby/object:Gem::Dependency
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
- - - "~>"
30
+ - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 4.0.1
33
+ - - "<"
34
+ - !ruby/object:Gem::Version
35
+ version: '5'
33
36
  name: rdoc
34
37
  prerelease: false
35
38
  type: :development
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - "~>"
41
+ - - ">="
39
42
  - !ruby/object:Gem::Version
40
43
  version: 4.0.1
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '5'
41
47
  - !ruby/object:Gem::Dependency
42
48
  requirement: !ruby/object:Gem::Requirement
43
49
  requirements:
@@ -52,7 +58,8 @@ dependencies:
52
58
  - - "~>"
53
59
  - !ruby/object:Gem::Version
54
60
  version: '2.1'
55
- description: A JRuby adaption and gem packaging of the Simple Logging Facade for Java. Provides all jar dependencies and a Ruby Logger compatible facade.
61
+ description: A JRuby adaption and gem packaging of the Simple Logging Facade for Java.
62
+ Provides all jar dependencies and a Ruby Logger compatible facade.
56
63
  email:
57
64
  - dek-oss@gravitext.com
58
65
  executables: []
@@ -68,25 +75,25 @@ files:
68
75
  - assembly.xml
69
76
  - lib/rjack-slf4j.rb
70
77
  - lib/rjack-slf4j/base.rb
71
- - lib/rjack-slf4j/jcl-over-slf4j-1.7.19.jar
78
+ - lib/rjack-slf4j/jcl-over-slf4j-1.7.25.jar
72
79
  - lib/rjack-slf4j/jcl-over-slf4j.rb
73
80
  - lib/rjack-slf4j/jcl.rb
74
81
  - lib/rjack-slf4j/jdk14.rb
75
- - lib/rjack-slf4j/jul-to-slf4j-1.7.19.jar
82
+ - lib/rjack-slf4j/jul-to-slf4j-1.7.25.jar
76
83
  - lib/rjack-slf4j/jul-to-slf4j.rb
77
84
  - lib/rjack-slf4j/jul.rb
78
- - lib/rjack-slf4j/log4j-over-slf4j-1.7.19.jar
85
+ - lib/rjack-slf4j/log4j-over-slf4j-1.7.25.jar
79
86
  - lib/rjack-slf4j/log4j-over-slf4j.rb
80
87
  - lib/rjack-slf4j/log4j12.rb
81
88
  - lib/rjack-slf4j/mdc.rb
82
89
  - lib/rjack-slf4j/nop.rb
83
90
  - lib/rjack-slf4j/simple.rb
84
- - lib/rjack-slf4j/slf4j-api-1.7.19.jar
85
- - lib/rjack-slf4j/slf4j-jcl-1.7.19.jar
86
- - lib/rjack-slf4j/slf4j-jdk14-1.7.19.jar
87
- - lib/rjack-slf4j/slf4j-log4j12-1.7.19.jar
88
- - lib/rjack-slf4j/slf4j-nop-1.7.19.jar
89
- - lib/rjack-slf4j/slf4j-simple-1.7.19.jar
91
+ - lib/rjack-slf4j/slf4j-api-1.7.25.jar
92
+ - lib/rjack-slf4j/slf4j-jcl-1.7.25.jar
93
+ - lib/rjack-slf4j/slf4j-jdk14-1.7.25.jar
94
+ - lib/rjack-slf4j/slf4j-log4j12-1.7.25.jar
95
+ - lib/rjack-slf4j/slf4j-nop-1.7.25.jar
96
+ - lib/rjack-slf4j/slf4j-simple-1.7.25.jar
90
97
  - pom.xml
91
98
  - test/example_jul_to_slf4j.rb
92
99
  - test/test_slf4j.rb
@@ -111,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
118
  version: '0'
112
119
  requirements: []
113
120
  rubyforge_project:
114
- rubygems_version: 2.4.8
121
+ rubygems_version: 2.6.11
115
122
  signing_key:
116
123
  specification_version: 4
117
124
  summary: A JRuby adaption and gem packaging of the Simple Logging Facade for Java.