sdague-icalendar 1.0.2.2 → 1.0.2.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/Rakefile +1 -3
- data/lib/icalendar.rb +1 -1
- data/lib/icalendar/tzinfo.rb +4 -1
- metadata +3 -11
data/Rakefile
CHANGED
@@ -5,7 +5,7 @@ require 'rake/rdoctask'
|
|
5
5
|
require 'rake/clean'
|
6
6
|
require 'rake/contrib/sshpublisher'
|
7
7
|
|
8
|
-
PKG_VERSION = "1.0.2.
|
8
|
+
PKG_VERSION = "1.0.2.3"
|
9
9
|
|
10
10
|
$VERBOSE = nil
|
11
11
|
TEST_CHANGES_SINCE = Time.now - 600 # Recent tests = changed in last 10 minutes
|
@@ -74,8 +74,6 @@ spec = Gem::Specification.new do |s|
|
|
74
74
|
s.extra_rdoc_files = ["README", "COPYING", "GPL"]
|
75
75
|
s.rdoc_options.concat ['--main', 'README']
|
76
76
|
|
77
|
-
s.add_dependency("tzinfo", ["> 0.0.0"])
|
78
|
-
|
79
77
|
s.author = "Sean Dague"
|
80
78
|
s.email = "sean@dague.net"
|
81
79
|
end
|
data/lib/icalendar.rb
CHANGED
data/lib/icalendar/tzinfo.rb
CHANGED
@@ -10,6 +10,8 @@
|
|
10
10
|
# intent on making it very easy to load in tzinfo data for generating
|
11
11
|
# ical events. With this you can do the following:
|
12
12
|
#
|
13
|
+
# require "icalendar/tzinfo"
|
14
|
+
#
|
13
15
|
# estart = DateTime.new(2008, 12, 29, 8, 0, 0)
|
14
16
|
# eend = DateTime.new(2008, 12, 29, 11, 0, 0)
|
15
17
|
# tstring = "America/Chicago"
|
@@ -36,7 +38,8 @@
|
|
36
38
|
# seems to work fine (tested in Mozilla Thunderbird + Lightning).
|
37
39
|
# Future goal would be making this better.
|
38
40
|
|
39
|
-
require "
|
41
|
+
# require "rubygems"
|
42
|
+
# require "tzinfo"
|
40
43
|
|
41
44
|
module TZInfo
|
42
45
|
class Timezone
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sdague-icalendar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.2.
|
4
|
+
version: 1.0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sean Dague
|
@@ -11,16 +11,8 @@ cert_chain: []
|
|
11
11
|
|
12
12
|
date: 2008-12-22 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
16
|
-
name: tzinfo
|
17
|
-
version_requirement:
|
18
|
-
version_requirements: !ruby/object:Gem::Requirement
|
19
|
-
requirements:
|
20
|
-
- - ">"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 0.0.0
|
23
|
-
version:
|
14
|
+
dependencies: []
|
15
|
+
|
24
16
|
description: Implements the iCalendar specification (RFC-2445) in Ruby. This allows for the generation and parsing of .ics files, which are used by a variety of calendaring applications.
|
25
17
|
email: sean@dague.net
|
26
18
|
executables: []
|