diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4040c6c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.gem +.bundle +Gemfile.lock +pkg/* diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..067e1bd --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in slf4j_jar.gemspec +gemspec diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..f1c9e37 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,24 @@ +Copyright (c) 2004-2008 QOS.ch +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..2995527 --- /dev/null +++ b/Rakefile @@ -0,0 +1 @@ +require "bundler/gem_tasks" diff --git a/jars/jcl-over-slf4j-1.6.4.jar b/jars/jcl-over-slf4j-1.6.4.jar new file mode 100644 index 0000000..3ddc1d1 Binary files /dev/null and b/jars/jcl-over-slf4j-1.6.4.jar differ diff --git a/jars/jul-to-slf4j-1.6.4.jar b/jars/jul-to-slf4j-1.6.4.jar new file mode 100644 index 0000000..9922116 Binary files /dev/null and b/jars/jul-to-slf4j-1.6.4.jar differ diff --git a/jars/log4j-over-slf4j-1.6.4.jar b/jars/log4j-over-slf4j-1.6.4.jar new file mode 100644 index 0000000..d757d95 Binary files /dev/null and b/jars/log4j-over-slf4j-1.6.4.jar differ diff --git a/jars/slf4j-api-1.6.4.jar b/jars/slf4j-api-1.6.4.jar new file mode 100644 index 0000000..4d23f41 Binary files /dev/null and b/jars/slf4j-api-1.6.4.jar differ diff --git a/jars/slf4j-ext-1.6.4.jar b/jars/slf4j-ext-1.6.4.jar new file mode 100644 index 0000000..174bdad Binary files /dev/null and b/jars/slf4j-ext-1.6.4.jar differ diff --git a/jars/slf4j-jcl-1.6.4.jar b/jars/slf4j-jcl-1.6.4.jar new file mode 100644 index 0000000..ea31add Binary files /dev/null and b/jars/slf4j-jcl-1.6.4.jar differ diff --git a/jars/slf4j-jdk14-1.6.4.jar b/jars/slf4j-jdk14-1.6.4.jar new file mode 100644 index 0000000..8503cab Binary files /dev/null and b/jars/slf4j-jdk14-1.6.4.jar differ diff --git a/jars/slf4j-log4j12-1.6.4.jar b/jars/slf4j-log4j12-1.6.4.jar new file mode 100644 index 0000000..daa3aa1 Binary files /dev/null and b/jars/slf4j-log4j12-1.6.4.jar differ diff --git a/jars/slf4j-migrator-1.6.4.jar b/jars/slf4j-migrator-1.6.4.jar new file mode 100644 index 0000000..259d48e Binary files /dev/null and b/jars/slf4j-migrator-1.6.4.jar differ diff --git a/jars/slf4j-nop-1.6.4.jar b/jars/slf4j-nop-1.6.4.jar new file mode 100644 index 0000000..7c55eda Binary files /dev/null and b/jars/slf4j-nop-1.6.4.jar differ diff --git a/jars/slf4j-simple-1.6.4.jar b/jars/slf4j-simple-1.6.4.jar new file mode 100644 index 0000000..3d1b8d9 Binary files /dev/null and b/jars/slf4j-simple-1.6.4.jar differ diff --git a/lib/slf4j_jar.rb b/lib/slf4j_jar.rb new file mode 100644 index 0000000..6ee8343 --- /dev/null +++ b/lib/slf4j_jar.rb @@ -0,0 +1,4 @@ +require "slf4j_jar/version" + +module Slf4jJar +end diff --git a/lib/slf4j_jar/version.rb b/lib/slf4j_jar/version.rb new file mode 100644 index 0000000..030486c --- /dev/null +++ b/lib/slf4j_jar/version.rb @@ -0,0 +1,3 @@ +module Slf4jJar + VERSION = "0.0.1" +end diff --git a/slf4j_jar.gemspec b/slf4j_jar.gemspec new file mode 100644 index 0000000..f4d6b04 --- /dev/null +++ b/slf4j_jar.gemspec @@ -0,0 +1,22 @@ +# -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "slf4j_jar/version" + +Gem::Specification.new do |s| + s.name = "slf4j_jar" + s.version = Slf4jJar::VERSION + s.authors = ["Jonathan D. Simms"] + s.email = ["slyphon@gmail.com"] + s.homepage = "http://www.slf4j.org/" + s.summary = %q{A gem wrapping the slf4j jar files} + s.description = s.summary + "\n" + s.platform = 'java' + + s.rubyforge_project = "slf4j_jar" + + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + s.require_paths = ["lib", "jars"] + +end