intouch-gcal4ruby 0.5.7
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 +93 -0
- data/README.md +131 -0
- data/lib/gcal4ruby/calendar.rb +375 -0
- data/lib/gcal4ruby/event.rb +456 -0
- data/lib/gcal4ruby/recurrence.rb +302 -0
- data/lib/gcal4ruby/service.rb +168 -0
- data/lib/gcal4ruby.rb +1 -0
- data/test/unit.rb +228 -0
- metadata +71 -0
metadata
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: intouch-gcal4ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.5.7
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Mike Reich
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-04-29 00:00:00 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: gdata4ruby
|
17
|
+
prerelease: false
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.1.5
|
24
|
+
type: :runtime
|
25
|
+
version_requirements: *id001
|
26
|
+
description: "GCal4Ruby is a Ruby Gem that can be used to interact with the current version of the Google Calendar API. GCal4Ruby provides the following features: Create and edit calendar events, Add and invite users to events, Set reminders, Make recurring events."
|
27
|
+
email: mike@seabourneconsulting.com
|
28
|
+
executables: []
|
29
|
+
|
30
|
+
extensions: []
|
31
|
+
|
32
|
+
extra_rdoc_files: []
|
33
|
+
|
34
|
+
files:
|
35
|
+
- README.md
|
36
|
+
- CHANGELOG
|
37
|
+
- lib/gcal4ruby.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
|
+
homepage: http://cookingandcoding.com/gcal4ruby/
|
44
|
+
licenses: []
|
45
|
+
|
46
|
+
post_install_message:
|
47
|
+
rdoc_options: []
|
48
|
+
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: "0"
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: "0"
|
63
|
+
requirements: []
|
64
|
+
|
65
|
+
rubyforge_project: gcal4ruby
|
66
|
+
rubygems_version: 1.7.2
|
67
|
+
signing_key:
|
68
|
+
specification_version: 3
|
69
|
+
summary: A full featured wrapper for interacting with the Google Calendar API
|
70
|
+
test_files:
|
71
|
+
- test/unit.rb
|