google_calendar 0.5.2 → 0.6.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.
- checksums.yaml +4 -4
- data/.travis.yml +0 -2
- data/Gemfile.lock +10 -11
- data/README.rdoc +3 -0
- data/google_calendar.gemspec +4 -4
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8db07fd559abd732624c1e225ba002a2c3a4f679
|
|
4
|
+
data.tar.gz: 1471f5e7c39a8b599dab84d8bc42a66f340115e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7257873946c722bb4edfa3f937bb03e5fbe12ca58ac62a15f947f2134bafac2a8e1e08bedf445dc52c25705ae3dc00e95acecb10e8775f118ef59d6d06b1d53b
|
|
7
|
+
data.tar.gz: 42c07bb8b693b51da005df9fd66e754e0d7ff7d72f37b47e63f4ad636932d7942c6415c440373fd25fc4c35297a60d55e7fd6e8bbef82cf282ec4d62bc491757
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
google_calendar (0.
|
|
4
|
+
google_calendar (0.6.0)
|
|
5
5
|
TimezoneParser (~> 0.2.0)
|
|
6
|
-
json (~>
|
|
7
|
-
signet (~> 0.
|
|
6
|
+
json (~> 2.0)
|
|
7
|
+
signet (~> 0.7)
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: http://rubygems.org/
|
|
@@ -15,17 +15,17 @@ GEM
|
|
|
15
15
|
addressable (2.4.0)
|
|
16
16
|
ansi (1.5.0)
|
|
17
17
|
builder (3.2.2)
|
|
18
|
-
codeclimate-test-reporter (0.
|
|
18
|
+
codeclimate-test-reporter (0.6.0)
|
|
19
19
|
simplecov (>= 0.7.1, < 1.0.0)
|
|
20
20
|
docile (1.1.5)
|
|
21
21
|
faraday (0.9.2)
|
|
22
22
|
multipart-post (>= 1.2, < 3)
|
|
23
23
|
insensitive_hash (0.3.3)
|
|
24
|
-
json (
|
|
24
|
+
json (2.0.1)
|
|
25
25
|
jwt (1.5.4)
|
|
26
26
|
metaclass (0.0.4)
|
|
27
27
|
minitest (5.9.0)
|
|
28
|
-
minitest-reporters (1.1.
|
|
28
|
+
minitest-reporters (1.1.10)
|
|
29
29
|
ansi
|
|
30
30
|
builder
|
|
31
31
|
minitest (>= 5.0)
|
|
@@ -36,18 +36,17 @@ GEM
|
|
|
36
36
|
multipart-post (2.0.0)
|
|
37
37
|
rake (11.2.2)
|
|
38
38
|
rb-fsevent (0.9.7)
|
|
39
|
-
rdoc (4.
|
|
40
|
-
json (~> 1.4)
|
|
39
|
+
rdoc (4.1.0)
|
|
41
40
|
ruby-progressbar (1.8.1)
|
|
42
41
|
shoulda-context (1.2.1)
|
|
43
|
-
signet (0.7.
|
|
42
|
+
signet (0.7.3)
|
|
44
43
|
addressable (~> 2.3)
|
|
45
44
|
faraday (~> 0.9)
|
|
46
45
|
jwt (~> 1.5)
|
|
47
46
|
multi_json (~> 1.10)
|
|
48
|
-
simplecov (0.
|
|
47
|
+
simplecov (0.12.0)
|
|
49
48
|
docile (~> 1.1.0)
|
|
50
|
-
json (
|
|
49
|
+
json (>= 1.8, < 3)
|
|
51
50
|
simplecov-html (~> 0.10.0)
|
|
52
51
|
simplecov-html (0.10.0)
|
|
53
52
|
terminal-notifier-guard (1.7.0)
|
data/README.rdoc
CHANGED
|
@@ -89,6 +89,9 @@ A fast lightweight and minimalist wrapper around the {Google Calendar}[https://w
|
|
|
89
89
|
|
|
90
90
|
This sample code is located in readme_code.rb in the root folder.
|
|
91
91
|
|
|
92
|
+
== Ruby Support
|
|
93
|
+
The current google_calendar gem supports Ruby 2.1 and higher -- because of the json gem dependency. We maintain support for Ruby 1.8.7, 1.9.3 and 2.0 on different branches.
|
|
94
|
+
|
|
92
95
|
== Notes
|
|
93
96
|
* This is not a complete implementation of the calendar api, it just includes the features we needed to support our internal calendar integration. Feel free to add additional features and we will happily integrate them.
|
|
94
97
|
* Did you get an SSL exception? If so take a look at this: https://gist.github.com/fnichol/867550
|
data/google_calendar.gemspec
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "google_calendar"
|
|
5
|
-
s.version = "0.
|
|
6
|
-
s.date = "2016-
|
|
5
|
+
s.version = "0.6.0"
|
|
6
|
+
s.date = "2016-07-15"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
9
9
|
|
|
@@ -26,8 +26,8 @@ Gem::Specification.new do |s|
|
|
|
26
26
|
s.require_paths = ["lib"]
|
|
27
27
|
s.rubygems_version = "2.2.2"
|
|
28
28
|
|
|
29
|
-
s.add_runtime_dependency(%q<signet>, ["~> 0.
|
|
30
|
-
s.add_runtime_dependency(%q<json>, ["~>
|
|
29
|
+
s.add_runtime_dependency(%q<signet>, ["~> 0.7"])
|
|
30
|
+
s.add_runtime_dependency(%q<json>, ["~> 2.0"])
|
|
31
31
|
s.add_runtime_dependency(%q<TimezoneParser>, ["~> 0.2.0"])
|
|
32
32
|
|
|
33
33
|
s.add_development_dependency(%q<terminal-notifier-guard>, ["~> 1.6"])
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google_calendar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steve Zich
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-07-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: signet
|
|
@@ -16,28 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0.
|
|
19
|
+
version: '0.7'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0.
|
|
26
|
+
version: '0.7'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: json
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '2.0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '2.0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: TimezoneParser
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
247
247
|
version: '0'
|
|
248
248
|
requirements: []
|
|
249
249
|
rubyforge_project:
|
|
250
|
-
rubygems_version: 2.4
|
|
250
|
+
rubygems_version: 2.6.4
|
|
251
251
|
signing_key:
|
|
252
252
|
specification_version: 4
|
|
253
253
|
summary: A lightweight Google Calendar API wrapper
|