rubyredrick-ri_cal 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,12 @@
1
+ === 0.5.1
2
+ * Fixed README to acknowledge release on RubyForge
3
+ === 0.5.0 rubyforge release candidate Tue May 26 10:26:43 2009 -0400
4
+ * Added OccurrenceEnumerator#zulu_occurrence_range
5
+ === 0.0.11 Sat May 23 18:24:57 2009 -0400
6
+ * Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/5
7
+ * Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/9
8
+ === 0.0.10
9
+ * Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/8
1
10
  === 0.0.9
2
11
  * Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/4
3
12
  Missing comparison methods in PropertyValue::Date
@@ -10,8 +19,7 @@
10
19
  Missing arithmetic methods in PropertyValue::Date
11
20
  * Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/3
12
21
  Components with no recurrence rules or rdate properties failed on enumeration, they now
13
- will enumerate a single occurrence
14
-
22
+ will enumerate a single occurrence
15
23
  === 0.0.7
16
24
  * Fixed a bug relating to properly recognizing ActiveRecord::TimeWithZone
17
25
  * DATETIME propertyvalues will now return an instance of TimeWithZone instead of DateTime when
data/README.txt CHANGED
@@ -1,12 +1,9 @@
1
1
  == RI_CAL -- a new implementation of RFC2445 in Ruby
2
- http://rical.rubyforge.org/
2
+ http://ri-cal.rubyforge.org/
3
3
 
4
4
  by Rick DeNatale
5
5
  == DESCRIPTION:
6
6
 
7
- This is an UNOFFICIAL version. The public official version will be released on RubyForge. Github will be used
8
- for interim versions. USE THIS VERSION AT YOUR OWN RISK.
9
-
10
7
  A new Ruby implementation of RFC2445 iCalendar.
11
8
 
12
9
  The existing Ruby iCalendar libraries (e.g. icalendar, vpim) provide for parsing and generating icalendar files,
data/Rakefile CHANGED
@@ -1,7 +1,7 @@
1
1
  #- ©2009 Rick DeNatale
2
2
  #- All rights reserved. Refer to the file README.txt for the license
3
3
  #
4
- %w[rubygems rake rake/clean fileutils newgem].each { |f| require f }
4
+ %w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
5
5
  require File.dirname(__FILE__) + '/lib/ri_cal'
6
6
 
7
7
  # Generate all the Rake tasks
data/lib/ri_cal.rb CHANGED
@@ -11,7 +11,7 @@ module RiCal
11
11
  autoload :OccurrenceEnumerator, "#{my_dir}/ri_cal/occurrence_enumerator.rb"
12
12
 
13
13
  # :stopdoc:
14
- VERSION = '0.5.0'
14
+ VERSION = '0.5.1'
15
15
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
16
16
  PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
17
17
 
data/ri_cal.gemspec CHANGED
@@ -2,16 +2,13 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{ri_cal}
5
- s.version = "0.5.0"
5
+ s.version = "0.5.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["author=Rick DeNatale"]
9
9
  s.date = %q{2009-05-26}
10
10
  s.default_executable = %q{ri_cal}
