runt 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,125 +1,153 @@
1
- = Runt Changelog
2
-
3
- == Version 0.6.0
4
-
5
- * Refactored and improved temporal expression tests, moving them to separate files per class
6
-
7
- * Fixed bug #5741: REYear incorrect handling of default args
8
-
9
- * Fixed bug #5749: Fixed spans midnight for REDay (Revision 156), changed semantics when dealing with lower precision arguments
10
-
11
- * Fixed bug #10640: incorrect tutorial section for tutorial_te.rdoc
12
-
13
- * Fixed bug #10605: DateRange.empty? should be true for min == max
14
-
15
- * Finished Schedule API tutorial
16
-
17
- * Fixed bug #16143: Typo in Schedule RDoc
18
-
19
- * Added README (and related files) in the generated rdoc
20
-
21
- == Version 0.5.0
22
-
23
- * Refactored Schedule implementation which greatly simplifies customization but does potentially break existing clients who relied on the ability to call add mulitple times (SEE BELOW)
24
-
25
- * Added update method to Schedule allowing clients to update existing expressions
26
-
27
- * Added select method to Schedule allowing clients to query Events using arbitrary criteria
28
-
29
- * Added events method to Schedule which returns an Array of the currrently held Events
30
-
31
- * Added time-related shortcuts to Runt module contributed by Ara T. Howard
32
-
33
- * Added ability to work with Time class contributed by Paul Wright
34
-
35
- * Implemented meaningful to_s methods for TExpr classes
36
-
37
- * Added include? method to Standard Library Date class allowing Spec class better interaction with other expressions
38
-
39
- * Applied patch to fix PDate serialization bug contributed by Jodi Showers
40
-
41
- * Added BeforeTE, AfterTE, enhanced TExpr#dates method, RFC2445 (iCalendar) compliance unit test, contributed by Larry Karnowski
42
-
43
- * Applied patch by Gordon Thiesfeld which fixes broken Time class compatibility
44
-
45
- * Applied patch by Gordon Thiesfeld which allows REWeek expressions to span across two weeks
46
-
47
- * Removed unused context.rb and contexttest.rb
48
-
49
- * Removed unnecessary test suite alltests.rb
50
-
51
- == Version 0.4.0
52
-
53
- * Added DayIntervalTE contributed by Ira Burton which matches every n days past a given date
54
-
55
- * Added YearTE requested by Pat Maddox
56
-
57
- == Version 0.3.0
58
-
59
- * TExpr (finally!) becomes a Module instead of a superclass
60
-
61
- * Added overlap? method for all temporal expressions and DateRange
62
-
63
- * Added REMonth expression which matches a range of dates each month
64
-
65
- * Contributed by Emmett Shear: TExpr#dates method which returns an array of dates occurring within the supplied DateRange
66
-
67
- * Rakefile fixes:
68
- - test path allow gem to be installed with -t switch
69
- - usage of gzip which will break on Win32
70
-
71
- * Removed and then subsequently restored SpecTE
72
-
73
- * General clean-up, including:
74
- - renamed several methods on PDate
75
- - renamed 'dateprecisiontest.rb' to 'dprecisiontest.rb'
76
-
77
- * Fixed Object.id deprecation warning
78
-
79
-
80
- == Version 0.2.0
81
-
82
- * Fixed Schedule class
83
- * Renamed Schedule#is_occurring? to Schedule#include?
84
- * RAA deployment
85
- * GEM deployment
86
- * Renamed file dateprecisiontest.rb to dprecisiontest.rb
87
- * Renamed several methods on PDate:
88
- - second -> sec
89
- - minute -> min
90
- - hour_of_day -> hour
91
- - day_of_month -> day
92
-
93
- == Version 0.1.0
94
-
95
- * Inspired by suggestions[http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/95465] on c.l.r., did massive renaming and refactoring to make source more Ruby-esque:
96
-
97
- - TemporalExpression class => TExpr
98
- - DatePrecision module => DPrecision (file name changed also)
99
- - TimePoint class => PDate (file name changed also)
100
- - Added transparent use of bitwise set operators ( & , | ) for building composite expressions
101
- - Added transparent use of - operator for diff expressions
102
-
103
- * Updated TE Tutorial to reflect new and improved syntax usage
104
- * Skipped several version numbers to celebrate
105
-
106
- == Version 0.0.6
107
-
108
- * TE Tutorial
109
- * Website beautification
110
- * Credits
111
-
112
- == Version 0.0.4
113
-
114
- * Improved Rake[http://rake.rubyforge.org] support
115
- * Better documentation: README, TODO, CHANGES, etc.
116
- * More Ruby-like source code layout and code organization inspired by Rake[http://rake.rubyforge.org] distribution
117
- * Dropped the obviously superfluous 'alpha' from versioning
118
-
119
- == Version 0.0.1
120
-
121
- * Learned Ruby (or began trying, at any rate...)
122
- * RubyForge project setup
123
- * Basic implementation of the Java-based chronicJ[http://chronicJ.org] functionality in Ruby
124
-
125
-
1
+ = Runt Changelog
2
+
3
+ == Version 0.7.0
4
+
5
+ * Addded tutorial_sugar.rdoc for new builder and shortcut stuff
6
+
7
+ * Added ExpressionBuilder class for creating expressions using more human-friendly syntax
8
+
9
+ * Fixed bug #20723: using modified patch contributed by Justin Cunningham. This partially reverted changes made by bug fix #5749, REDay by default now returns true for less precise arguments but accepts an optional constructor parameter which will override this behavior
10
+
11
+ * Removed deprecated "autorequire" property configuration from Rakefile
12
+
13
+ * Added properly spelled constant Runt::Eighth to the Runt module
14
+
15
+ * Added month constants defined in Date class to runt.rb for use by shortcuts
16
+
17
+ * Added optional Runt module extension which provides some syntactic sugar for creating common expressions
18
+
19
+ * Added tests and fixed broken to_s method in AfterTE and BeforeTE
20
+
21
+ * Applied patch contributed by Justin Cunningham for optimizing performance of the TExprUtils#max_day_of_month method - source is taken verbatim from ActiveSupport::CoreExtensions::Time::Calculations::ClassMethods module days_in_month method
22
+
23
+ * Changed runttest.rb to use local Time so test doesn't fail when run from another time zone
24
+
25
+ * Fixed usage of deprecated methods in Date when accessing them from PDate subclass
26
+
27
+ * Applied patches providing week precision and expanded RFC2445 compliance tests contributed by Larry Karnowski
28
+
29
+ * Fixed bug #19982: REYear will match day in any month if @same_month_dates_provided with patch submitted by Riley Lynch
30
+
31
+ == Version 0.6.0
32
+
33
+ * Refactored and improved temporal expression tests, moving them to separate files per class
34
+
35
+ * Fixed bug #5741: REYear incorrect handling of default args
36
+
37
+ * Fixed bug #5749: Fixed spans midnight for REDay (Revision 156), changed semantics when dealing with lower precision arguments
38
+
39
+ * Fixed bug #10640: incorrect tutorial section for tutorial_te.rdoc
40
+
41
+ * Fixed bug #10605: DateRange.empty? should be true for min == max
42
+
43
+ * Finished Schedule API tutorial
44
+
45
+ * Fixed bug #16143: Typo in Schedule RDoc
46
+
47
+ * Added README (and related files) in the generated rdoc
48
+
49
+ == Version 0.5.0
50
+
51
+ * Refactored Schedule implementation which greatly simplifies customization but does potentially break existing clients who relied on the ability to call add mulitple times (SEE BELOW)
52
+
53
+ * Added update method to Schedule allowing clients to update existing expressions
54
+
55
+ * Added select method to Schedule allowing clients to query Events using arbitrary criteria
56
+
57
+ * Added events method to Schedule which returns an Array of the currrently held Events
58
+
59
+ * Added time-related shortcuts to Runt module contributed by Ara T. Howard
60
+
61
+ * Added ability to work with Time class contributed by Paul Wright
62
+
63
+ * Implemented meaningful to_s methods for TExpr classes
64
+
65
+ * Added include? method to Standard Library Date class allowing Spec class better interaction with other expressions
66
+
67
+ * Applied patch to fix PDate serialization bug contributed by Jodi Showers
68
+
69
+ * Added BeforeTE, AfterTE, enhanced TExpr#dates method, RFC2445 (iCalendar) compliance unit test, contributed by Larry Karnowski
70
+
71
+ * Applied patch by Gordon Thiesfeld which fixes broken Time class compatibility
72
+
73
+ * Applied patch by Gordon Thiesfeld which allows REWeek expressions to span across two weeks
74
+
75
+ * Removed unused context.rb and contexttest.rb
76
+
77
+ * Removed unnecessary test suite alltests.rb
78
+
79
+ == Version 0.4.0
80
+
81
+ * Added DayIntervalTE contributed by Ira Burton which matches every n days past a given date
82
+
83
+ * Added YearTE requested by Pat Maddox
84
+
85
+ == Version 0.3.0
86
+
87
+ * TExpr (finally!) becomes a Module instead of a superclass
88
+
89
+ * Added overlap? method for all temporal expressions and DateRange
90
+
91
+ * Added REMonth expression which matches a range of dates each month
92
+
93
+ * Contributed by Emmett Shear: TExpr#dates method which returns an array of dates occurring within the supplied DateRange
94
+
95
+ * Rakefile fixes:
96
+ - test path allow gem to be installed with -t switch
97
+ - usage of gzip which will break on Win32
98
+
99
+ * Removed and then subsequently restored SpecTE
100
+
101
+ * General clean-up, including:
102
+ - renamed several methods on PDate
103
+ - renamed 'dateprecisiontest.rb' to 'dprecisiontest.rb'
104
+
105
+ * Fixed Object.id deprecation warning
106
+
107
+
108
+ == Version 0.2.0
109
+
110
+ * Fixed Schedule class
111
+ * Renamed Schedule#is_occurring? to Schedule#include?
112
+ * RAA deployment
113
+ * GEM deployment
114
+ * Renamed file dateprecisiontest.rb to dprecisiontest.rb
115
+ * Renamed several methods on PDate:
116
+ - second -> sec
117
+ - minute -> min
118
+ - hour_of_day -> hour
119
+ - day_of_month -> day
120
+
121
+ == Version 0.1.0
122
+
123
+ * Inspired by suggestions[http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/95465] on c.l.r., did massive renaming and refactoring to make source more Ruby-esque:
124
+
125
+ - TemporalExpression class => TExpr
126
+ - DatePrecision module => DPrecision (file name changed also)
127
+ - TimePoint class => PDate (file name changed also)
128
+ - Added transparent use of bitwise set operators ( & , | ) for building composite expressions
129
+ - Added transparent use of - operator for diff expressions
130
+
131
+ * Updated TE Tutorial to reflect new and improved syntax usage
132
+ * Skipped several version numbers to celebrate
133
+
134
+ == Version 0.0.6
135
+
136
+ * TE Tutorial
137
+ * Website beautification
138
+ * Credits
139
+
140
+ == Version 0.0.4
141
+
142
+ * Improved Rake[http://rake.rubyforge.org] support
143
+ * Better documentation: README, TODO, CHANGES, etc.
144
+ * More Ruby-like source code layout and code organization inspired by Rake[http://rake.rubyforge.org] distribution
145
+ * Dropped the obviously superfluous 'alpha' from versioning
146
+
147
+ == Version 0.0.1
148
+
149
+ * Learned Ruby (or began trying, at any rate...)
150
+ * RubyForge project setup
151
+ * Basic implementation of the Java-based chronicJ[http://chronicJ.org] functionality in Ruby
152
+
153
+
@@ -1,44 +1,44 @@
1
- The Apache Software License, Version 1.1
2
-
3
- Copyright (c) 2003-2004 Digital Clash LLC. All rights
4
- reserved.
5
-
6
- Redistribution and use in source and binary forms, with or without
7
- modification, are permitted provided that the following conditions
8
- are met:
9
-
10
- 1. Redistributions of source code must retain the above copyright
11
- notice, this list of conditions and the following disclaimer.
12
-
13
- 2. Redistributions in binary form must reproduce the above copyright
14
- notice, this list of conditions and the following disclaimer in
15
- the documentation and/or other materials provided with the
16
- distribution.
17
-
18
- 3. The end-user documentation included with the redistribution,
19
- if any, must include the following acknowledgment:
20
- "This product includes software developed by the
21
- Runt team (http://runt.rubyforge.org/)."
22
- Alternately, this acknowledgment may appear in the software itself,
23
- if and wherever such third-party acknowledgments normally appear.
24
-
25
- 4. The names "Runt" and "Digital Clash" not be used to endorse or
26
- promote products derived from this software without prior written
27
- permission. For written permission, please contact
28
- info@digitalclash.com.
29
-
30
- 5. Products derived from this software may not be called "Runt",
31
- "Digital Clash", nor may "Runt" or "Digital Clash" appear in
32
- their name, without prior written permission of Digital Clash LLC.
33
-
34
- THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
35
- WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
36
- OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
37
- DISCLAIMED. IN NO EVENT SHALL DIGITAL CLASH LLC OR ITS CONTRIBUTORS
38
- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
39
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
40
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
41
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
42
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
43
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
1
+ The Apache Software License, Version 1.1
2
+
3
+ Copyright (c) 2003-2004 Digital Clash LLC. All rights
4
+ reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions
8
+ are met:
9
+
10
+ 1. Redistributions of source code must retain the above copyright
11
+ notice, this list of conditions and the following disclaimer.
12
+
13
+ 2. Redistributions in binary form must reproduce the above copyright
14
+ notice, this list of conditions and the following disclaimer in
15
+ the documentation and/or other materials provided with the
16
+ distribution.
17
+
18
+ 3. The end-user documentation included with the redistribution,
19
+ if any, must include the following acknowledgment:
20
+ "This product includes software developed by the
21
+ Runt team (http://runt.rubyforge.org/)."
22
+ Alternately, this acknowledgment may appear in the software itself,
23
+ if and wherever such third-party acknowledgments normally appear.
24
+
25
+ 4. The names "Runt" and "Digital Clash" not be used to endorse or
26
+ promote products derived from this software without prior written
27
+ permission. For written permission, please contact
28
+ info@digitalclash.com.
29
+
30
+ 5. Products derived from this software may not be called "Runt",
31
+ "Digital Clash", nor may "Runt" or "Digital Clash" appear in
32
+ their name, without prior written permission of Digital Clash LLC.
33
+
34
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
35
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
36
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
37
+ DISCLAIMED. IN NO EVENT SHALL DIGITAL CLASH LLC OR ITS CONTRIBUTORS
38
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
39
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
40
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
41
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
42
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
43
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
44
44
  THE POSSIBILITY OF SUCH DAMAGE.
data/README CHANGED
@@ -1,100 +1,106 @@
1
- = RUNT -- Ruby Temporal Expressions
2
-
3
- * Runt is a Ruby[http://www.ruby-lang.org/en/] implementation of select Martin Fowler patterns[http://www.martinfowler.com/articles].
4
-
5
- * <em>TemporalExpression</em>s allow a developer to define patterns of date recurrence using set expressions.
6
-
7
- = INSTALL
8
-
9
- * gem install runt
10
-
11
- <b>or</b>
12
-
13
- * Unpack the Runt distribution.
14
-
15
- $ tar -xzvf runt-<version>.tar.gz
16
-
17
- * cd $UNPACK_DIR/runt/
18
-
19
- * execute:
20
-
21
- $ ruby setup.rb config
22
- $ ruby setup.rb setup
23
- $ ruby setup.rb install (may require root privilege)
24
-
25
- <b>or</b>
26
-
27
- $ ruby setup.rb --help
28
-
29
- for more options.
30
-
31
- = QUICK START
32
-
33
- * require 'runt'
34
-
35
- * See Runt website[http://runt.rubyforge.org].
36
-
37
- * See $UNPACK_DIR/runt/test/*.rb for example usage.
38
-
39
- * See this mini-TemporalExpression tutorial[http://runt.rubyforge.org/doc/files/doc/tutorial_te_rdoc.html]
40
-
41
- * See http://chronicj.digitalclash.com/apidocs/index.html for commented Java source (JavaDoc)
42
-
43
- Get in touch if you have questions or if Runt causes your computer to burst into flames...
44
-
45
- Matt[mailto:mlipper@gmail.com]
46
-
47
- == Credits
48
-
49
- Rubyforge[http://rubyforge.org] for hosting this project.
50
-
51
- M.Fowler[http://martinfowler.com], Matz[http://ruby-lang.org],
52
- T.Funaba (Date/DateTime[http://www.funaba.org/en/ruby.html]),
53
- J.Weirich (Rake[http://rake.rubyforge.org]),
54
- PragmaticProgrammers[http://pragmaticprogrammer.com], and everyone on
55
- ruby-talk[mailto:ruby-talk@ruby-lang.org] for their shameless public display
56
- of smartness.
57
-
58
- Hal Fulton, Mauricio Fernandez, and Mark Hubbart for the
59
- thread[http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/95465] on c.l.r.
60
- that inspired a more Ruby-esque syntax for creating TE's. 2X Thanks to Hal, for
61
- taking the time to exchange ideas off-line.
62
-
63
- The ruby-nyc user's group for their suggestions and feedback.
64
-
65
- BlueRobot[http://www.bluerobot.com/web/layouts/] for the CSS used to prettify the Runt website.
66
-
67
- Emmett Shear for contributed TExpr#dates code and several thought-provoking feature requests.
68
-
69
- Ira Burton for contributed DayIntervalTE class.
70
-
71
- Jodi Showers for serialization bug fix.
72
-
73
- Pat Maddox for YearTE.
74
-
75
- Paul Wright for Time class compatibility.
76
-
77
- Ara T. Howard for Numeric class extensions.
78
-
79
- Larry Karnowski for BeforeTE, AfterTE, TExpr#dates enhancements, RFC2445 (iCalendar) compliance tests.
80
-
81
- Gordon Thiesfeld for fixed Time integration and extended REWeek functionality
82
-
83
- The number 12, and the letters E, J, and B.
84
-
85
- = Etc...
86
-
87
- Author:: Matthew Lipper <mlipper@gmail.com>
88
- Requires:: Ruby 1.8.0 or later, Date/DateTime classes
89
- License:: Copyright 2004 by Digital Clash LLC.
90
- Released under the Apache Software license (see LICENSE.txt)
91
- included in the distribution.
92
-
93
- = Warranty
94
-
95
- This software is provided "as is" and without any express or
96
- implied warranties, including, without limitation, the implied
97
- warranties of merchantibility and fitness for a particular
98
- purpose.
99
-
100
- link://../dcl-small.gif
1
+ = RUNT -- Ruby Temporal Expressions
2
+
3
+ * Runt is a Ruby[http://www.ruby-lang.org/en/] implementation of select Martin Fowler patterns[http://www.martinfowler.com/articles].
4
+
5
+ * <em>TemporalExpression</em>s allow a developer to define patterns of date recurrence using set expressions.
6
+
7
+ = INSTALL
8
+
9
+ * gem install runt
10
+
11
+ <b>or</b>
12
+
13
+ * Unpack the Runt distribution.
14
+
15
+ $ tar -xzvf runt-<version>.tar.gz
16
+
17
+ * cd $UNPACK_DIR/runt/
18
+
19
+ * execute:
20
+
21
+ $ ruby setup.rb config
22
+ $ ruby setup.rb setup
23
+ $ ruby setup.rb install (may require root privilege)
24
+
25
+ <b>or</b>
26
+
27
+ $ ruby setup.rb --help
28
+
29
+ for more options.
30
+
31
+ = QUICK START
32
+
33
+ * require 'runt'
34
+
35
+ * See Runt website[http://runt.rubyforge.org].
36
+
37
+ * See $UNPACK_DIR/runt/test/*.rb for example usage.
38
+
39
+ * See this mini-TemporalExpression tutorial[http://runt.rubyforge.org/doc/files/doc/tutorial_te_rdoc.html]
40
+ * Also this tutorial[http://runt.rubyforge.org/doc/files/doc/tutorial_schedule_rdoc.html]
41
+ * And this tutorial[http://runt.rubyforge.org/doc/files/doc/tutorial_sugar_rdoc.html]
42
+
43
+ * See http://chronicj.digitalclash.com/apidocs/index.html for commented Java source (JavaDoc)
44
+
45
+ Get in touch if you have questions or if Runt causes your computer to burst into flames...
46
+
47
+ Matt[mailto:mlipper@gmail.com]
48
+
49
+ == Credits
50
+
51
+ Rubyforge[http://rubyforge.org] for hosting this project.
52
+
53
+ M.Fowler[http://martinfowler.com], Matz[http://ruby-lang.org],
54
+ T.Funaba (Date/DateTime[http://www.funaba.org/en/ruby.html]),
55
+ J.Weirich (Rake[http://rake.rubyforge.org]),
56
+ PragmaticProgrammers[http://pragmaticprogrammer.com], and everyone on
57
+ ruby-talk[mailto:ruby-talk@ruby-lang.org] for their shameless public display
58
+ of smartness.
59
+
60
+ Hal Fulton, Mauricio Fernandez, and Mark Hubbart for the
61
+ thread[http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/95465] on c.l.r.
62
+ that inspired a more Ruby-esque syntax for creating TE's. 2X Thanks to Hal, for
63
+ taking the time to exchange ideas off-line.
64
+
65
+ The ruby-nyc user's group for their suggestions and feedback.
66
+
67
+ BlueRobot[http://www.bluerobot.com/web/layouts/] for the CSS used to prettify the Runt website.
68
+
69
+ Emmett Shear for contributed TExpr#dates code and several thought-provoking feature requests.
70
+
71
+ Ira Burton for contributed DayIntervalTE class.
72
+
73
+ Jodi Showers for serialization bug fix.
74
+
75
+ Pat Maddox for YearTE.
76
+
77
+ Paul Wright for Time class compatibility.
78
+
79
+ Ara T. Howard for Numeric class extensions.
80
+
81
+ Larry Karnowski for BeforeTE, AfterTE, TExpr#dates enhancements, RFC2445 (iCalendar) compliance tests.
82
+
83
+ Gordon Thiesfeld for fixed Time integration and extended REWeek functionality.
84
+
85
+ Justin Cunningham for performance optimizations, bug reports and patches.
86
+
87
+ Bug #19982 and patch submitted by Riley Lynch
88
+
89
+ The number 12, and the letters E, J, and B.
90
+
91
+ = Etc...
92
+
93
+ Author:: Matthew Lipper <mlipper@gmail.com>
94
+ Requires:: Ruby 1.8.0 or later, Date/DateTime classes
95
+ License:: Copyright 2004 by Digital Clash LLC.
96
+ Released under the Apache Software license (see LICENSE.txt)
97
+ included in the distribution.
98
+
99
+ = Warranty
100
+
101
+ This software is provided "as is" and without any express or
102
+ implied warranties, including, without limitation, the implied
103
+ warranties of merchantibility and fitness for a particular
104
+ purpose.
105
+
106
+ link://../dcl-small.gif