logrotate 1.2.0 → 1.2.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
+ === 1.2.1 / 2010-01-15
2
+ A couple minor changes were made.
3
+ * Changes to gem specification.
4
+ * Version can be accessed programmatcally from gem.
5
+
1
6
  === 1.2.0 / 2009-10-21
2
7
  * Included the rotation of directories.
3
8
 
@@ -7,4 +7,5 @@ lib/logrotate.rb
7
7
  lib/logrotate/impl.rb
8
8
  lib/logrotate/logrotate.rb
9
9
  lib/logrotate/rotateinfo.rb
10
+ lib/logrotate/version.rb
10
11
  test/test_logrotate.rb
data/README.txt CHANGED
@@ -1,4 +1,9 @@
1
- Object
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://#{PROJECT_NAME}.rubyforge.org"
9
- p.version = "1.2.0"
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
 
@@ -1,3 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'logrotate/logrotate'
4
+ require 'logrotate/version'
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ module LogRotate #:nodoc:
4
+ module VERSION #:nodoc:
5
+ MAJOR = 1
6
+ MINOR = 2
7
+ TINY = 1
8
+
9
+ STRING = [MAJOR, MINOR, TINY].join('.')
10
+ end
11
+ end
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.0
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: 2009-10-21 00:00:00 -04:00
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.3.3
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://logrotate.rubyforge.org
85
+ homepage: http://www.rubyforge.org/projects/logrotate
65
86
  licenses: []
66
87
 
67
88
  post_install_message: