awallis-ri_cal 0.8.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (166) hide show
  1. data/History.txt +402 -0
  2. data/Manifest.txt +161 -0
  3. data/README.txt +410 -0
  4. data/Rakefile +69 -0
  5. data/VERSION +1 -0
  6. data/bin/ri_cal +8 -0
  7. data/component_attributes/alarm.yml +10 -0
  8. data/component_attributes/calendar.yml +4 -0
  9. data/component_attributes/component_property_defs.yml +180 -0
  10. data/component_attributes/event.yml +45 -0
  11. data/component_attributes/freebusy.yml +16 -0
  12. data/component_attributes/journal.yml +35 -0
  13. data/component_attributes/timezone.yml +3 -0
  14. data/component_attributes/timezone_period.yml +11 -0
  15. data/component_attributes/todo.yml +46 -0
  16. data/copyrights.txt +1 -0
  17. data/docs/draft-ietf-calsify-2446bis-08.txt +7280 -0
  18. data/docs/draft-ietf-calsify-rfc2445bis-09.txt +10416 -0
  19. data/docs/incrementers.txt +7 -0
  20. data/docs/rfc2445.pdf +0 -0
  21. data/lib/ri_cal.rb +187 -0
  22. data/lib/ri_cal/component.rb +256 -0
  23. data/lib/ri_cal/component/alarm.rb +19 -0
  24. data/lib/ri_cal/component/calendar.rb +257 -0
  25. data/lib/ri_cal/component/event.rb +58 -0
  26. data/lib/ri_cal/component/freebusy.rb +16 -0
  27. data/lib/ri_cal/component/journal.rb +27 -0
  28. data/lib/ri_cal/component/non_standard.rb +33 -0
  29. data/lib/ri_cal/component/t_z_info_timezone.rb +153 -0
  30. data/lib/ri_cal/component/timezone.rb +197 -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/todo.rb +42 -0
  35. data/lib/ri_cal/core_extensions.rb +11 -0
  36. data/lib/ri_cal/core_extensions/array.rb +7 -0
  37. data/lib/ri_cal/core_extensions/array/conversions.rb +15 -0
  38. data/lib/ri_cal/core_extensions/date.rb +13 -0
  39. data/lib/ri_cal/core_extensions/date/conversions.rb +56 -0
  40. data/lib/ri_cal/core_extensions/date_time.rb +15 -0
  41. data/lib/ri_cal/core_extensions/date_time/conversions.rb +50 -0
  42. data/lib/ri_cal/core_extensions/object.rb +8 -0
  43. data/lib/ri_cal/core_extensions/object/conversions.rb +20 -0
  44. data/lib/ri_cal/core_extensions/string.rb +8 -0
  45. data/lib/ri_cal/core_extensions/string/conversions.rb +57 -0
  46. data/lib/ri_cal/core_extensions/time.rb +14 -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/fast_date_time.rb +234 -0
  52. data/lib/ri_cal/floating_timezone.rb +32 -0
  53. data/lib/ri_cal/invalid_property_value.rb +8 -0
  54. data/lib/ri_cal/invalid_timezone_identifier.rb +20 -0
  55. data/lib/ri_cal/occurrence_enumerator.rb +265 -0
  56. data/lib/ri_cal/occurrence_period.rb +17 -0
  57. data/lib/ri_cal/parser.rb +145 -0
  58. data/lib/ri_cal/properties.rb +12 -0
  59. data/lib/ri_cal/properties/alarm.rb +390 -0
  60. data/lib/ri_cal/properties/calendar.rb +164 -0
  61. data/lib/ri_cal/properties/event.rb +1523 -0
  62. data/lib/ri_cal/properties/freebusy.rb +593 -0
  63. data/lib/ri_cal/properties/journal.rb +1237 -0
  64. data/lib/ri_cal/properties/timezone.rb +150 -0
  65. data/lib/ri_cal/properties/timezone_period.rb +416 -0
  66. data/lib/ri_cal/properties/todo.rb +1559 -0
  67. data/lib/ri_cal/property_value.rb +159 -0
  68. data/lib/ri_cal/property_value/array.rb +27 -0
  69. data/lib/ri_cal/property_value/cal_address.rb +11 -0
  70. data/lib/ri_cal/property_value/date.rb +184 -0
  71. data/lib/ri_cal/property_value/date_time.rb +359 -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/duration.rb +110 -0
  76. data/lib/ri_cal/property_value/geo.rb +11 -0
  77. data/lib/ri_cal/property_value/integer.rb +12 -0
  78. data/lib/ri_cal/property_value/occurrence_list.rb +144 -0
  79. data/lib/ri_cal/property_value/period.rb +86 -0
  80. data/lib/ri_cal/property_value/recurrence_rule.rb +154 -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.rb +135 -0
  87. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_day_incrementer.rb +86 -0
  88. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_hour_incrementer.rb +31 -0
  89. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_minute_incrementer.rb +32 -0
  90. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_month_incrementer.rb +52 -0
  91. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_monthday_incrementer.rb +31 -0
  92. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_numbered_day_incrementer.rb +38 -0
  93. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_second_incrementer.rb +32 -0
  94. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_weekno_incrementer.rb +69 -0
  95. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_yearday_incrementer.rb +31 -0
  96. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/daily_incrementer.rb +28 -0
  97. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/frequency_incrementer.rb +80 -0
  98. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/hourly_incrementer.rb +23 -0
  99. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/list_incrementer.rb +106 -0
  100. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/minutely_incrementer.rb +23 -0
  101. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/monthly_incrementer.rb +33 -0
  102. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/null_sub_cycle_incrementer.rb +43 -0
  103. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/secondly_incrementer.rb +28 -0
  104. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/weekly_incrementer.rb +37 -0
  105. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/yearly_incrementer.rb +57 -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/text.rb +44 -0
  113. data/lib/ri_cal/property_value/uri.rb +11 -0
  114. data/lib/ri_cal/property_value/utc_offset.rb +33 -0
  115. data/lib/ri_cal/property_value/zulu_date_time.rb +34 -0
  116. data/lib/ri_cal/required_timezones.rb +55 -0
  117. data/parked_specs/ri_cal/claudio_a_bug_spec.rb +100 -0
  118. data/performance/empty_propval/subject.rb +43 -0
  119. data/performance/paris_eastern/subject.rb +90 -0
  120. data/performance/penultimate_weekday/subject.rb +15 -0
  121. data/performance/psm_big_enum/ical.ics +3171 -0
  122. data/performance/psm_big_enum/subject.rb +16 -0
  123. data/performance/utah_cycling/subject.rb +55 -0
  124. data/ri_cal.gemspec +244 -0
  125. data/script/benchmark_subject +23 -0
  126. data/script/console +10 -0
  127. data/script/destroy +14 -0
  128. data/script/generate +14 -0
  129. data/script/profile_subject +29 -0
  130. data/script/txt2html +71 -0
  131. data/spec/ri_cal/bugreports_spec.rb +276 -0
  132. data/spec/ri_cal/component/alarm_spec.rb +12 -0
  133. data/spec/ri_cal/component/calendar_spec.rb +88 -0
  134. data/spec/ri_cal/component/event_spec.rb +735 -0
  135. data/spec/ri_cal/component/freebusy_spec.rb +12 -0
  136. data/spec/ri_cal/component/journal_spec.rb +37 -0
  137. data/spec/ri_cal/component/t_z_info_timezone_spec.rb +60 -0
  138. data/spec/ri_cal/component/timezone_spec.rb +236 -0
  139. data/spec/ri_cal/component/todo_spec.rb +112 -0
  140. data/spec/ri_cal/component_spec.rb +224 -0
  141. data/spec/ri_cal/core_extensions/string/conversions_spec.rb +78 -0
  142. data/spec/ri_cal/core_extensions/time/calculations_spec.rb +188 -0
  143. data/spec/ri_cal/core_extensions/time/week_day_predicates_spec.rb +45 -0
  144. data/spec/ri_cal/fast_date_time_spec.rb +77 -0
  145. data/spec/ri_cal/inf_loop_spec.rb +78 -0
  146. data/spec/ri_cal/occurrence_enumerator_spec.rb +611 -0
  147. data/spec/ri_cal/parser_spec.rb +337 -0
  148. data/spec/ri_cal/property_value/date_spec.rb +53 -0
  149. data/spec/ri_cal/property_value/date_time_spec.rb +383 -0
  150. data/spec/ri_cal/property_value/duration_spec.rb +126 -0
  151. data/spec/ri_cal/property_value/occurrence_list_spec.rb +72 -0
  152. data/spec/ri_cal/property_value/period_spec.rb +63 -0
  153. data/spec/ri_cal/property_value/recurrence_rule/recurring_year_day_spec.rb +21 -0
  154. data/spec/ri_cal/property_value/recurrence_rule_spec.rb +1814 -0
  155. data/spec/ri_cal/property_value/text_spec.rb +25 -0
  156. data/spec/ri_cal/property_value/utc_offset_spec.rb +48 -0
  157. data/spec/ri_cal/property_value_spec.rb +125 -0
  158. data/spec/ri_cal/required_timezones_spec.rb +67 -0
  159. data/spec/ri_cal_spec.rb +53 -0
  160. data/spec/spec.opts +4 -0
  161. data/spec/spec_helper.rb +50 -0
  162. data/tasks/gem_loader/load_active_support.rb +3 -0
  163. data/tasks/gem_loader/load_tzinfo_gem.rb +2 -0
  164. data/tasks/ri_cal.rake +412 -0
  165. data/tasks/spec.rake +102 -0
  166. metadata +255 -0
@@ -0,0 +1,102 @@
1
+ begin
2
+ require 'spec'
3
+ rescue LoadError
4
+ require 'rubygems'
5
+ require 'spec'
6
+ end
7
+ begin
8
+ require 'spec/rake/spectask'
9
+ rescue LoadError
10
+ puts <<-EOS
11
+ To use rspec for testing you must install rspec gem:
12
+ gem install rspec
13
+ EOS
14
+ exit(0)
15
+ end
16
+
17
+ desc "Run all specs"
18
+ Spec::Rake::SpecTask.new do |t|
19
+ t.spec_opts = ['--options', "spec/spec.opts"]
20
+ t.spec_files = FileList['spec/**/*_spec.rb']
21
+ t.ruby_opts << "-rubygems"
22
+ end
23
+
24
+ namespace :spec do
25
+ desc "Run all specs in the presence of ActiveSupport"
26
+ Spec::Rake::SpecTask.new(:with_active_support) do |t|
27
+ t.spec_opts = ['--options', "spec/spec.opts"]
28
+ t.spec_files = FileList['spec/**/*_spec.rb']
29
+ t.ruby_opts << "-r #{File.join(File.dirname(__FILE__), *%w[gem_loader load_active_support])}"
30
+ end
31
+
32
+ desc "Run all specs in the presence of the tzinfo gem"
33
+ Spec::Rake::SpecTask.new(:with_tzinfo_gem) do |t|
34
+ t.spec_opts = ['--options', "spec/spec.opts"]
35
+ t.spec_files = FileList['spec/**/*_spec.rb']
36
+ t.ruby_opts << "-r #{File.join(File.dirname(__FILE__), *%w[gem_loader load_tzinfo_gem])}"
37
+ end
38
+ multiruby_path = `which multiruby`.chomp
39
+ if multiruby_path.length > 0 && Spec::Rake::SpecTask.instance_methods.include?("ruby_cmd")
40
+ namespace :multi do
41
+ desc "Run all specs with multiruby and ActiveSupport"
42
+ Spec::Rake::SpecTask.new(:with_active_support) do |t|
43
+ t.spec_opts = ['--options', "spec/spec.opts"]
44
+ t.spec_files = FileList['spec/**/*_spec.rb']
45
+ t.ruby_cmd = "#{multiruby_path}"
46
+ t.verbose = true
47
+ t.ruby_opts << "-r #{File.join(File.dirname(__FILE__), *%w[gem_loader load_active_support])}"
48
+ end
49
+
50
+ desc "Run all specs multiruby and the tzinfo gem"
51
+ Spec::Rake::SpecTask.new(:with_tzinfo_gem) do |t|
52
+ t.spec_opts = ['--options', "spec/spec.opts"]
53
+ t.spec_files = FileList['spec/**/*_spec.rb']
54
+ t.ruby_cmd = "#{multiruby_path}"
55
+ t.verbose = true
56
+ t.ruby_opts << "-r #{File.join(File.dirname(__FILE__), *%w[gem_loader load_tzinfo_gem])}"
57
+ end
58
+ end
59
+
60
+ desc "run all specs under multiruby with ActiveSupport and also with the tzinfo gem"
61
+ task :multi => [:"spec:multi:with_active_support", :"spec:multi:with_tzinfo_gem"]
62
+ end
63
+ end
64
+
65
+ if RUBY_VERSION.match(/^1\.8\./)
66
+ desc 'Run all specs with RCov'
67
+ Spec::Rake::SpecTask.new(:rcov) do |t|
68
+ t.spec_opts = ['--options', "spec/spec.opts"]
69
+ t.spec_files = FileList['spec/**/*_spec.rb']
70
+ t.rcov = true
71
+ t.rcov_dir = "coverage"
72
+ t.rcov_opts = ['--exclude', 'spec']
73
+ end
74
+ end
75
+
76
+ namespace :performance do
77
+ desc 'Run all benchmarks'
78
+ task :benchmark do
79
+ bench_script = File.join(File.dirname(__FILE__), '..', '/script', 'benchmark_subject')
80
+ bench_file = File.join(File.dirname(__FILE__), '..', '/performance_data', 'benchmarks.out')
81
+ cat = ">"
82
+ FileList[File.join(File.dirname(__FILE__), '..', '/performance', '*')].each do |f|
83
+ cmd = "#{bench_script} #{File.basename(f)} #{cat} #{bench_file}"
84
+ puts cmd
85
+ `#{cmd}`
86
+ cat = '>>'
87
+ end
88
+ end
89
+
90
+ desc 'Run all profiles'
91
+ task :profile do
92
+ bench_script = File.join(File.dirname(__FILE__), '..', '/script', 'profile_subject')
93
+ FileList[File.join(File.dirname(__FILE__), '..', '/performance', '*')].each do |f|
94
+ cmd = "#{bench_script} #{File.basename(f)}"
95
+ puts cmd
96
+ `#{cmd}`
97
+ end
98
+ end
99
+
100
+ end
101
+
102
+
metadata ADDED
@@ -0,0 +1,255 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: awallis-ri_cal
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.8.8
6
+ platform: ruby
7
+ authors:
8
+ - Rick DeNatale
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-02-13 00:00:00 -06:00
14
+ default_executable: awallis-ri_cal
15
+ dependencies: []
16
+
17
+ description: "A new Ruby implementation of RFC2445 iCalendar.\n\n\
18
+ The existing Ruby iCalendar libraries (e.g. icalendar, vpim) provide for parsing and generating icalendar files,\n\
19
+ but do not support important things like enumerating occurrences of repeating events.\n\n\
20
+ This is a clean-slate implementation of RFC2445.\n\n\
21
+ A Google group for discussion of this library has been set up http://groups.google.com/group/rical_gem\n "
22
+ email: rick.denatale@gmail.com
23
+ executables:
24
+ - ri_cal
25
+ extensions: []
26
+
27
+ extra_rdoc_files:
28
+ - History.txt
29
+ - README.txt
30
+ - copyrights.txt
31
+ files:
32
+ - History.txt
33
+ - Manifest.txt
34
+ - README.txt
35
+ - Rakefile
36
+ - VERSION
37
+ - bin/ri_cal
38
+ - component_attributes/alarm.yml
39
+ - component_attributes/calendar.yml
40
+ - component_attributes/component_property_defs.yml
41
+ - component_attributes/event.yml
42
+ - component_attributes/freebusy.yml
43
+ - component_attributes/journal.yml
44
+ - component_attributes/timezone.yml
45
+ - component_attributes/timezone_period.yml
46
+ - component_attributes/todo.yml
47
+ - copyrights.txt
48
+ - docs/draft-ietf-calsify-2446bis-08.txt
49
+ - docs/draft-ietf-calsify-rfc2445bis-09.txt
50
+ - docs/incrementers.txt
51
+ - docs/rfc2445.pdf
52
+ - lib/ri_cal.rb
53
+ - lib/ri_cal/component.rb
54
+ - lib/ri_cal/component/alarm.rb
55
+ - lib/ri_cal/component/calendar.rb
56
+ - lib/ri_cal/component/event.rb
57
+ - lib/ri_cal/component/freebusy.rb
58
+ - lib/ri_cal/component/journal.rb
59
+ - lib/ri_cal/component/non_standard.rb
60
+ - lib/ri_cal/component/t_z_info_timezone.rb
61
+ - lib/ri_cal/component/timezone.rb
62
+ - lib/ri_cal/component/timezone/daylight_period.rb
63
+ - lib/ri_cal/component/timezone/standard_period.rb
64
+ - lib/ri_cal/component/timezone/timezone_period.rb
65
+ - lib/ri_cal/component/todo.rb
66
+ - lib/ri_cal/core_extensions.rb
67
+ - lib/ri_cal/core_extensions/array.rb
68
+ - lib/ri_cal/core_extensions/array/conversions.rb
69
+ - lib/ri_cal/core_extensions/date.rb
70
+ - lib/ri_cal/core_extensions/date/conversions.rb
71
+ - lib/ri_cal/core_extensions/date_time.rb
72
+ - lib/ri_cal/core_extensions/date_time/conversions.rb
73
+ - lib/ri_cal/core_extensions/object.rb
74
+ - lib/ri_cal/core_extensions/object/conversions.rb
75
+ - lib/ri_cal/core_extensions/string.rb
76
+ - lib/ri_cal/core_extensions/string/conversions.rb
77
+ - lib/ri_cal/core_extensions/time.rb
78
+ - lib/ri_cal/core_extensions/time/calculations.rb
79
+ - lib/ri_cal/core_extensions/time/conversions.rb
80
+ - lib/ri_cal/core_extensions/time/tzid_access.rb
81
+ - lib/ri_cal/core_extensions/time/week_day_predicates.rb
82
+ - lib/ri_cal/fast_date_time.rb
83
+ - lib/ri_cal/floating_timezone.rb
84
+ - lib/ri_cal/invalid_property_value.rb
85
+ - lib/ri_cal/invalid_timezone_identifier.rb
86
+ - lib/ri_cal/occurrence_enumerator.rb
87
+ - lib/ri_cal/occurrence_period.rb
88
+ - lib/ri_cal/parser.rb
89
+ - lib/ri_cal/properties.rb
90
+ - lib/ri_cal/properties/alarm.rb
91
+ - lib/ri_cal/properties/calendar.rb
92
+ - lib/ri_cal/properties/event.rb
93
+ - lib/ri_cal/properties/freebusy.rb
94
+ - lib/ri_cal/properties/journal.rb
95
+ - lib/ri_cal/properties/timezone.rb
96
+ - lib/ri_cal/properties/timezone_period.rb
97
+ - lib/ri_cal/properties/todo.rb
98
+ - lib/ri_cal/property_value.rb
99
+ - lib/ri_cal/property_value/array.rb
100
+ - lib/ri_cal/property_value/cal_address.rb
101
+ - lib/ri_cal/property_value/date.rb
102
+ - lib/ri_cal/property_value/date_time.rb
103
+ - lib/ri_cal/property_value/date_time/additive_methods.rb
104
+ - lib/ri_cal/property_value/date_time/time_machine.rb
105
+ - lib/ri_cal/property_value/date_time/timezone_support.rb
106
+ - lib/ri_cal/property_value/duration.rb
107
+ - lib/ri_cal/property_value/geo.rb
108
+ - lib/ri_cal/property_value/integer.rb
109
+ - lib/ri_cal/property_value/occurrence_list.rb
110
+ - lib/ri_cal/property_value/period.rb
111
+ - lib/ri_cal/property_value/recurrence_rule.rb
112
+ - lib/ri_cal/property_value/recurrence_rule/enumeration_support_methods.rb
113
+ - lib/ri_cal/property_value/recurrence_rule/enumerator.rb
114
+ - lib/ri_cal/property_value/recurrence_rule/initialization_methods.rb
115
+ - lib/ri_cal/property_value/recurrence_rule/negative_setpos_enumerator.rb
116
+ - lib/ri_cal/property_value/recurrence_rule/numbered_span.rb
117
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer.rb
118
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_day_incrementer.rb
119
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_hour_incrementer.rb
120
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_minute_incrementer.rb
121
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_month_incrementer.rb
122
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_monthday_incrementer.rb
123
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_numbered_day_incrementer.rb
124
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_second_incrementer.rb
125
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_weekno_incrementer.rb
126
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_yearday_incrementer.rb
127
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/daily_incrementer.rb
128
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/frequency_incrementer.rb
129
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/hourly_incrementer.rb
130
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/list_incrementer.rb
131
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/minutely_incrementer.rb
132
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/monthly_incrementer.rb
133
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/null_sub_cycle_incrementer.rb
134
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/secondly_incrementer.rb
135
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/weekly_incrementer.rb
136
+ - lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/yearly_incrementer.rb
137
+ - lib/ri_cal/property_value/recurrence_rule/recurring_day.rb
138
+ - lib/ri_cal/property_value/recurrence_rule/recurring_month_day.rb
139
+ - lib/ri_cal/property_value/recurrence_rule/recurring_numbered_week.rb
140
+ - lib/ri_cal/property_value/recurrence_rule/recurring_year_day.rb
141
+ - lib/ri_cal/property_value/recurrence_rule/time_manipulation.rb
142
+ - lib/ri_cal/property_value/recurrence_rule/validations.rb
143
+ - lib/ri_cal/property_value/text.rb
144
+ - lib/ri_cal/property_value/uri.rb
145
+ - lib/ri_cal/property_value/utc_offset.rb
146
+ - lib/ri_cal/property_value/zulu_date_time.rb
147
+ - lib/ri_cal/required_timezones.rb
148
+ - parked_specs/ri_cal/claudio_a_bug_spec.rb
149
+ - performance/empty_propval/subject.rb
150
+ - performance/paris_eastern/subject.rb
151
+ - performance/penultimate_weekday/subject.rb
152
+ - performance/psm_big_enum/ical.ics
153
+ - performance/psm_big_enum/subject.rb
154
+ - performance/utah_cycling/subject.rb
155
+ - ri_cal.gemspec
156
+ - script/benchmark_subject
157
+ - script/console
158
+ - script/destroy
159
+ - script/generate
160
+ - script/profile_subject
161
+ - script/txt2html
162
+ - spec/ri_cal/bugreports_spec.rb
163
+ - spec/ri_cal/component/alarm_spec.rb
164
+ - spec/ri_cal/component/calendar_spec.rb
165
+ - spec/ri_cal/component/event_spec.rb
166
+ - spec/ri_cal/component/freebusy_spec.rb
167
+ - spec/ri_cal/component/journal_spec.rb
168
+ - spec/ri_cal/component/t_z_info_timezone_spec.rb
169
+ - spec/ri_cal/component/timezone_spec.rb
170
+ - spec/ri_cal/component/todo_spec.rb
171
+ - spec/ri_cal/component_spec.rb
172
+ - spec/ri_cal/core_extensions/string/conversions_spec.rb
173
+ - spec/ri_cal/core_extensions/time/calculations_spec.rb
174
+ - spec/ri_cal/core_extensions/time/week_day_predicates_spec.rb
175
+ - spec/ri_cal/fast_date_time_spec.rb
176
+ - spec/ri_cal/inf_loop_spec.rb
177
+ - spec/ri_cal/occurrence_enumerator_spec.rb
178
+ - spec/ri_cal/parser_spec.rb
179
+ - spec/ri_cal/property_value/date_spec.rb
180
+ - spec/ri_cal/property_value/date_time_spec.rb
181
+ - spec/ri_cal/property_value/duration_spec.rb
182
+ - spec/ri_cal/property_value/occurrence_list_spec.rb
183
+ - spec/ri_cal/property_value/period_spec.rb
184
+ - spec/ri_cal/property_value/recurrence_rule/recurring_year_day_spec.rb
185
+ - spec/ri_cal/property_value/recurrence_rule_spec.rb
186
+ - spec/ri_cal/property_value/text_spec.rb
187
+ - spec/ri_cal/property_value/utc_offset_spec.rb
188
+ - spec/ri_cal/property_value_spec.rb
189
+ - spec/ri_cal/required_timezones_spec.rb
190
+ - spec/ri_cal_spec.rb
191
+ - spec/spec.opts
192
+ - spec/spec_helper.rb
193
+ - tasks/gem_loader/load_active_support.rb
194
+ - tasks/gem_loader/load_tzinfo_gem.rb
195
+ - tasks/ri_cal.rake
196
+ - tasks/spec.rake
197
+ has_rdoc: true
198
+ homepage: http://github.com/rubyredrick/ri_cal
199
+ licenses: []
200
+
201
+ post_install_message:
202
+ rdoc_options: []
203
+
204
+ require_paths:
205
+ - lib
206
+ required_ruby_version: !ruby/object:Gem::Requirement
207
+ none: false
208
+ requirements:
209
+ - - ">="
210
+ - !ruby/object:Gem::Version
211
+ version: "0"
212
+ required_rubygems_version: !ruby/object:Gem::Requirement
213
+ none: false
214
+ requirements:
215
+ - - ">="
216
+ - !ruby/object:Gem::Version
217
+ version: "0"
218
+ requirements: []
219
+
220
+ rubyforge_project:
221
+ rubygems_version: 1.5.2
222
+ signing_key:
223
+ specification_version: 3
224
+ summary: a new implementation of RFC2445 in Ruby
225
+ test_files:
226
+ - spec/ri_cal/bugreports_spec.rb
227
+ - spec/ri_cal/component/alarm_spec.rb
228
+ - spec/ri_cal/component/calendar_spec.rb
229
+ - spec/ri_cal/component/event_spec.rb
230
+ - spec/ri_cal/component/freebusy_spec.rb
231
+ - spec/ri_cal/component/journal_spec.rb
232
+ - spec/ri_cal/component/t_z_info_timezone_spec.rb
233
+ - spec/ri_cal/component/timezone_spec.rb
234
+ - spec/ri_cal/component/todo_spec.rb
235
+ - spec/ri_cal/component_spec.rb
236
+ - spec/ri_cal/core_extensions/string/conversions_spec.rb
237
+ - spec/ri_cal/core_extensions/time/calculations_spec.rb
238
+ - spec/ri_cal/core_extensions/time/week_day_predicates_spec.rb
239
+ - spec/ri_cal/fast_date_time_spec.rb
240
+ - spec/ri_cal/inf_loop_spec.rb
241
+ - spec/ri_cal/occurrence_enumerator_spec.rb
242
+ - spec/ri_cal/parser_spec.rb
243
+ - spec/ri_cal/property_value/date_spec.rb
244
+ - spec/ri_cal/property_value/date_time_spec.rb
245
+ - spec/ri_cal/property_value/duration_spec.rb
246
+ - spec/ri_cal/property_value/occurrence_list_spec.rb
247
+ - spec/ri_cal/property_value/period_spec.rb
248
+ - spec/ri_cal/property_value/recurrence_rule/recurring_year_day_spec.rb
249
+ - spec/ri_cal/property_value/recurrence_rule_spec.rb
250
+ - spec/ri_cal/property_value/text_spec.rb
251
+ - spec/ri_cal/property_value/utc_offset_spec.rb
252
+ - spec/ri_cal/property_value_spec.rb
253
+ - spec/ri_cal/required_timezones_spec.rb
254
+ - spec/ri_cal_spec.rb
255
+ - spec/spec_helper.rb