slf4j 1.5.6.1 → 1.5.6.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/Manifest.txt +1 -1
- data/Rakefile +6 -11
- data/lib/slf4j/base.rb +1 -1
- data/test/test_slf4j.rb +0 -0
- metadata +3 -3
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
data/Rakefile
CHANGED
@@ -53,8 +53,8 @@ History.txt
|
|
53
53
|
Rakefile
|
54
54
|
pom.xml
|
55
55
|
assembly.xml
|
56
|
-
lib/slf4j.rb
|
57
56
|
lib/slf4j/base.rb
|
57
|
+
lib/slf4j.rb
|
58
58
|
test/test_slf4j.rb
|
59
59
|
END
|
60
60
|
out.puts loader_files
|
@@ -98,19 +98,14 @@ task :clean => :mvn_clean
|
|
98
98
|
|
99
99
|
task :tag do
|
100
100
|
tag = "slf4j-#{SLF4J::VERSION}"
|
101
|
-
svn_base = 'svn://localhost/subversion.repo/src/gems'
|
102
|
-
tag_url = "#{svn_base}/tags/#{tag}"
|
103
|
-
|
104
101
|
dname = File.dirname( __FILE__ )
|
105
102
|
dname = '.' if Dir.getwd == dname
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
$stderr.puts( stat )
|
111
|
-
else
|
112
|
-
sh( "svn cp -m 'tag [#{tag}]' #{dname} #{tag_url}" )
|
103
|
+
sh( "git status --only #{dname}" ) do |ok,res|
|
104
|
+
if ok #changes present
|
105
|
+
raise "Commit these changes before tagging."
|
106
|
+
end
|
113
107
|
end
|
108
|
+
sh %{git tag -s -f -m "tag [#{tag}]" "#{tag}"}
|
114
109
|
end
|
115
110
|
|
116
111
|
|
data/lib/slf4j/base.rb
CHANGED
data/test/test_slf4j.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -41,8 +41,8 @@ files:
|
|
41
41
|
- Rakefile
|
42
42
|
- pom.xml
|
43
43
|
- assembly.xml
|
44
|
-
- lib/slf4j.rb
|
45
44
|
- lib/slf4j/base.rb
|
45
|
+
- lib/slf4j.rb
|
46
46
|
- test/test_slf4j.rb
|
47
47
|
- lib/slf4j/jul-to-slf4j.rb
|
48
48
|
- lib/slf4j/jdk14.rb
|
@@ -74,12 +74,12 @@ requirements: []
|
|
74
74
|
|
75
75
|
authors:
|
76
76
|
- David Kellum
|
77
|
-
date:
|
77
|
+
date: 2009-04-04 08:00:00 +00:00
|
78
78
|
platform: ruby
|
79
79
|
test_files:
|
80
80
|
- test/test_slf4j.rb
|
81
81
|
version: !ruby/object:Gem::Version
|
82
|
-
version: 1.5.6.
|
82
|
+
version: 1.5.6.2
|
83
83
|
require_paths:
|
84
84
|
- lib
|
85
85
|
dependencies:
|