clio-gcal4ruby 0.3.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.
- data/CHANGELOG +55 -0
- data/README.markdown +136 -0
- data/lib/gcal4ruby.rb +1 -0
- data/lib/gcal4ruby/base.rb +339 -0
- data/lib/gcal4ruby/calendar.rb +320 -0
- data/lib/gcal4ruby/event.rb +501 -0
- data/lib/gcal4ruby/recurrence.rb +213 -0
- data/lib/gcal4ruby/service.rb +100 -0
- data/test/unit.rb +180 -0
- metadata +78 -0
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: clio-gcal4ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 3
|
9
|
+
- 2
|
10
|
+
version: 0.3.2
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Mike Reich
|
14
|
+
- Matt Gornick
|
15
|
+
- Jeff Casimir
|
16
|
+
- Tys von Gaza
|
17
|
+
autorequire:
|
18
|
+
bindir: bin
|
19
|
+
cert_chain: []
|
20
|
+
|
21
|
+
date: 2010-08-25 00:00:00 -06:00
|
22
|
+
default_executable:
|
23
|
+
dependencies: []
|
24
|
+
|
25
|
+
description: A full featured wrapper for interacting with the Google Calendar API
|
26
|
+
email: tys@goclio.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- README.markdown
|
35
|
+
- CHANGELOG
|
36
|
+
- lib/gcal4ruby.rb
|
37
|
+
- lib/gcal4ruby/base.rb
|
38
|
+
- lib/gcal4ruby/service.rb
|
39
|
+
- lib/gcal4ruby/calendar.rb
|
40
|
+
- lib/gcal4ruby/event.rb
|
41
|
+
- lib/gcal4ruby/recurrence.rb
|
42
|
+
- test/unit.rb
|
43
|
+
has_rdoc: true
|
44
|
+
homepage: http://github.com/tvongaza/gcal4ruby
|
45
|
+
licenses: []
|
46
|
+
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
hash: 3
|
58
|
+
segments:
|
59
|
+
- 0
|
60
|
+
version: "0"
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
hash: 3
|
67
|
+
segments:
|
68
|
+
- 0
|
69
|
+
version: "0"
|
70
|
+
requirements: []
|
71
|
+
|
72
|
+
rubyforge_project:
|
73
|
+
rubygems_version: 1.3.7
|
74
|
+
signing_key:
|
75
|
+
specification_version: 3
|
76
|
+
summary: A full featured wrapper for interacting with the Google Calendar API. This is a new branch to written by Tys von Gaza to incorporate OAuth into the Authentication
|
77
|
+
test_files:
|
78
|
+
- test/unit.rb
|