icalendar 2.1.0 → 2.1.1
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.
- checksums.yaml +4 -4
- data/History.txt +4 -0
- data/README.md +3 -0
- data/Rakefile +1 -0
- data/icalendar.gemspec +5 -1
- data/lib/icalendar/component.rb +2 -2
- data/lib/icalendar/values/time_with_zone.rb +1 -1
- data/lib/icalendar/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2962f7c7001cbc2bdcda2edce835db80b7987be9
|
4
|
+
data.tar.gz: 443602bd7933214e17ef4a083bce5004952b099a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9233eda8abd935a3f515c46125a89b489bbff45e3fd5571abb6b01102f019f6f80d5cc1b8189d18e522f89337cb248be7b88d50d6bfb3b0f1029d5d462da32af
|
7
|
+
data.tar.gz: d3cc60211692b14e71edd51dc0cd220a240a4615f50b9b371f8064bf809f33f501dc4fa9da5e0380555295bab3b161555bb2a9ef705896a13973fb4934f7221c
|
data/History.txt
CHANGED
data/README.md
CHANGED
@@ -233,6 +233,9 @@ Parsing iCalendars
|
|
233
233
|
puts "start date-time timezone: #{event.dtstart.ical_params['tzid']}"
|
234
234
|
puts "summary: #{event.summary}"
|
235
235
|
|
236
|
+
You can also create a `Parser` instance directly, this can be used to disable
|
237
|
+
the strict parsing:
|
238
|
+
|
236
239
|
# Some calendars contain non-standard parameters (e.g. Apple iCloud
|
237
240
|
# calendars). You can pass in a `strict` value when creating a new parser.
|
238
241
|
unstrict_parser = Icalendar::Parser.new(cal_file, false)
|
data/Rakefile
CHANGED
data/icalendar.gemspec
CHANGED
@@ -15,7 +15,11 @@ Implements the iCalendar specification (RFC-5545) in Ruby. This allows
|
|
15
15
|
for the generation and parsing of .ics files, which are used by a
|
16
16
|
variety of calendaring applications.
|
17
17
|
EOD
|
18
|
-
s.post_install_message =
|
18
|
+
s.post_install_message = <<-EOM
|
19
|
+
HEADS UP! iCalendar 2.0 is not backwards-compatible with 1.x. Please see the README for the new syntax
|
20
|
+
|
21
|
+
ActiveSupport is required for TimeWithZone support, but not required for general use.
|
22
|
+
EOM
|
19
23
|
|
20
24
|
s.files = `git ls-files`.split "\n"
|
21
25
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split "\n"
|
data/lib/icalendar/component.rb
CHANGED
data/lib/icalendar/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: icalendar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Ahearn
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -197,10 +197,10 @@ files:
|
|
197
197
|
homepage: https://github.com/icalendar/icalendar
|
198
198
|
licenses: []
|
199
199
|
metadata: {}
|
200
|
-
post_install_message: |
|
201
|
-
|
200
|
+
post_install_message: |
|
202
201
|
HEADS UP! iCalendar 2.0 is not backwards-compatible with 1.x. Please see the README for the new syntax
|
203
202
|
|
203
|
+
ActiveSupport is required for TimeWithZone support, but not required for general use.
|
204
204
|
rdoc_options: []
|
205
205
|
require_paths:
|
206
206
|
- lib
|