logback 0.9.13.1 → 0.9.14.1

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.
@@ -1,3 +1,8 @@
1
+ === 0.9.14.1 / 2009-01-04
2
+
3
+ * Upgraded to Logback 0.9.14
4
+
5
+
1
6
  === 0.9.13.1 / 2008-12-06
2
7
 
3
8
  * Upgraded to Logback 0.9.13
@@ -4,10 +4,10 @@ README.txt
4
4
  Rakefile
5
5
  pom.xml
6
6
  assembly.xml
7
+ lib/logback/base.rb
7
8
  lib/logback.rb
8
9
  lib/logback/access.rb
9
- lib/logback/base.rb
10
10
  test/test_logback.rb
11
- lib/logback/logback-core-0.9.13.jar
12
- lib/logback/logback-classic-0.9.13.jar
13
- lib/logback/logback-access-0.9.13.jar
11
+ lib/logback/logback-core-0.9.14.jar
12
+ lib/logback/logback-classic-0.9.14.jar
13
+ lib/logback/logback-access-0.9.14.jar
data/Rakefile CHANGED
@@ -38,9 +38,9 @@ README.txt
38
38
  Rakefile
39
39
  pom.xml
40
40
  assembly.xml
41
+ lib/logback/base.rb
41
42
  lib/logback.rb
42
43
  lib/logback/access.rb
43
- lib/logback/base.rb
44
44
  test/test_logback.rb
45
45
  END
46
46
  out.puts JAR_FILES
@@ -71,19 +71,14 @@ task :clean => :mvn_clean
71
71
 
72
72
  task :tag do
73
73
  tag = "logback-#{Logback::VERSION}"
74
- svn_base = 'svn://localhost/subversion.repo/src/gems'
75
- tag_url = "#{svn_base}/tags/#{tag}"
76
-
77
74
  dname = File.dirname( __FILE__ )
78
75
  dname = '.' if Dir.getwd == dname
79
- stat = `svn status #{dname}`
80
- stat.strip! if stat
81
- if ( stat && stat.length > 0 )
82
- $stderr.puts( "Resolve the following before tagging (svn status):" )
83
- $stderr.puts( stat )
84
- else
85
- sh( "svn cp -m 'tag [#{tag}]' #{dname} #{tag_url}" )
76
+ sh( "git status --only #{dname}" ) do |ok,res|
77
+ if ok #changes present
78
+ raise "Commit these changes before tagging."
79
+ end
86
80
  end
81
+ sh %{git tag -s -f -m "tag [#{tag}]" "#{tag}"}
87
82
  end
88
83
 
89
84
 
@@ -14,7 +14,7 @@
14
14
  #++
15
15
 
16
16
  module Logback
17
- LOGBACK_VERSION = '0.9.13'
17
+ LOGBACK_VERSION = '0.9.14'
18
18
  VERSION = LOGBACK_VERSION + '.1'
19
19
 
20
20
  LOGBACK_DIR = File.dirname(__FILE__) # :nodoc:
data/pom.xml CHANGED
@@ -12,14 +12,14 @@
12
12
  <dependency>
13
13
  <groupId>ch.qos.logback</groupId>
14
14
  <artifactId>logback-classic</artifactId>
15
- <version>0.9.13</version>
15
+ <version>0.9.14</version>
16
16
  <scope>runtime</scope>
17
17
  </dependency>
18
18
 
19
19
  <dependency>
20
20
  <groupId>ch.qos.logback</groupId>
21
21
  <artifactId>logback-access</artifactId>
22
- <version>0.9.13</version>
22
+ <version>0.9.14</version>
23
23
  <scope>runtime</scope>
24
24
  </dependency>
25
25
 
metadata CHANGED
@@ -38,13 +38,13 @@ files:
38
38
  - Rakefile
39
39
  - pom.xml
40
40
  - assembly.xml
41
+ - lib/logback/base.rb
41
42
  - lib/logback.rb
42
43
  - lib/logback/access.rb
43
- - lib/logback/base.rb
44
44
  - test/test_logback.rb
45
- - lib/logback/logback-core-0.9.13.jar
46
- - lib/logback/logback-classic-0.9.13.jar
47
- - lib/logback/logback-access-0.9.13.jar
45
+ - lib/logback/logback-core-0.9.14.jar
46
+ - lib/logback/logback-classic-0.9.14.jar
47
+ - lib/logback/logback-access-0.9.14.jar
48
48
  required_rubygems_version: !ruby/object:Gem::Requirement
49
49
  requirements:
50
50
  - - '>='
@@ -58,12 +58,12 @@ requirements: []
58
58
 
59
59
  authors:
60
60
  - David Kellum
61
- date: 2008-12-06 08:00:00 +00:00
61
+ date: 2009-01-04 08:00:00 +00:00
62
62
  platform: ruby
63
63
  test_files:
64
64
  - test/test_logback.rb
65
65
  version: !ruby/object:Gem::Version
66
- version: 0.9.13.1
66
+ version: 0.9.14.1
67
67
  require_paths:
68
68
  - lib
69
69
  dependencies: