runt 0.3.0 → 0.5.0

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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.11
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: runt
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.3.0
7
- date: 2005-10-22 00:00:00 -04:00
6
+ version: 0.5.0
7
+ date: 2007-11-09 00:00:00 -05:00
8
8
  summary: Ruby Temporal Expressions.
9
9
  require_paths:
10
- - lib
11
- email: matt@digitalclash.com
10
+ - lib
11
+ email: mlipper@gmail.com
12
12
  homepage: http://runt.rubyforge.org
13
13
  rubyforge_project: runt
14
14
  description: Runt is a Ruby version of temporal patterns by Martin Fowler. Runt provides an API for scheduling recurring events using set-like semantics.
@@ -18,53 +18,66 @@ bindir: bin
18
18
  has_rdoc: true
19
19
  required_ruby_version: !ruby/object:Gem::Version::Requirement
20
20
  requirements:
21
- -
22
- - ">"
23
- - !ruby/object:Gem::Version
24
- version: 0.0.0
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
25
24
  version:
26
25
  platform: ruby
27
26
  signing_key:
28
27
  cert_chain:
28
+ post_install_message:
29
29
  authors:
30
- - Matthew Lipper
30
+ - Matthew Lipper
31
31
  files:
32
- - setup.rb
33
- - CHANGES
34
- - LICENSE.txt
35
- - Rakefile
36
- - README
37
- - TODO
38
- - lib/runt.rb
39
- - lib/runt/daterange.rb
40
- - lib/runt/dprecision.rb
41
- - lib/runt/pdate.rb
42
- - lib/runt/schedule.rb
43
- - lib/runt/temporalexpression.rb
44
- - test/alltests.rb
45
- - test/daterangetest.rb
46
- - test/dprecisiontest.rb
47
- - test/pdatetest.rb
48
- - test/scheduletest.rb
49
- - test/temporalexpressiontest.rb
50
- - doc/tutorial_schedule.rdoc
51
- - doc/tutorial_te.rdoc
52
- - site/blue-robot3.css
53
- - site/dcl-small.gif
54
- - site/index.html
55
- - site/logohover.png
56
- - site/runt-logo.gif
57
- - site/runt-logo.psd
32
+ - setup.rb
33
+ - CHANGES
34
+ - doc
35
+ - examples
36
+ - lib
37
+ - LICENSE.txt
38
+ - Rakefile
39
+ - README
40
+ - site
41
+ - test
42
+ - TODO
43
+ - lib/runt/daterange.rb
44
+ - lib/runt/dprecision.rb
45
+ - lib/runt/pdate.rb
46
+ - lib/runt/schedule.rb
47
+ - lib/runt/temporalexpression.rb
48
+ - lib/runt.rb
49
+ - test/daterangetest.rb
50
+ - test/dprecisiontest.rb
51
+ - test/icalendartest.rb
52
+ - test/pdatetest.rb
53
+ - test/runttest.rb
54
+ - test/scheduletest.rb
55
+ - test/temporalexpressiontest.rb
56
+ - doc/tutorial_schedule.rdoc
57
+ - doc/tutorial_te.rdoc
58
+ - site/blue-robot3.css
59
+ - site/dcl-small.gif
60
+ - site/index.html
61
+ - site/logohover.png
62
+ - site/runt-logo.gif
63
+ - site/runt-logo.psd
58
64
  test_files:
59
- - test/daterangetest.rb
60
- - test/dprecisiontest.rb
61
- - test/pdatetest.rb
62
- - test/scheduletest.rb
63
- - test/temporalexpressiontest.rb
65
+ - test/daterangetest.rb
66
+ - test/dprecisiontest.rb
67
+ - test/icalendartest.rb
68
+ - test/pdatetest.rb
69
+ - test/runttest.rb
70
+ - test/scheduletest.rb
71
+ - test/temporalexpressiontest.rb
64
72
  rdoc_options: []
73
+
65
74
  extra_rdoc_files: []
75
+
66
76
  executables: []
77
+
67
78
  extensions: []
79
+
68
80
  requirements:
69
- - none
70
- dependencies: []
81
+ - none
82
+ dependencies: []
83
+
@@ -1,10 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # All Runt unit tests
4
- #
5
- # Author:: Matthew Lipper
6
- require 'dprecisiontest'
7
- require 'temporalexpressiontest'
8
- require 'pdatetest'
9
- require 'scheduletest'
10
- require 'daterangetest'