olabini-log4j 1.2.17
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/.gitignore +4 -0
- data/Gemfile +4 -0
- data/README.md +25 -0
- data/Rakefile +2 -0
- data/lib/log4j-1.2.17.jar +0 -0
- data/lib/log4j.rb +5 -0
- data/lib/log4j/version.rb +3 -0
- data/log4j.gemspec +21 -0
- metadata +54 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
README
|
|
2
|
+
======
|
|
3
|
+
|
|
4
|
+
Log4j gem is a wrapper around the [log4j](http://logging.apache.org/log4j/1.2/) logging toolkit jar file.
|
|
5
|
+
|
|
6
|
+
LICENSE
|
|
7
|
+
=======
|
|
8
|
+
|
|
9
|
+
This package is released under the [Apache Software License v2.0](http://logging.apache.org/log4j/1.2/license.html).
|
|
10
|
+
|
|
11
|
+
Copyright 2011 Jonathan D. Simms
|
|
12
|
+
|
|
13
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
14
|
+
you may not use this file except in compliance with the License.
|
|
15
|
+
You may obtain a copy of the License at
|
|
16
|
+
|
|
17
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
18
|
+
|
|
19
|
+
Unless required by applicable law or agreed to in writing, software
|
|
20
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
21
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
22
|
+
See the License for the specific language governing permissions and
|
|
23
|
+
limitations under the License.
|
|
24
|
+
|
|
25
|
+
|
data/Rakefile
ADDED
|
Binary file
|
data/lib/log4j.rb
ADDED
data/log4j.gemspec
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "log4j/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "olabini-log4j"
|
|
7
|
+
s.version = Log4j::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.authors = ["Jonathan D. Simms", "A cast of thousands"]
|
|
10
|
+
s.email = ["slyphon@gmail.com"]
|
|
11
|
+
s.summary = %q{the log4j jar file in a gem}
|
|
12
|
+
s.homepage = %q[https://github.com/olabini/log4j_gem]
|
|
13
|
+
s.description = s.summary
|
|
14
|
+
|
|
15
|
+
# s.rubyforge_project = "log4j"
|
|
16
|
+
|
|
17
|
+
s.files = `git ls-files`.split("\n")
|
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
|
+
s.require_paths = ["lib"]
|
|
21
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: olabini-log4j
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.2.17
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Jonathan D. Simms
|
|
9
|
+
- A cast of thousands
|
|
10
|
+
autorequire:
|
|
11
|
+
bindir: bin
|
|
12
|
+
cert_chain: []
|
|
13
|
+
date: 2012-09-18 00:00:00.000000000 Z
|
|
14
|
+
dependencies: []
|
|
15
|
+
description: the log4j jar file in a gem
|
|
16
|
+
email:
|
|
17
|
+
- slyphon@gmail.com
|
|
18
|
+
executables: []
|
|
19
|
+
extensions: []
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- .gitignore
|
|
23
|
+
- Gemfile
|
|
24
|
+
- README.md
|
|
25
|
+
- Rakefile
|
|
26
|
+
- lib/log4j-1.2.17.jar
|
|
27
|
+
- lib/log4j.rb
|
|
28
|
+
- lib/log4j/version.rb
|
|
29
|
+
- log4j.gemspec
|
|
30
|
+
homepage: https://github.com/olabini/log4j_gem
|
|
31
|
+
licenses: []
|
|
32
|
+
post_install_message:
|
|
33
|
+
rdoc_options: []
|
|
34
|
+
require_paths:
|
|
35
|
+
- lib
|
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
37
|
+
none: false
|
|
38
|
+
requirements:
|
|
39
|
+
- - ! '>='
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
43
|
+
none: false
|
|
44
|
+
requirements:
|
|
45
|
+
- - ! '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
requirements: []
|
|
49
|
+
rubyforge_project:
|
|
50
|
+
rubygems_version: 1.8.10
|
|
51
|
+
signing_key:
|
|
52
|
+
specification_version: 3
|
|
53
|
+
summary: the log4j jar file in a gem
|
|
54
|
+
test_files: []
|