twisted-caldav 0.0.0.1 → 0.0.0.2

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NTc4MTIxMzFiZmM0MTgwZWJiZDNkN2E2ZjFhYWVjMDJjMTMzMjhhMQ==
4
+ YTc0Yjg1OWYxZmZjYmJmOWIzNzgzMzZhMjViOGI0YWUwYjcwNmJlOQ==
5
5
  data.tar.gz: !binary |-
6
- NDUwNzIxZWIzNzcwYmUxZDQ0MjM4NjYyZGEwMGE0NGRhMWMxZTJhMw==
6
+ Yjc2NTc2ZDI2NjkyOWU0M2Q5YTg2OWQ1NWQ2OGVhOWJlNzJjZDczMQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YzdiODY5Zjc2M2JjY2U2OWVlNzdjN2RjMzE2YTYyZDYzZTJkYjI0YTgyYmFi
10
- NTI0NGFiYmIxYjlkODFhYThkZjlmNzJkYTQzMmQwNDAyMzU2Yjg3N2ZhZmVl
11
- ZDJmMDg5OTQ0ZmY4NjY5N2I1NjQ2ZWIyZDU1ZGE2MDgxZGIxYmE=
9
+ YzExNzU5YzllM2Y1YzM4ZjE0NTc3ZjFjZmQ4NTc4ODMxNTc4YTE0Y2M2M2M0
10
+ MTZhMDMyNmRjODY3NThkNDc4NWRhMWM4MjQ2NmI2Njg2ZjgwODNmN2Y2M2Iy
11
+ NDY4OGYwNGRjNWI2ZDcwYWM2ZjBlYTlhZTI0YjZkZWIwOGUwYWM=
12
12
  data.tar.gz: !binary |-
13
- MzlmNzZkMWFhNzliNmFiNjU3OTBjODQzYjNlZTdlNTdhYjFmNjFiNTE1Mzc0
14
- YzNjZDkzYzhjMWU1NDc3ZThjM2YyM2QzYTlkMGNlNjllN2NiMGI4ZWE3OTNi
15
- NmMwZGM3ZDYyNTQ5MDg4NzkwOGI0NzdiZWQ2NDA0ZTFhMWI0MWE=
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 original caldav client 4fthawaiian/ruby-caldav
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")
@@ -1,3 +1,3 @@
1
1
  module TwistedCaldav
2
- VERSION="0.0.0.1"
2
+ VERSION="0.0.0.2"
3
3
  end
@@ -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.1
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: ! " Ruby client for searching, creating, editing calendar and tasks.
70
- Tested with ubuntu based calendar server installation.\n It is a modified version
71
- of original caldav client 4fthawaiian/ruby-caldav\n"
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: []