twisted-caldav 0.0.0.1 → 0.0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +22 -1
- data/lib/twisted-caldav/version.rb +1 -1
- data/twisted-caldav.gemspec +0 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YTc0Yjg1OWYxZmZjYmJmOWIzNzgzMzZhMjViOGI0YWUwYjcwNmJlOQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Yjc2NTc2ZDI2NjkyOWU0M2Q5YTg2OWQ1NWQ2OGVhOWJlNzJjZDczMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YzExNzU5YzllM2Y1YzM4ZjE0NTc3ZjFjZmQ4NTc4ODMxNTc4YTE0Y2M2M2M0
|
10
|
+
MTZhMDMyNmRjODY3NThkNDc4NWRhMWM4MjQ2NmI2Njg2ZjgwODNmN2Y2M2Iy
|
11
|
+
NDY4OGYwNGRjNWI2ZDcwYWM2ZjBlYTlhZTI0YjZkZWIwOGUwYWM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
N2QwOTQ2ODRiMDczNWFiMGQzNGVlZmUxZDMxYTNmNzFhMWY0ZDU4NmZiZWMz
|
14
|
+
ZDlhNjU3ZmVmOTk5NDYyMGVmMDhjMjExY2Q0Zjk5YzA0NDFhNjkxYjU2MTFl
|
15
|
+
NmFkNTJjMGEyM2I2YjhhZjEwMTc0YjcwNGM1NzQwNDJlYTdiZGQ=
|
data/README.md
CHANGED
@@ -3,4 +3,25 @@ twisted-caldav
|
|
3
3
|
|
4
4
|
Ruby client for searching, creating, editing calendar and tasks. Tested with ubuntu based calendar server installation.
|
5
5
|
|
6
|
-
It is a modified version of
|
6
|
+
It is a modified version of another caldav client under MIT license
|
7
|
+
https://github.com/n8vision/caldav-icloud
|
8
|
+
|
9
|
+
##INSTALL
|
10
|
+
|
11
|
+
gem install 'twisted-caldav'
|
12
|
+
|
13
|
+
##USAGE
|
14
|
+
|
15
|
+
require ’twisted-caldav'
|
16
|
+
|
17
|
+
u = "user1"
|
18
|
+
|
19
|
+
cal = TwistedCaldav::Client.new(:uri => "http://yourserver.com:8008/calendars/users/#{u}/calendar/", :user => u , :password => "xxxxxx")
|
20
|
+
|
21
|
+
###FIND EVENTS
|
22
|
+
|
23
|
+
result = cal.find_events(:start => "2014-04-01", :end => "2014-04-15")
|
24
|
+
|
25
|
+
###CREATE EVENT
|
26
|
+
|
27
|
+
result = cal.create_event(:start => "2014-04-12 10:00", :end => "2014-04-12 12:00", :title => "Meeting With Me", :description => "Meeting about nothing...:D")
|
data/twisted-caldav.gemspec
CHANGED
@@ -22,7 +22,6 @@ Gem::Specification.new do |s|
|
|
22
22
|
|
23
23
|
s.description = <<-DESC
|
24
24
|
Ruby client for searching, creating, editing calendar and tasks. Tested with ubuntu based calendar server installation.
|
25
|
-
It is a modified version of original caldav client 4fthawaiian/ruby-caldav
|
26
25
|
DESC
|
27
26
|
|
28
27
|
s.files = `git ls-files`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twisted-caldav
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.0.
|
4
|
+
version: 0.0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Siddhartha Mukherjee
|
@@ -66,9 +66,10 @@ dependencies:
|
|
66
66
|
- - ~>
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 3.x
|
69
|
-
description: !
|
70
|
-
Tested with ubuntu based calendar server installation
|
71
|
-
|
69
|
+
description: ! ' Ruby client for searching, creating, editing calendar and tasks.
|
70
|
+
Tested with ubuntu based calendar server installation.
|
71
|
+
|
72
|
+
'
|
72
73
|
email:
|
73
74
|
- mukherjee.siddhartha@gmail.com
|
74
75
|
executables: []
|