ri_cal 0.5.2 → 0.5.3
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/History.txt +3 -0
- data/Manifest.txt +4 -0
- data/Rakefile +3 -2
- data/lib/ri_cal.rb +33 -2
- data/lib/ri_cal/component/calendar.rb +2 -1
- data/lib/ri_cal/component/timezone.rb +2 -1
- data/lib/ri_cal/component/timezone/timezone_period.rb +31 -6
- data/lib/ri_cal/component/todo.rb +1 -0
- data/lib/ri_cal/core_extensions/time/conversions.rb +2 -1
- data/lib/ri_cal/floating_timezone.rb +1 -1
- data/lib/ri_cal/occurrence_enumerator.rb +82 -47
- data/lib/ri_cal/property_value/date_time.rb +1 -0
- data/lib/ri_cal/property_value/date_time/time_machine.rb +5 -5
- data/lib/ri_cal/property_value/date_time/timezone_support.rb +9 -5
- data/profiling/ical_files/profile3.ics +3171 -0
- data/profiling/profile1.rb +97 -0
- data/profiling/profile2.rb +65 -0
- data/profiling/profile3.rb +31 -0
- data/ri_cal.gemspec +7 -4
- data/spec/ri_cal/component/timezone_spec.rb +95 -77
- data/spec/ri_cal/property_value/date_time_spec.rb +1 -1
- metadata +17 -3
@@ -265,7 +265,7 @@ END:VCALENDAR
|
|
265
265
|
@it.should == local_datetime("20090430T080000", "US/Eastern")
|
266
266
|
end
|
267
267
|
|
268
|
-
it "should return a result with a tzid of
|
268
|
+
it "should return a result with a tzid of US/Eastern" do
|
269
269
|
@it.tzid.should == "US/Eastern"
|
270
270
|
end
|
271
271
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ri_cal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- author=Rick DeNatale
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-06-01 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -22,6 +22,16 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: 1.3.0
|
24
24
|
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: ruby-prof
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: "0"
|
34
|
+
version:
|
25
35
|
- !ruby/object:Gem::Dependency
|
26
36
|
name: hoe
|
27
37
|
type: :development
|
@@ -147,6 +157,10 @@ files:
|
|
147
157
|
- lib/ri_cal/property_value/uri.rb
|
148
158
|
- lib/ri_cal/property_value/utc_offset.rb
|
149
159
|
- lib/ri_cal/required_timezones.rb
|
160
|
+
- profiling/ical_files/profile3.ics
|
161
|
+
- profiling/profile1.rb
|
162
|
+
- profiling/profile2.rb
|
163
|
+
- profiling/profile3.rb
|
150
164
|
- ri_cal.gemspec
|
151
165
|
- sample_ical_files/from_ical_dot_app/test1.ics
|
152
166
|
- script/console
|
@@ -209,7 +223,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
223
|
version:
|
210
224
|
requirements: []
|
211
225
|
|
212
|
-
rubyforge_project:
|
226
|
+
rubyforge_project: ri-cal
|
213
227
|
rubygems_version: 1.3.2
|
214
228
|
signing_key:
|
215
229
|
specification_version: 3
|