protocol-caldav 1.0.0

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.
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: protocol-caldav
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Nathan K
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-01 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rexml
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: scampi
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: 0.1.7
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: 0.1.7
40
+ description: |
41
+ Pure protocol code for CalDAV (RFC 4791) and CardDAV (RFC 6352).
42
+ No rack, no async, no I/O. Pair with async-caldav for a server.
43
+ email:
44
+ - nathankidd@hey.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - lib/protocol/caldav.rb
50
+ - lib/protocol/caldav/collection.rb
51
+ - lib/protocol/caldav/constants.rb
52
+ - lib/protocol/caldav/content_line.rb
53
+ - lib/protocol/caldav/ctag.rb
54
+ - lib/protocol/caldav/etag.rb
55
+ - lib/protocol/caldav/filter/addressbook.rb
56
+ - lib/protocol/caldav/filter/calendar.rb
57
+ - lib/protocol/caldav/filter/match.rb
58
+ - lib/protocol/caldav/filter/parser.rb
59
+ - lib/protocol/caldav/ical/component.rb
60
+ - lib/protocol/caldav/ical/expand.rb
61
+ - lib/protocol/caldav/ical/freebusy.rb
62
+ - lib/protocol/caldav/ical/parser.rb
63
+ - lib/protocol/caldav/ical/property.rb
64
+ - lib/protocol/caldav/ical/rrule.rb
65
+ - lib/protocol/caldav/item.rb
66
+ - lib/protocol/caldav/multistatus.rb
67
+ - lib/protocol/caldav/path.rb
68
+ - lib/protocol/caldav/storage.rb
69
+ - lib/protocol/caldav/vcard/card.rb
70
+ - lib/protocol/caldav/vcard/parser.rb
71
+ - lib/protocol/caldav/version.rb
72
+ - lib/protocol/caldav/xml.rb
73
+ homepage: https://github.com/n-at-han-k/protocol-caldav
74
+ licenses:
75
+ - Apache-2.0
76
+ metadata:
77
+ homepage_uri: https://github.com/n-at-han-k/protocol-caldav
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: 3.2.0
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubygems_version: 3.7.2
93
+ specification_version: 4
94
+ summary: 'CalDAV/CardDAV wire protocol: XML rendering, path semantics, ETags, filters'
95
+ test_files: []