micahwedemeyer-ri_cal 0.8.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (173) hide show
  1. data/.rvmrc +2 -0
  2. data/Gemfile +7 -0
  3. data/Gemfile.lock +21 -0
  4. data/History.txt +402 -0
  5. data/Manifest.txt +161 -0
  6. data/README.txt +410 -0
  7. data/Rakefile +66 -0
  8. data/VERSION +1 -0
  9. data/bin/ri_cal +8 -0
  10. data/component_attributes/alarm.yml +10 -0
  11. data/component_attributes/calendar.yml +4 -0
  12. data/component_attributes/component_property_defs.yml +180 -0
  13. data/component_attributes/event.yml +45 -0
  14. data/component_attributes/freebusy.yml +16 -0
  15. data/component_attributes/journal.yml +35 -0
  16. data/component_attributes/timezone.yml +3 -0
  17. data/component_attributes/timezone_period.yml +11 -0
  18. data/component_attributes/todo.yml +46 -0
  19. data/copyrights.txt +1 -0
  20. data/docs/draft-ietf-calsify-2446bis-08.txt +7280 -0
  21. data/docs/draft-ietf-calsify-rfc2445bis-09.txt +10416 -0
  22. data/docs/incrementers.txt +7 -0
  23. data/docs/rfc2445.pdf +0 -0
  24. data/lib/ri_cal/component/alarm.rb +19 -0
  25. data/lib/ri_cal/component/calendar.rb +257 -0
  26. data/lib/ri_cal/component/event.rb +58 -0
  27. data/lib/ri_cal/component/freebusy.rb +16 -0
  28. data/lib/ri_cal/component/journal.rb +27 -0
  29. data/lib/ri_cal/component/non_standard.rb +33 -0
  30. data/lib/ri_cal/component/t_z_info_timezone.rb +153 -0
  31. data/lib/ri_cal/component/timezone/daylight_period.rb +25 -0
  32. data/lib/ri_cal/component/timezone/standard_period.rb +23 -0
  33. data/lib/ri_cal/component/timezone/timezone_period.rb +76 -0
  34. data/lib/ri_cal/component/timezone.rb +197 -0
  35. data/lib/ri_cal/component/todo.rb +42 -0
  36. data/lib/ri_cal/component.rb +256 -0
  37. data/lib/ri_cal/core_extensions/array/conversions.rb +15 -0
  38. data/lib/ri_cal/core_extensions/array.rb +7 -0
  39. data/lib/ri_cal/core_extensions/date/conversions.rb +56 -0
  40. data/lib/ri_cal/core_extensions/date.rb +13 -0
  41. data/lib/ri_cal/core_extensions/date_time/conversions.rb +50 -0
  42. data/lib/ri_cal/core_extensions/date_time.rb +15 -0
  43. data/lib/ri_cal/core_extensions/object/conversions.rb +20 -0
  44. data/lib/ri_cal/core_extensions/object.rb +8 -0
  45. data/lib/ri_cal/core_extensions/string/conversions.rb +57 -0
  46. data/lib/ri_cal/core_extensions/string.rb +8 -0
  47. data/lib/ri_cal/core_extensions/time/calculations.rb +153 -0
  48. data/lib/ri_cal/core_extensions/time/conversions.rb +42 -0
  49. data/lib/ri_cal/core_extensions/time/tzid_access.rb +50 -0
  50. data/lib/ri_cal/core_extensions/time/week_day_predicates.rb +55 -0
  51. data/lib/ri_cal/core_extensions/time.rb +14 -0
  52. data/lib/ri_cal/core_extensions.rb +11 -0
  53. data/lib/ri_cal/fast_date_time.rb +234 -0
  54. data/lib/ri_cal/floating_timezone.rb +32 -0
  55. data/lib/ri_cal/invalid_property_value.rb +8 -0
  56. data/lib/ri_cal/invalid_timezone_identifier.rb +20 -0
  57. data/lib/ri_cal/occurrence_enumerator.rb +265 -0
  58. data/lib/ri_cal/occurrence_period.rb +17 -0
  59. data/lib/ri_cal/parser.rb +145 -0
  60. data/lib/ri_cal/properties/alarm.rb +390 -0
  61. data/lib/ri_cal/properties/calendar.rb +164 -0
  62. data/lib/ri_cal/properties/event.rb +1523 -0
  63. data/lib/ri_cal/properties/freebusy.rb +593 -0
  64. data/lib/ri_cal/properties/journal.rb +1237 -0
  65. data/lib/ri_cal/properties/timezone.rb +150 -0
  66. data/lib/ri_cal/properties/timezone_period.rb +416 -0
  67. data/lib/ri_cal/properties/todo.rb +1559 -0
  68. data/lib/ri_cal/properties.rb +12 -0
  69. data/lib/ri_cal/property_value/array.rb +27 -0
  70. data/lib/ri_cal/property_value/cal_address.rb +11 -0
  71. data/lib/ri_cal/property_value/date.rb +184 -0
  72. data/lib/ri_cal/property_value/date_time/additive_methods.rb +44 -0
  73. data/lib/ri_cal/property_value/date_time/time_machine.rb +159 -0
  74. data/lib/ri_cal/property_value/date_time/timezone_support.rb +100 -0
  75. data/lib/ri_cal/property_value/date_time.rb +359 -0
  76. data/lib/ri_cal/property_value/duration.rb +110 -0
  77. data/lib/ri_cal/property_value/geo.rb +11 -0
  78. data/lib/ri_cal/property_value/integer.rb +12 -0
  79. data/lib/ri_cal/property_value/occurrence_list.rb +144 -0
  80. data/lib/ri_cal/property_value/period.rb +86 -0
  81. data/lib/ri_cal/property_value/recurrence_rule/enumeration_support_methods.rb +100 -0
  82. data/lib/ri_cal/property_value/recurrence_rule/enumerator.rb +79 -0
  83. data/lib/ri_cal/property_value/recurrence_rule/initialization_methods.rb +148 -0
  84. data/lib/ri_cal/property_value/recurrence_rule/negative_setpos_enumerator.rb +53 -0
  85. data/lib/ri_cal/property_value/recurrence_rule/numbered_span.rb +31 -0
  86. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_day_incrementer.rb +86 -0
  87. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_hour_incrementer.rb +31 -0
  88. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_minute_incrementer.rb +32 -0
  89. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_month_incrementer.rb +52 -0
  90. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_monthday_incrementer.rb +31 -0
  91. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_numbered_day_incrementer.rb +38 -0
  92. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_second_incrementer.rb +32 -0
  93. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_weekno_incrementer.rb +69 -0
  94. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_yearday_incrementer.rb +31 -0
  95. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/daily_incrementer.rb +28 -0
  96. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/frequency_incrementer.rb +80 -0
  97. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/hourly_incrementer.rb +23 -0
  98. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/list_incrementer.rb +106 -0
  99. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/minutely_incrementer.rb +23 -0
  100. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/monthly_incrementer.rb +33 -0
  101. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/null_sub_cycle_incrementer.rb +43 -0
  102. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/secondly_incrementer.rb +28 -0
  103. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/weekly_incrementer.rb +37 -0
  104. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/yearly_incrementer.rb +57 -0
  105. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer.rb +135 -0
  106. data/lib/ri_cal/property_value/recurrence_rule/recurring_day.rb +131 -0
  107. data/lib/ri_cal/property_value/recurrence_rule/recurring_month_day.rb +64 -0
  108. data/lib/ri_cal/property_value/recurrence_rule/recurring_numbered_week.rb +33 -0
  109. data/lib/ri_cal/property_value/recurrence_rule/recurring_year_day.rb +53 -0
  110. data/lib/ri_cal/property_value/recurrence_rule/time_manipulation.rb +42 -0
  111. data/lib/ri_cal/property_value/recurrence_rule/validations.rb +125 -0
  112. data/lib/ri_cal/property_value/recurrence_rule.rb +154 -0
  113. data/lib/ri_cal/property_value/text.rb +44 -0
  114. data/lib/ri_cal/property_value/uri.rb +11 -0
  115. data/lib/ri_cal/property_value/utc_offset.rb +33 -0
  116. data/lib/ri_cal/property_value/zulu_date_time.rb +34 -0
  117. data/lib/ri_cal/property_value.rb +159 -0
  118. data/lib/ri_cal/required_timezones.rb +55 -0
  119. data/lib/ri_cal.rb +187 -0
  120. data/micahwedemeyer-ri_cal.gemspec +227 -0
  121. data/parked_specs/ri_cal/claudio_a_bug_spec.rb +100 -0
  122. data/performance/empty_propval/subject.rb +43 -0
  123. data/performance/paris_eastern/subject.rb +90 -0
  124. data/performance/penultimate_weekday/subject.rb +15 -0
  125. data/performance/psm_big_enum/ical.ics +3171 -0
  126. data/performance/psm_big_enum/subject.rb +16 -0
  127. data/performance/utah_cycling/subject.rb +55 -0
  128. data/sample_ical_files/from_ical_dot_app/test1.ics +38 -0
  129. data/script/benchmark_subject +23 -0
  130. data/script/console +10 -0
  131. data/script/destroy +14 -0
  132. data/script/generate +14 -0
  133. data/script/profile_subject +29 -0
  134. data/script/txt2html +71 -0
  135. data/spec/ri_cal/bugreports_spec.rb +287 -0
  136. data/spec/ri_cal/component/alarm_spec.rb +12 -0
  137. data/spec/ri_cal/component/calendar_spec.rb +88 -0
  138. data/spec/ri_cal/component/event_spec.rb +735 -0
  139. data/spec/ri_cal/component/freebusy_spec.rb +12 -0
  140. data/spec/ri_cal/component/journal_spec.rb +37 -0
  141. data/spec/ri_cal/component/t_z_info_timezone_spec.rb +60 -0
  142. data/spec/ri_cal/component/timezone_spec.rb +236 -0
  143. data/spec/ri_cal/component/todo_spec.rb +112 -0
  144. data/spec/ri_cal/component_spec.rb +224 -0
  145. data/spec/ri_cal/core_extensions/string/conversions_spec.rb +78 -0
  146. data/spec/ri_cal/core_extensions/time/calculations_spec.rb +188 -0
  147. data/spec/ri_cal/core_extensions/time/week_day_predicates_spec.rb +45 -0
  148. data/spec/ri_cal/fast_date_time_spec.rb +77 -0
  149. data/spec/ri_cal/inf_loop_spec.rb +78 -0
  150. data/spec/ri_cal/occurrence_enumerator_spec.rb +611 -0
  151. data/spec/ri_cal/parser_spec.rb +337 -0
  152. data/spec/ri_cal/property_value/date_spec.rb +53 -0
  153. data/spec/ri_cal/property_value/date_time_spec.rb +383 -0
  154. data/spec/ri_cal/property_value/duration_spec.rb +126 -0
  155. data/spec/ri_cal/property_value/occurrence_list_spec.rb +72 -0
  156. data/spec/ri_cal/property_value/period_spec.rb +63 -0
  157. data/spec/ri_cal/property_value/recurrence_rule/recurring_year_day_spec.rb +21 -0
  158. data/spec/ri_cal/property_value/recurrence_rule_spec.rb +1814 -0
  159. data/spec/ri_cal/property_value/text_spec.rb +25 -0
  160. data/spec/ri_cal/property_value/utc_offset_spec.rb +48 -0
  161. data/spec/ri_cal/property_value_spec.rb +125 -0
  162. data/spec/ri_cal/required_timezones_spec.rb +67 -0
  163. data/spec/ri_cal_spec.rb +53 -0
  164. data/spec/spec.opts +4 -0
  165. data/spec/spec_helper.rb +50 -0
  166. data/tasks/gem_loader/load_active_support.rb +3 -0
  167. data/tasks/gem_loader/load_tzinfo_gem.rb +2 -0
  168. data/tasks/ri_cal.rake +412 -0
  169. data/tasks/spec.rake +102 -0
  170. data/website/images/rubytrends.png +0 -0
  171. data/website/javascripts/rounded_corners_lite.inc.js +285 -0
  172. data/website/stylesheets/screen.css +159 -0
  173. metadata +307 -0
metadata ADDED
@@ -0,0 +1,307 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: micahwedemeyer-ri_cal
3
+ version: !ruby/object:Gem::Version
4
+ hash: 45
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 8
9
+ - 9
10
+ version: 0.8.9
11
+ platform: ruby
12
+ authors:
13
+ - Rick DeNatale
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-07-02 00:00:00 -04:00
19
+ default_executable: ri_cal
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ type: :runtime
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - "="
27
+ - !ruby/object:Gem::Version
28
+ hash: 9
29
+ segments:
30
+ - 1
31
+ - 0
32
+ - 15
33
+ version: 1.0.15
34
+ name: bundler
35
+ version_requirements: *id001
36
+ prerelease: false
37
+ - !ruby/object:Gem::Dependency
38
+ type: :runtime
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - "="
43
+ - !ruby/object:Gem::Version
44
+ hash: 9
45
+ segments:
46
+ - 1
47
+ - 6
48
+ - 3
49
+ version: 1.6.3
50
+ name: jeweler
51
+ version_requirements: *id002
52
+ prerelease: false
53
+ - !ruby/object:Gem::Dependency
54
+ type: :runtime
55
+ requirement: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - "="
59
+ - !ruby/object:Gem::Version
60
+ hash: 3
61
+ segments:
62
+ - 0
63
+ - 7
64
+ - 0
65
+ version: 0.7.0
66
+ name: gemcutter
67
+ version_requirements: *id003
68
+ prerelease: false
69
+ - !ruby/object:Gem::Dependency
70
+ type: :runtime
71
+ requirement: &id004 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - "="
75
+ - !ruby/object:Gem::Version
76
+ hash: 31
77
+ segments:
78
+ - 0
79
+ - 1
80
+ - 2
81
+ version: 0.1.2
82
+ name: ad_agency
83
+ version_requirements: *id004
84
+ prerelease: false
85
+ description: "A new Ruby implementation of RFC2445 iCalendar.\n\n\
86
+ The existing Ruby iCalendar libraries (e.g. icalendar, vpim) provide for parsing and generating icalendar files,\n\
87
+ but do not support important things like enumerating occurrences of repeating events.\n\n\
88
+ This is a clean-slate implementation of RFC2445.\n\n\
89
+ A Google group for discussion of this library has been set up http://groups.google.com/group/rical_gem\n "
90
+ email: rick.denatale@gmail.com
91
+ executables:
92
+ - ri_cal
93
+ extensions: []
94
+
95
+ extra_rdoc_files:
96
+ - History.txt
97
+ - README.txt
98
+ - copyrights.txt
99
+ files:
100
+ - .rvmrc
101
+ - Gemfile
102
+ - Gemfile.lock
103
+ - History.txt
104
+ - Manifest.txt
105
+ - README.txt
106
+ - Rakefile
107
+ - VERSION
108
+ - bin/ri_cal
109
+ - component_attributes/alarm.yml
110
+ - component_attributes/calendar.yml
111
+ - component_attributes/component_property_defs.yml
112
+ - component_attributes/event.yml
113
+ - component_attributes/freebusy.yml
114
+ - component_attributes/journal.yml
115
+ - component_attributes/timezone.yml
116
+ - component_attributes/timezone_period.yml
117
+ - component_attributes/todo.yml
118
+ - copyrights.txt
119
+ - docs/draft-ietf-calsify-2446bis-08.txt
120
+ - docs/draft-ietf-calsify-rfc2445bis-09.txt
121
+ - docs/incrementers.txt
122
+ - docs/rfc2445.pdf
123
+ - lib/ri_cal.rb
124
+ - lib/ri_cal/component.rb
125
+ - lib/ri_cal/component/alarm.rb
126
+ - lib/ri_cal/component/calendar.rb
127
+ - lib/ri_cal/component/event.rb
128
+ - lib/ri_cal/component/freebusy.rb
129
+ - lib/ri_cal/component/journal.rb
130
+ - lib/ri_cal/component/non_standard.rb
131
+ - lib/ri_cal/component/t_z_info_timezone.rb
132
+ - lib/ri_cal/component/timezone.rb
133
+ - lib/ri_cal/component/timezone/daylight_period.rb
134
+ - lib/ri_cal/component/timezone/standard_period.rb
135
+ - lib/ri_cal/component/timezone/timezone_period.rb
136
+ - lib/ri_cal/component/todo.rb
137
+ - lib/ri_cal/core_extensions.rb
138
+ - lib/ri_cal/core_extensions/array.rb
139
+ - lib/ri_cal/core_extensions/array/conversions.rb
140
+ - lib/ri_cal/core_extensions/date.rb
141
+ - lib/ri_cal/core_extensions/date/conversions.rb
142
+ - lib/ri_cal/core_extensions/date_time.rb
143
+ - lib/ri_cal/core_extensions/date_time/conversions.rb
144
+ - lib/ri_cal/core_extensions/object.rb
145
+ - lib/ri_cal/core_extensions/object/conversions.rb
146
+ - lib/ri_cal/core_extensions/string.rb
147
+ - lib/ri_cal/core_extensions/string/conversions.rb
148
+ - lib/ri_cal/core_extensions/time.rb
149
+ - lib/ri_cal/core_extensions/time/calculations.rb
150
+ - lib/ri_cal/core_extensions/time/conversions.rb
151
+ - lib/ri_cal/core_extensions/time/tzid_access.rb
152
+ - lib/ri_cal/core_extensions/time/week_day_predicates.rb
153
+ - lib/ri_cal/fast_date_time.rb
154
+ - lib/ri_cal/floating_timezone.rb
155
+ - lib/ri_cal/invalid_property_value.rb
156
+ - lib/ri_cal/invalid_timezone_identifier.rb
157
+ - lib/ri_cal/occurrence_enumerator.rb
158
+ - lib/ri_cal/occurrence_period.rb
159
+ - lib/ri_cal/parser.rb
160
+ - lib/ri_cal/properties.rb
161
+ - lib/ri_cal/properties/alarm.rb
162
+ - lib/ri_cal/properties/calendar.rb
163
+ - lib/ri_cal/properties/event.rb
164
+ - lib/ri_cal/properties/freebusy.rb
165
+ - lib/ri_cal/properties/journal.rb
166
+ - lib/ri_cal/properties/timezone.rb
167
+ - lib/ri_cal/properties/timezone_period.rb
168
+ - lib/ri_cal/properties/todo.rb
169
+ - lib/ri_cal/property_value.rb
170
+ - lib/ri_cal/property_value/array.rb
171
+ - lib/ri_cal/property_value/cal_address.rb
172
+ - lib/ri_cal/property_value/date.rb
173
+ - lib/ri_cal/property_value/date_time.rb
174
+ - lib/ri_cal/property_value/date_time/additive_methods.rb
175
+ - lib/ri_cal/property_value/date_time/time_machine.rb
176
+ - lib/ri_cal/property_value/date_time/timezone_support.rb
177
+ - lib/ri_cal/property_value/duration.rb
178
+ - lib/ri_cal/property_value/geo.rb
179
+ - lib/ri_cal/property_value/integer.rb
180
+ - lib/ri_cal/property_value/occurrence_list.rb
181
+ - lib/ri_cal/property_value/period.rb
182
+ - lib/ri_cal/property_value/recurrence_rule.rb
183
+ - lib/ri_cal/property_value/recurrence_rule/enumeration_support_methods.rb
184
+ - lib/ri_cal/property_value/recurrence_rule/enumerator.rb
185
+ - lib/ri_cal/property_value/recurrence_rule/initialization_methods.rb
186
+ - lib/ri_cal/property_value/recurrence_rule/negative_setpos_enumerator.rb
187
+ - lib/ri_cal/property_value/recurrence_rule/numbered_span.rb
188
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer.rb
189
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_day_incrementer.rb
190
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_hour_incrementer.rb
191
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_minute_incrementer.rb
192
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_month_incrementer.rb
193
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_monthday_incrementer.rb
194
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_numbered_day_incrementer.rb
195
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_second_incrementer.rb
196
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_weekno_incrementer.rb
197
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_yearday_incrementer.rb
198
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/daily_incrementer.rb
199
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/frequency_incrementer.rb
200
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/hourly_incrementer.rb
201
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/list_incrementer.rb
202
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/minutely_incrementer.rb
203
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/monthly_incrementer.rb
204
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/null_sub_cycle_incrementer.rb
205
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/secondly_incrementer.rb
206
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/weekly_incrementer.rb
207
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/yearly_incrementer.rb
208
+ - lib/ri_cal/property_value/recurrence_rule/recurring_day.rb
209
+ - lib/ri_cal/property_value/recurrence_rule/recurring_month_day.rb
210
+ - lib/ri_cal/property_value/recurrence_rule/recurring_numbered_week.rb
211
+ - lib/ri_cal/property_value/recurrence_rule/recurring_year_day.rb
212
+ - lib/ri_cal/property_value/recurrence_rule/time_manipulation.rb
213
+ - lib/ri_cal/property_value/recurrence_rule/validations.rb
214
+ - lib/ri_cal/property_value/text.rb
215
+ - lib/ri_cal/property_value/uri.rb
216
+ - lib/ri_cal/property_value/utc_offset.rb
217
+ - lib/ri_cal/property_value/zulu_date_time.rb
218
+ - lib/ri_cal/required_timezones.rb
219
+ - micahwedemeyer-ri_cal.gemspec
220
+ - parked_specs/ri_cal/claudio_a_bug_spec.rb
221
+ - performance/empty_propval/subject.rb
222
+ - performance/paris_eastern/subject.rb
223
+ - performance/penultimate_weekday/subject.rb
224
+ - performance/psm_big_enum/ical.ics
225
+ - performance/psm_big_enum/subject.rb
226
+ - performance/utah_cycling/subject.rb
227
+ - sample_ical_files/from_ical_dot_app/test1.ics
228
+ - script/benchmark_subject
229
+ - script/console
230
+ - script/destroy
231
+ - script/generate
232
+ - script/profile_subject
233
+ - script/txt2html
234
+ - spec/ri_cal/bugreports_spec.rb
235
+ - spec/ri_cal/component/alarm_spec.rb
236
+ - spec/ri_cal/component/calendar_spec.rb
237
+ - spec/ri_cal/component/event_spec.rb
238
+ - spec/ri_cal/component/freebusy_spec.rb
239
+ - spec/ri_cal/component/journal_spec.rb
240
+ - spec/ri_cal/component/t_z_info_timezone_spec.rb
241
+ - spec/ri_cal/component/timezone_spec.rb
242
+ - spec/ri_cal/component/todo_spec.rb
243
+ - spec/ri_cal/component_spec.rb
244
+ - spec/ri_cal/core_extensions/string/conversions_spec.rb
245
+ - spec/ri_cal/core_extensions/time/calculations_spec.rb
246
+ - spec/ri_cal/core_extensions/time/week_day_predicates_spec.rb
247
+ - spec/ri_cal/fast_date_time_spec.rb
248
+ - spec/ri_cal/inf_loop_spec.rb
249
+ - spec/ri_cal/occurrence_enumerator_spec.rb
250
+ - spec/ri_cal/parser_spec.rb
251
+ - spec/ri_cal/property_value/date_spec.rb
252
+ - spec/ri_cal/property_value/date_time_spec.rb
253
+ - spec/ri_cal/property_value/duration_spec.rb
254
+ - spec/ri_cal/property_value/occurrence_list_spec.rb
255
+ - spec/ri_cal/property_value/period_spec.rb
256
+ - spec/ri_cal/property_value/recurrence_rule/recurring_year_day_spec.rb
257
+ - spec/ri_cal/property_value/recurrence_rule_spec.rb
258
+ - spec/ri_cal/property_value/text_spec.rb
259
+ - spec/ri_cal/property_value/utc_offset_spec.rb
260
+ - spec/ri_cal/property_value_spec.rb
261
+ - spec/ri_cal/required_timezones_spec.rb
262
+ - spec/ri_cal_spec.rb
263
+ - spec/spec.opts
264
+ - spec/spec_helper.rb
265
+ - tasks/gem_loader/load_active_support.rb
266
+ - tasks/gem_loader/load_tzinfo_gem.rb
267
+ - tasks/ri_cal.rake
268
+ - tasks/spec.rake
269
+ - website/images/rubytrends.png
270
+ - website/javascripts/rounded_corners_lite.inc.js
271
+ - website/stylesheets/screen.css
272
+ has_rdoc: true
273
+ homepage: http://github.com/rubyredrick/ri_cal
274
+ licenses: []
275
+
276
+ post_install_message:
277
+ rdoc_options: []
278
+
279
+ require_paths:
280
+ - lib
281
+ required_ruby_version: !ruby/object:Gem::Requirement
282
+ none: false
283
+ requirements:
284
+ - - ">="
285
+ - !ruby/object:Gem::Version
286
+ hash: 3
287
+ segments:
288
+ - 0
289
+ version: "0"
290
+ required_rubygems_version: !ruby/object:Gem::Requirement
291
+ none: false
292
+ requirements:
293
+ - - ">="
294
+ - !ruby/object:Gem::Version
295
+ hash: 3
296
+ segments:
297
+ - 0
298
+ version: "0"
299
+ requirements: []
300
+
301
+ rubyforge_project:
302
+ rubygems_version: 1.6.2
303
+ signing_key:
304
+ specification_version: 3
305
+ summary: a new implementation of RFC2445 in Ruby
306
+ test_files: []
307
+