ruboty-google_calendar 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4610104c8327b8134f4d63b118cc991032972e71
4
- data.tar.gz: a1aabd63f2b130e2339808c87b96afdae8f6e021
3
+ metadata.gz: 62af0bccad5041252df0f7b616c5aa862278072d
4
+ data.tar.gz: a3ae3fff338a5f525e30dd0248c95f0300650b4d
5
5
  SHA512:
6
- metadata.gz: 55312783086a4a429670c91e5ccc5eb0df91908cba4aa11dbbae81f86b2cffdb7f4b36140a0ca4c6e6b0abd50b25ccfca05514a6257ccbcb300d54e1b6947f0f
7
- data.tar.gz: 01c700322865650e105f848787ea347148eeac12269033499778db79d1045bfe826da553b81f03428e80c7666b859373412d5ec4dfbf8ed66ed28d961a26989a
6
+ metadata.gz: 9d84e9fa23127c157e237916730e29f459eeede23d2640def947d4d1269570076cc1409b61c632d083e7cc8785c1cb7bfb9c05283918f92142eaccfcfe9e253e
7
+ data.tar.gz: dde3131783406f5e9a1f2a4d5d313271f8a95a73a5bcc5e8e61562f1f1e15db36ec2a7de829a69c883f429f66df9a462ec9fef73a62ddf2a11d956082af1b244
data/CHANGELOG.md CHANGED
@@ -1,9 +1,16 @@
1
+ ## 0.1.1
2
+
3
+ - Fix google-api-ruby client version
4
+
1
5
  ## 0.1.0
6
+
2
7
  - Support duration option: `ruboty list events in 30 minutes` (thx @jabropt)
3
8
  - Silence on no event
4
9
 
5
10
  ## 0.0.2
11
+
6
12
  - Support all-day events
7
13
 
8
14
  ## 0.0.1
15
+
9
16
  - 1st Release :tada:
data/README.md CHANGED
@@ -45,7 +45,7 @@ curl \
45
45
  -d "client_id=${GOOGLE_CLIENT_ID}"\
46
46
  -d "client_secret=${GOOGLE_CLIENT_SECRET}"\
47
47
  -d "redirect_uri=http://localhost"\
48
- -d "grant_type=authorization_code"
48
+ -d "grant_type=authorization_code"\
49
49
  -d "code=${CODE}"\
50
50
  "https://accounts.google.com/o/oauth2/token"
51
51
  ```
@@ -1,5 +1,5 @@
1
1
  module Ruboty
2
2
  module GoogleCalendar
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -56,7 +56,7 @@ module Ruboty
56
56
 
57
57
  class Client
58
58
  APPLICATION_NAME = "ruboty-google_calendar"
59
- AUTH_URI = "https://accounts.google.com/o/oauth2/auth"
59
+ AUTH_URI = "https://accounts.google.com/o/oauth2/auth"
60
60
  SCOPE = "https://www.googleapis.com/auth/calendar"
61
61
  TOKEN_URI = "https://accounts.google.com/o/oauth2/token"
62
62
 
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.require_paths = ["lib"]
18
18
 
19
19
  spec.add_runtime_dependency "activesupport"
20
- spec.add_runtime_dependency "google-api-client"
20
+ spec.add_runtime_dependency "google-api-client", "~> 0.8.7"
21
21
  spec.add_runtime_dependency "ruboty"
22
22
  spec.add_development_dependency "bundler", "~> 1.7"
23
23
  spec.add_development_dependency "rake", "~> 10.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruboty-google_calendar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-06 00:00:00.000000000 Z
11
+ date: 2017-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: google-api-client
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: 0.8.7
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: '0'
40
+ version: 0.8.7
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: ruboty
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -117,9 +117,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  version: '0'
118
118
  requirements: []
119
119
  rubyforge_project:
120
- rubygems_version: 2.4.5
120
+ rubygems_version: 2.6.11
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: Ruboty plug-in to read schedule from Google Calendar.
124
124
  test_files: []
125
- has_rdoc: