rjack-slf4j 1.7.5.0-java → 1.7.6.0-java

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ca89789ff76409fd3c7a5aa17447ee35e8f4ee9d
4
+ data.tar.gz: 9c781677306044b043fa1b32c3301acb075556aa
5
+ SHA512:
6
+ metadata.gz: 0d6a3ab3d4c9b65a29e278606946bdc9b992cee27ff561f654ba3110f07b50161b7a3d467870db54565b0d7dbaa88471321c48de2ad77a8fc36be916a3c0b9ec
7
+ data.tar.gz: f10d149958449e5801b4a071279a7100968d2143e72e2762ac9c3bd374ece16f3ef00bcf9d93ea6fb04dfd9c1bd950cdd8890e73a74eeaefbeebf964033b2e39
data/History.rdoc CHANGED
@@ -1,3 +1,6 @@
1
+ === 1.7.6.0 (2014-2-17)
2
+ * Upgraded to SLF4J 1.7.6
3
+
1
4
  === 1.7.5.0 (2013-4-17)
2
5
  * Upgraded to SLF4J 1.7.5
3
6
 
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.7.5.jar
22
- lib/rjack-slf4j/jul-to-slf4j-1.7.5.jar
23
- lib/rjack-slf4j/log4j-over-slf4j-1.7.5.jar
24
- lib/rjack-slf4j/slf4j-api-1.7.5.jar
25
- lib/rjack-slf4j/slf4j-jcl-1.7.5.jar
26
- lib/rjack-slf4j/slf4j-jdk14-1.7.5.jar
27
- lib/rjack-slf4j/slf4j-log4j12-1.7.5.jar
28
- lib/rjack-slf4j/slf4j-nop-1.7.5.jar
29
- lib/rjack-slf4j/slf4j-simple-1.7.5.jar
21
+ lib/rjack-slf4j/jcl-over-slf4j-1.7.6.jar
22
+ lib/rjack-slf4j/jul-to-slf4j-1.7.6.jar
23
+ lib/rjack-slf4j/log4j-over-slf4j-1.7.6.jar
24
+ lib/rjack-slf4j/slf4j-api-1.7.6.jar
25
+ lib/rjack-slf4j/slf4j-jcl-1.7.6.jar
26
+ lib/rjack-slf4j/slf4j-jdk14-1.7.6.jar
27
+ lib/rjack-slf4j/slf4j-log4j12-1.7.6.jar
28
+ lib/rjack-slf4j/slf4j-nop-1.7.6.jar
29
+ lib/rjack-slf4j/slf4j-simple-1.7.6.jar
data/README.rdoc CHANGED
@@ -37,7 +37,7 @@ components in a JRuby application.
37
37
 
38
38
  === rjack-slf4j gem
39
39
 
40
- Copyright (c) 2008-2013 David Kellum
40
+ Copyright (c) 2008-2014 David Kellum
41
41
  All rights reserved.
42
42
 
43
43
  The SLF4J ruby wrapper and gem packaging is released under the same
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2013 David Kellum
2
+ # Copyright (c) 2008-2014 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.5'
29
+ SLF4J_VERSION = '1.7.6'
30
30
  # SLF4J gem version
31
31
  VERSION = SLF4J_VERSION + '.0'
32
32
 
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2013 David Kellum
2
+ # Copyright (c) 2008-2014 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-2013 David Kellum
2
+ # Copyright (c) 2008-2014 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-2013 David Kellum
2
+ # Copyright (c) 2008-2014 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
Binary file
data/lib/rjack-slf4j.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008-2013 David Kellum
2
+ # Copyright (c) 2008-2014 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
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.5</version>
19
+ <version>1.7.6</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.5</version>
25
+ <version>1.7.6</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.5</version>
32
+ <version>1.7.6</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.5</version>
39
+ <version>1.7.6</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.5</version>
46
+ <version>1.7.6</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.5</version>
54
+ <version>1.7.6</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.5</version>
62
+ <version>1.7.6</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.5</version>
70
+ <version>1.7.6</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.5</version>
78
+ <version>1.7.6</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-2013 David Kellum
3
+ # Copyright (c) 2008-2014 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
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2008-2013 David Kellum
5
+ # Copyright (c) 2008-2014 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,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-slf4j
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 1.7.5.0
4
+ version: 1.7.6.0
6
5
  platform: java
7
6
  authors:
8
7
  - David Kellum
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-04-17 00:00:00.000000000 Z
11
+ date: 2014-02-17 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: minitest
@@ -17,14 +16,26 @@ dependencies:
17
16
  requirements:
18
17
  - - ~>
19
18
  - !ruby/object:Gem::Version
20
- version: '2.2'
21
- none: false
19
+ version: 4.7.4
22
20
  requirement: !ruby/object:Gem::Requirement
23
21
  requirements:
24
22
  - - ~>
25
23
  - !ruby/object:Gem::Version
26
- version: '2.2'
27
- none: false
24
+ version: 4.7.4
25
+ prerelease: false
26
+ type: :development
27
+ - !ruby/object:Gem::Dependency
28
+ name: rdoc
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 4.0.1
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: 4.0.1
28
39
  prerelease: false
29
40
  type: :development
30
41
  - !ruby/object:Gem::Dependency
@@ -33,14 +44,12 @@ dependencies:
33
44
  requirements:
34
45
  - - ~>
35
46
  - !ruby/object:Gem::Version
36
- version: '2.0'
37
- none: false
47
+ version: '2.1'
38
48
  requirement: !ruby/object:Gem::Requirement
39
49
  requirements:
40
50
  - - ~>
41
51
  - !ruby/object:Gem::Version
42
- version: '2.0'
43
- none: false
52
+ version: '2.1'
44
53
  prerelease: false
45
54
  type: :development
46
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.
@@ -72,17 +81,18 @@ files:
72
81
  - lib/rjack-slf4j/log4j12.rb
73
82
  - lib/rjack-slf4j/nop.rb
74
83
  - lib/rjack-slf4j/simple.rb
75
- - lib/rjack-slf4j/jcl-over-slf4j-1.7.5.jar
76
- - lib/rjack-slf4j/jul-to-slf4j-1.7.5.jar
77
- - lib/rjack-slf4j/log4j-over-slf4j-1.7.5.jar
78
- - lib/rjack-slf4j/slf4j-api-1.7.5.jar
79
- - lib/rjack-slf4j/slf4j-jcl-1.7.5.jar
80
- - lib/rjack-slf4j/slf4j-jdk14-1.7.5.jar
81
- - lib/rjack-slf4j/slf4j-log4j12-1.7.5.jar
82
- - lib/rjack-slf4j/slf4j-nop-1.7.5.jar
83
- - lib/rjack-slf4j/slf4j-simple-1.7.5.jar
84
+ - lib/rjack-slf4j/jcl-over-slf4j-1.7.6.jar
85
+ - lib/rjack-slf4j/jul-to-slf4j-1.7.6.jar
86
+ - lib/rjack-slf4j/log4j-over-slf4j-1.7.6.jar
87
+ - lib/rjack-slf4j/slf4j-api-1.7.6.jar
88
+ - lib/rjack-slf4j/slf4j-jcl-1.7.6.jar
89
+ - lib/rjack-slf4j/slf4j-jdk14-1.7.6.jar
90
+ - lib/rjack-slf4j/slf4j-log4j12-1.7.6.jar
91
+ - lib/rjack-slf4j/slf4j-nop-1.7.6.jar
92
+ - lib/rjack-slf4j/slf4j-simple-1.7.6.jar
84
93
  homepage: http://rjack.rubyforge.org/slf4j
85
94
  licenses: []
95
+ metadata: {}
86
96
  post_install_message:
87
97
  rdoc_options:
88
98
  - --main
@@ -91,27 +101,18 @@ require_paths:
91
101
  - lib
92
102
  required_ruby_version: !ruby/object:Gem::Requirement
93
103
  requirements:
94
- - - ! '>='
104
+ - - '>='
95
105
  - !ruby/object:Gem::Version
96
106
  version: '0'
97
- segments:
98
- - 0
99
- hash: 2
100
- none: false
101
107
  required_rubygems_version: !ruby/object:Gem::Requirement
102
108
  requirements:
103
- - - ! '>='
109
+ - - '>='
104
110
  - !ruby/object:Gem::Version
105
111
  version: '0'
106
- segments:
107
- - 0
108
- hash: 2
109
- none: false
110
112
  requirements: []
111
113
  rubyforge_project:
112
- rubygems_version: 1.8.24
114
+ rubygems_version: 2.1.9
113
115
  signing_key:
114
- specification_version: 3
116
+ specification_version: 4
115
117
  summary: A JRuby adaption and gem packaging of the Simple Logging Facade for Java.
116
118
  test_files: []
117
- ...
Binary file
Binary file
Binary file