slyphon-log4j 1.2.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in log4j.gemspec
4
+ gemspec
@@ -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
+
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
Binary file
@@ -0,0 +1,6 @@
1
+ module Log4j
2
+ end
3
+
4
+ require File.expand_path(File.join(File.dirname(__FILE__), 'log4j-1.2.15.jar'))
5
+ require 'log4j/version'
6
+
@@ -0,0 +1,3 @@
1
+ module Log4j
2
+ VERSION = "1.2.15"
3
+ end
@@ -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 = "slyphon-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/slyphon/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,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: slyphon-log4j
3
+ version: !ruby/object:Gem::Version
4
+ hash: 1
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 2
9
+ - 15
10
+ version: 1.2.15
11
+ platform: ruby
12
+ authors:
13
+ - Jonathan D. Simms
14
+ - A cast of thousands
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2011-02-02 00:00:00 +00:00
20
+ default_executable:
21
+ dependencies: []
22
+
23
+ description: the log4j jar file in a gem
24
+ email:
25
+ - slyphon@gmail.com
26
+ executables: []
27
+
28
+ extensions: []
29
+
30
+ extra_rdoc_files: []
31
+
32
+ files:
33
+ - .gitignore
34
+ - Gemfile
35
+ - README.md
36
+ - Rakefile
37
+ - lib/log4j-1.2.15.jar
38
+ - lib/log4j.rb
39
+ - lib/log4j/version.rb
40
+ - log4j.gemspec
41
+ has_rdoc: true
42
+ homepage: https://github.com/slyphon/log4j_gem
43
+ licenses: []
44
+
45
+ post_install_message:
46
+ rdoc_options: []
47
+
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ hash: 3
56
+ segments:
57
+ - 0
58
+ version: "0"
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ none: false
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ hash: 3
65
+ segments:
66
+ - 0
67
+ version: "0"
68
+ requirements: []
69
+
70
+ rubyforge_project:
71
+ rubygems_version: 1.4.2
72
+ signing_key:
73
+ specification_version: 3
74
+ summary: the log4j jar file in a gem
75
+ test_files: []
76
+