logrotate 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/Manifest.txt +1 -0
- data/README.txt +7 -2
- data/Rakefile +4 -2
- data/lib/logrotate.rb +1 -0
- data/lib/logrotate/version.rb +11 -0
- metadata +25 -4
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
-
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
= logrotate
|
6
|
+
* Project Page: http://rubyforge.org/projects/logrotate/
|
2
7
|
|
3
8
|
== DESCRIPTION:
|
4
9
|
|
@@ -245,7 +250,6 @@ its log file.
|
|
245
250
|
=== Designing Patterns
|
246
251
|
* Homepage: http://www.designingpatterns.com
|
247
252
|
* Blogs: http://blogs.designingpatterns.com
|
248
|
-
* Twitter: http://www.twitter.com/TonyDesignP
|
249
253
|
|
250
254
|
== SUPPORT:
|
251
255
|
Please post questions, concerns, or requests for enhancement to the forums on
|
@@ -288,3 +292,4 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
288
292
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
289
293
|
|
290
294
|
== SHARE AND ENJOY!
|
295
|
+
|
data/Rakefile
CHANGED
@@ -1,12 +1,14 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
require 'rubygems'
|
3
3
|
require 'hoe'
|
4
|
+
require 'lib/logrotate/version'
|
4
5
|
|
5
6
|
PROJECT_NAME = 'logrotate'
|
6
7
|
|
7
8
|
Hoe.spec(PROJECT_NAME) do |p|
|
8
|
-
p.url = "http
|
9
|
-
p.
|
9
|
+
p.url = "http://www.rubyforge.org/projects/#{PROJECT_NAME}"
|
10
|
+
p.remote_rdoc_dir = ''
|
11
|
+
p.version = LogRotate::VERSION::STRING
|
10
12
|
p.developer('DesigningPatterns', 'technical.inquiries@designingpatterns.com')
|
11
13
|
end
|
12
14
|
|
data/lib/logrotate.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logrotate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DesigningPatterns
|
@@ -9,9 +9,29 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-01-17 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rubyforge
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 2.0.3
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: gemcutter
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.3.0
|
34
|
+
version:
|
15
35
|
- !ruby/object:Gem::Dependency
|
16
36
|
name: hoe
|
17
37
|
type: :development
|
@@ -20,7 +40,7 @@ dependencies:
|
|
20
40
|
requirements:
|
21
41
|
- - ">="
|
22
42
|
- !ruby/object:Gem::Version
|
23
|
-
version: 2.
|
43
|
+
version: 2.5.0
|
24
44
|
version:
|
25
45
|
description: |-
|
26
46
|
This package is a library of methods that perform log rotation on files and
|
@@ -59,9 +79,10 @@ files:
|
|
59
79
|
- lib/logrotate/impl.rb
|
60
80
|
- lib/logrotate/logrotate.rb
|
61
81
|
- lib/logrotate/rotateinfo.rb
|
82
|
+
- lib/logrotate/version.rb
|
62
83
|
- test/test_logrotate.rb
|
63
84
|
has_rdoc: true
|
64
|
-
homepage: http://
|
85
|
+
homepage: http://www.rubyforge.org/projects/logrotate
|
65
86
|
licenses: []
|
66
87
|
|
67
88
|
post_install_message:
|