11
- s.description = %q{This is an UNOFFICIAL version. The public official version will be released on RubyForge. Github will be used
12
- for interim versions. USE THIS VERSION AT YOUR OWN RISK.
13
-
14
- A new Ruby implementation of RFC2445 iCalendar.
11
+ s.description = %q{A new Ruby implementation of RFC2445 iCalendar.
15
12
 
16
13
  The existing Ruby iCalendar libraries (e.g. icalendar, vpim) provide for parsing and generating icalendar files,
17
14
  but do not support important things like enumerating occurrences of repeating events.
@@ -24,12 +21,12 @@ A Google group for discussion of this library has been set up http://groups.goog
24
21
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt", "copyrights.txt", "docs/draft-ietf-calsify-2446bis-08.txt", "docs/draft-ietf-calsify-rfc2445bis-09.txt", "docs/incrementers.txt"]
25
22
  s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/ri_cal", "component_attributes/alarm.yml", "component_attributes/calendar.yml", "component_attributes/component_property_defs.yml", "component_attributes/event.yml", "component_attributes/freebusy.yml", "component_attributes/journal.yml", "component_attributes/timezone.yml", "component_attributes/timezone_period.yml", "component_attributes/todo.yml", "copyrights.txt", "docs/draft-ietf-calsify-2446bis-08.txt", "docs/draft-ietf-calsify-rfc2445bis-09.txt", "docs/incrementers.txt", "docs/rfc2445.pdf", "lib/ri_cal.rb", "lib/ri_cal/component.rb", "lib/ri_cal/component/alarm.rb", "lib/ri_cal/component/calendar.rb", "lib/ri_cal/component/event.rb", "lib/ri_cal/component/freebusy.rb", "lib/ri_cal/component/journal.rb", "lib/ri_cal/component/t_z_info_timezone.rb", "lib/ri_cal/component/timezone.rb", "lib/ri_cal/component/timezone/daylight_period.rb", "lib/ri_cal/component/timezone/standard_period.rb", "lib/ri_cal/component/timezone/timezone_period.rb", "lib/ri_cal/component/todo.rb", "lib/ri_cal/core_extensions.rb", "lib/ri_cal/core_extensions/array.rb", "lib/ri_cal/core_extensions/array/conversions.rb", "lib/ri_cal/core_extensions/date.rb", "lib/ri_cal/core_extensions/date/conversions.rb", "lib/ri_cal/core_extensions/date_time.rb", "lib/ri_cal/core_extensions/date_time/conversions.rb", "lib/ri_cal/core_extensions/object.rb", "lib/ri_cal/core_extensions/object/conversions.rb", "lib/ri_cal/core_extensions/string.rb", "lib/ri_cal/core_extensions/string/conversions.rb", "lib/ri_cal/core_extensions/time.rb", "lib/ri_cal/core_extensions/time/calculations.rb", "lib/ri_cal/core_extensions/time/conversions.rb", "lib/ri_cal/core_extensions/time/tzid_access.rb", "lib/ri_cal/core_extensions/time/week_day_predicates.rb", "lib/ri_cal/floating_timezone.rb", "lib/ri_cal/invalid_property_value.rb", "lib/ri_cal/invalid_timezone_identifer.rb", "lib/ri_cal/occurrence_enumerator.rb", "lib/ri_cal/occurrence_period.rb", "lib/ri_cal/parser.rb", "lib/ri_cal/properties/alarm.rb", "lib/ri_cal/properties/calendar.rb", "lib/ri_cal/properties/event.rb", "lib/ri_cal/properties/freebusy.rb", "lib/ri_cal/properties/journal.rb", "lib/ri_cal/properties/timezone.rb", "lib/ri_cal/properties/timezone_period.rb", "lib/ri_cal/properties/todo.rb", "lib/ri_cal/property_value.rb", "lib/ri_cal/property_value/array.rb", "lib/ri_cal/property_value/cal_address.rb", "lib/ri_cal/property_value/date.rb", "lib/ri_cal/property_value/date_time.rb", "lib/ri_cal/property_value/date_time/additive_methods.rb", "lib/ri_cal/property_value/date_time/time_machine.rb", "lib/ri_cal/property_value/date_time/timezone_support.rb", "lib/ri_cal/property_value/duration.rb", "lib/ri_cal/property_value/geo.rb", "lib/ri_cal/property_value/integer.rb", "lib/ri_cal/property_value/occurrence_list.rb", "lib/ri_cal/property_value/period.rb", "lib/ri_cal/property_value/recurrence_rule.rb", "lib/ri_cal/property_value/recurrence_rule/enumeration_support_methods.rb", "lib/ri_cal/property_value/recurrence_rule/enumerator.rb", "lib/ri_cal/property_value/recurrence_rule/initialization_methods.rb", "lib/ri_cal/property_value/recurrence_rule/negative_setpos_enumerator.rb", "lib/ri_cal/property_value/recurrence_rule/numbered_span.rb", "lib/ri_cal/property_value/recurrence_rule/occurence_incrementer.rb", "lib/ri_cal/property_value/recurrence_rule/recurring_day.rb", "lib/ri_cal/property_value/recurrence_rule/recurring_month_day.rb", "lib/ri_cal/property_value/recurrence_rule/recurring_numbered_week.rb", "lib/ri_cal/property_value/recurrence_rule/recurring_year_day.rb", "lib/ri_cal/property_value/recurrence_rule/validations.rb", "lib/ri_cal/property_value/text.rb", "lib/ri_cal/property_value/uri.rb", "lib/ri_cal/property_value/utc_offset.rb", "lib/ri_cal/required_timezones.rb", "ri_cal.gemspec", "sample_ical_files/from_ical_dot_app/test1.ics", "script/console", "script/destroy", "script/generate", "script/txt2html", "spec/ri_cal/component/alarm_spec.rb", "spec/ri_cal/component/calendar_spec.rb", "spec/ri_cal/component/event_spec.rb", "spec/ri_cal/component/freebusy_spec.rb", "spec/ri_cal/component/journal_spec.rb", "spec/ri_cal/component/t_z_info_timezone_spec.rb", "spec/ri_cal/component/timezone_spec.rb", "spec/ri_cal/component/todo_spec.rb", "spec/ri_cal/component_spec.rb", "spec/ri_cal/core_extensions/string/conversions_spec.rb", "spec/ri_cal/core_extensions/time/calculations_spec.rb", "spec/ri_cal/core_extensions/time/week_day_predicates_spec.rb", "spec/ri_cal/occurrence_enumerator_spec.rb", "spec/ri_cal/parser_spec.rb", "spec/ri_cal/property_value/date_spec.rb", "spec/ri_cal/property_value/date_time_spec.rb", "spec/ri_cal/property_value/duration_spec.rb", "spec/ri_cal/property_value/occurrence_list_spec.rb", "spec/ri_cal/property_value/period_spec.rb", "spec/ri_cal/property_value/recurrence_rule/recurring_year_day_spec.rb", "spec/ri_cal/property_value/recurrence_rule_spec.rb", "spec/ri_cal/property_value/text_spec.rb", "spec/ri_cal/property_value/utc_offset_spec.rb", "spec/ri_cal/property_value_spec.rb", "spec/ri_cal/required_timezones_spec.rb", "spec/ri_cal_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/gem_loader/load_active_support.rb", "tasks/gem_loader/load_tzinfo_gem.rb", "tasks/ri_cal.rake", "tasks/spec.rake"]
26
23
  s.has_rdoc = true
27
- s.homepage = %q{http://rical.rubyforge.org/}
24
+ s.homepage = %q{http://ri-cal.rubyforge.org/}
28
25
  s.rdoc_options = ["--main", "README.txt"]
29
26
  s.require_paths = ["lib"]
30
27
  s.rubyforge_project = %q{rical}
31
28
  s.rubygems_version = %q{1.3.2}
32
- s.summary = %q{This is an UNOFFICIAL version}
29
+ s.summary = %q{A new Ruby implementation of RFC2445 iCalendar}
33
30
 
34
31
  if s.respond_to? :specification_version then
35
32
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyredrick-ri_cal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - author=Rick DeNatale
@@ -32,7 +32,7 @@ dependencies:
32
32
  - !ruby/object:Gem::Version
33
33
  version: 1.8.0
34
34
  version:
35
- description: This is an UNOFFICIAL version. The public official version will be released on RubyForge. Github will be used for interim versions. USE THIS VERSION AT YOUR OWN RISK. A new Ruby implementation of RFC2445 iCalendar. The existing Ruby iCalendar libraries (e.g. icalendar, vpim) provide for parsing and generating icalendar files, but do not support important things like enumerating occurrences of repeating events. This is a clean-slate implementation of RFC2445. A Google group for discussion of this library has been set up http://groups.google.com/group/rical_gem
35
+ description: A new Ruby implementation of RFC2445 iCalendar. The existing Ruby iCalendar libraries (e.g. icalendar, vpim) provide for parsing and generating icalendar files, but do not support important things like enumerating occurrences of repeating events. This is a clean-slate implementation of RFC2445. A Google group for discussion of this library has been set up http://groups.google.com/group/rical_gem
36
36
  email:
37
37
  - rick.denatale@gmail.com
38
38
  executables:
@@ -178,7 +178,7 @@ files:
178
178
  - tasks/ri_cal.rake
179
179
  - tasks/spec.rake
180
180
  has_rdoc: true
181
- homepage: http://rical.rubyforge.org/
181
+ homepage: http://ri-cal.rubyforge.org/
182
182
  post_install_message:
183
183
  rdoc_options:
184
184
  - --main
@@ -203,6 +203,6 @@ rubyforge_project: rical
203
203
  rubygems_version: 1.2.0
204
204
  signing_key:
205
205
  specification_version: 3
206
- summary: This is an UNOFFICIAL version
206
+ summary: A new Ruby implementation of RFC2445 iCalendar
207
207
  test_files: []
208
208