icalPal 1.1.0 → 1.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
- checksums.yaml.gz.sig +0 -0
- data/icalPal.gemspec +1 -1
- data/lib/{Event.rb → event.rb} +3 -2
- data.tar.gz.sig +0 -0
- metadata +9 -9
- metadata.gz.sig +0 -0
- /data/lib/{Calendar.rb → calendar.rb} +0 -0
- /data/lib/{Defaults.rb → defaults.rb} +0 -0
- /data/lib/{ICalPal.rb → icalPal.rb} +0 -0
- /data/lib/{Options.rb → options.rb} +0 -0
- /data/lib/{RDT.rb → rdt.rb} +0 -0
- /data/lib/{Store.rb → store.rb} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8950d0b14f9309fd520aba9eb995c55903cdad42171b32582188f94c66e3f0c3
|
|
4
|
+
data.tar.gz: ca6c0377e5215300dead2823200e4a3383a510c18e5b9077f403acfe87d950aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1580173a395e45c255d25e755a87cd18666f87f7d30803fd98ce4d74b52b6bd149650744294bcc2d41fd267471636b6c04563e47f694a4624a41dec712609885
|
|
7
|
+
data.tar.gz: 0370bc4bada2cfa8b221017e78edad0467a58a55132e646a7b64ac770743a61b1ef9b8a85413f05a6876360cf7c0d3e7d1d29551b5d827138eb4d4273648fbad
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/icalPal.gemspec
CHANGED
data/lib/{Event.rb → event.rb}
RENAMED
|
@@ -120,12 +120,13 @@ module ICalPal
|
|
|
120
120
|
|
|
121
121
|
i = 1
|
|
122
122
|
while self['sdate'] <= stop
|
|
123
|
+
return(retval) if self['count'].positive? && i > self['count']
|
|
124
|
+
i += 1
|
|
125
|
+
|
|
123
126
|
unless @self['xdate'].any?(@self['sdate']) # Exceptions?
|
|
124
127
|
o = get_occurrences(changes)
|
|
125
128
|
o.each { |r| retval.push(r) if in_window?(r['sdate'], r['edate']) }
|
|
126
129
|
|
|
127
|
-
i += 1
|
|
128
|
-
return(retval) if self['count'].positive? && i > self['count']
|
|
129
130
|
end
|
|
130
131
|
|
|
131
132
|
apply_frequency!
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: icalPal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andy Rosen
|
|
@@ -33,7 +33,7 @@ cert_chain:
|
|
|
33
33
|
PDmWrfNO9LeQhiYLyVsOQ1xuWKDF0acQFAVIZctRp4VuZZMVqis4FRmqMdZcB/R2
|
|
34
34
|
HaQXi3DWVibRuVZ3N77DWUKG
|
|
35
35
|
-----END CERTIFICATE-----
|
|
36
|
-
date: 2023-03-
|
|
36
|
+
date: 2023-03-21 00:00:00.000000000 Z
|
|
37
37
|
dependencies: []
|
|
38
38
|
description: |
|
|
39
39
|
Inspired by icalBuddy and maintains close compatability. Includes
|
|
@@ -48,15 +48,15 @@ files:
|
|
|
48
48
|
- README.md
|
|
49
49
|
- bin/icalPal
|
|
50
50
|
- icalPal.gemspec
|
|
51
|
-
- lib/Calendar.rb
|
|
52
|
-
- lib/Defaults.rb
|
|
53
|
-
- lib/Event.rb
|
|
54
51
|
- lib/EventKit.rb
|
|
55
|
-
- lib/ICalPal.rb
|
|
56
|
-
- lib/Options.rb
|
|
57
|
-
- lib/RDT.rb
|
|
58
|
-
- lib/Store.rb
|
|
59
52
|
- lib/ToICalPal.rb
|
|
53
|
+
- lib/calendar.rb
|
|
54
|
+
- lib/defaults.rb
|
|
55
|
+
- lib/event.rb
|
|
56
|
+
- lib/icalPal.rb
|
|
57
|
+
- lib/options.rb
|
|
58
|
+
- lib/rdt.rb
|
|
59
|
+
- lib/store.rb
|
|
60
60
|
homepage: https://github.com/ajrosen/icalPal
|
|
61
61
|
licenses:
|
|
62
62
|
- GPL-3.0+
|
metadata.gz.sig
CHANGED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/data/lib/{RDT.rb → rdt.rb}
RENAMED
|
File without changes
|
/data/lib/{Store.rb → store.rb}
RENAMED
|
File without changes
|