runt 0.6.0 → 0.7.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.
- data/CHANGES +153 -125
- data/LICENSE.txt +43 -43
- data/README +106 -100
- data/Rakefile +122 -122
- data/TODO +13 -13
- data/doc/tutorial_schedule.rdoc +393 -393
- data/doc/tutorial_sugar.rdoc +143 -0
- data/doc/tutorial_te.rdoc +190 -190
- data/examples/payment_report.rb +59 -0
- data/examples/payment_reporttest.rb +49 -0
- data/examples/reminder.rb +63 -63
- data/lib/runt.rb +237 -219
- data/lib/runt/daterange.rb +74 -74
- data/lib/runt/dprecision.rb +150 -141
- data/lib/runt/expressionbuilder.rb +65 -0
- data/lib/runt/pdate.rb +165 -153
- data/lib/runt/schedule.rb +88 -88
- data/lib/runt/sugar.rb +171 -0
- data/lib/runt/temporalexpression.rb +789 -777
- data/setup.rb +1331 -1331
- data/site/blue-robot3.css +131 -131
- data/site/dcl-small.gif +0 -0
- data/site/index.html +72 -94
- data/site/runt-logo.gif +0 -0
- data/site/runt-logo.psd +0 -0
- data/test/aftertetest.rb +31 -0
- data/test/beforetetest.rb +31 -0
- data/test/daterangetest.rb +89 -89
- data/test/dprecisiontest.rb +58 -55
- data/test/expressionbuildertest.rb +64 -0
- data/test/icalendartest.rb +621 -41
- data/test/pdatetest.rb +147 -117
- data/test/redaytest.rb +10 -0
- data/test/reyeartest.rb +99 -98
- data/test/runttest.rb +98 -101
- data/test/scheduletest.rb +148 -148
- data/test/sugartest.rb +104 -0
- data/test/temporalexpressiontest.rb +76 -76
- metadata +112 -95
data/CHANGES
CHANGED
@@ -1,125 +1,153 @@
|
|
1
|
-
= Runt Changelog
|
2
|
-
|
3
|
-
== Version 0.
|
4
|
-
|
5
|
-
*
|
6
|
-
|
7
|
-
*
|
8
|
-
|
9
|
-
* Fixed bug #
|
10
|
-
|
11
|
-
*
|
12
|
-
|
13
|
-
*
|
14
|
-
|
15
|
-
*
|
16
|
-
|
17
|
-
*
|
18
|
-
|
19
|
-
* Added
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
*
|
24
|
-
|
25
|
-
*
|
26
|
-
|
27
|
-
*
|
28
|
-
|
29
|
-
*
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
*
|
34
|
-
|
35
|
-
*
|
36
|
-
|
37
|
-
*
|
38
|
-
|
39
|
-
*
|
40
|
-
|
41
|
-
*
|
42
|
-
|
43
|
-
*
|
44
|
-
|
45
|
-
*
|
46
|
-
|
47
|
-
*
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
* Added
|
54
|
-
|
55
|
-
* Added
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
*
|
60
|
-
|
61
|
-
* Added
|
62
|
-
|
63
|
-
*
|
64
|
-
|
65
|
-
*
|
66
|
-
|
67
|
-
*
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
*
|
72
|
-
|
73
|
-
*
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
*
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
*
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
*
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
*
|
96
|
-
|
97
|
-
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
*
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
*
|
115
|
-
*
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
*
|
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
|
+
|
data/LICENSE.txt
CHANGED
@@ -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
|
-
*
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
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
|