Skip to content

Commit

Permalink
add jar files
Browse files Browse the repository at this point in the history
  • Loading branch information
slyphon committed Nov 29, 2011
0 parents commit f8cd521
Show file tree
Hide file tree
Showing 18 changed files with 62 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in slf4j_jar.gemspec
gemspec
24 changes: 24 additions & 0 deletions 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.



1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require "bundler/gem_tasks"
Binary file added jars/jcl-over-slf4j-1.6.4.jar
Binary file not shown.
Binary file added jars/jul-to-slf4j-1.6.4.jar
Binary file not shown.
Binary file added jars/log4j-over-slf4j-1.6.4.jar
Binary file not shown.
Binary file added jars/slf4j-api-1.6.4.jar
Binary file not shown.
Binary file added jars/slf4j-ext-1.6.4.jar
Binary file not shown.
Binary file added jars/slf4j-jcl-1.6.4.jar
Binary file not shown.
Binary file added jars/slf4j-jdk14-1.6.4.jar
Binary file not shown.
Binary file added jars/slf4j-log4j12-1.6.4.jar
Binary file not shown.
Binary file added jars/slf4j-migrator-1.6.4.jar
Binary file not shown.
Binary file added jars/slf4j-nop-1.6.4.jar
Binary file not shown.
Binary file added jars/slf4j-simple-1.6.4.jar
Binary file not shown.
4 changes: 4 additions & 0 deletions lib/slf4j_jar.rb
@@ -0,0 +1,4 @@
require "slf4j_jar/version"

module Slf4jJar
end
3 changes: 3 additions & 0 deletions lib/slf4j_jar/version.rb
@@ -0,0 +1,3 @@
module Slf4jJar
VERSION = "0.0.1"
end
22 changes: 22 additions & 0 deletions 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

0 comments on commit f8cd521

Please sign in to comment.