calendar-assistant 0.12.0 → 0.13.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29d85ac34085d155d856f225a927b3701672941c5ed7fa89444bc87961fd6457
4
- data.tar.gz: 49cc70803cd297800007797216deab76bde54d08e7030d5135c4e5369b87ba48
3
+ metadata.gz: b9b36795650bc886d212685306086c8246386f3c42c6c9fd96c8e6a6160c8c5d
4
+ data.tar.gz: 7483de7e5f91466a4ba6a57123a2ee2a560a0b7c7d01740c51ee9ce129642e19
5
5
  SHA512:
6
- metadata.gz: d9538fb46c4de38f8cea5e066cfef0bda25b389e7f9c0471216dd15c7bcc90ab1964cabd97e20f032cd0a1fc710a61e10694a9558c4c14bf0189256eb35ea877
7
- data.tar.gz: b2bc87b8f95a6aff6025a0b4bbabbf8fccffd958fdc62ce7aa1ed433e9fd9b8c2c3a70a7adb3145a643f3b615d42b0567b5ce8e1930e7270dab979bfd66f605c
6
+ metadata.gz: 5782aef4b890f1ae811d5bd34b0f62bfb5b4801f13e57b6acb536e64ad9880aed2572f51e5b9d57d911e42665316f0ae9d45dde18841fa5d68f374d19a6a8a7d
7
+ data.tar.gz: e4aa2b60676902a910fba44d7586e4790f658cff99bca35ab0357056c68d9a8b717d35eba2296f0791d2b1dd999eba21695b7f6189c52f2d3b3747b4192fe0b6
@@ -35,7 +35,7 @@ class CalendarAssistant
35
35
  end
36
36
 
37
37
  def new(event_attributes)
38
- event = Google::Apis::CalendarV3::Event.new DateHelpers.cast_dates(event_attributes)
38
+ event = Google::Apis::CalendarV3::Event.new(**DateHelpers.cast_dates(event_attributes))
39
39
  event.visibility ||= config.event_visibility
40
40
  CalendarAssistant::Event.new(event, config: config)
41
41
  end
@@ -52,7 +52,7 @@ class CalendarAssistant
52
52
  end
53
53
 
54
54
  def update(event, attributes)
55
- event.update! DateHelpers.cast_dates(attributes)
55
+ event.update!(**DateHelpers.cast_dates(attributes))
56
56
  updated_event = @service.update_event @calendar_id, event.id, event
57
57
  CalendarAssistant::Event.new(updated_event, config: config)
58
58
  end
@@ -1,3 +1,3 @@
1
1
  class CalendarAssistant
2
- VERSION = "0.12.0"
2
+ VERSION = "0.13.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calendar-assistant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-04-09 00:00:00.000000000 Z
12
+ date: 2020-05-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -82,7 +82,7 @@ dependencies:
82
82
  version: '0.24'
83
83
  - - "<"
84
84
  - !ruby/object:Gem::Version
85
- version: '0.38'
85
+ version: '0.40'
86
86
  type: :runtime
87
87
  prerelease: false
88
88
  version_requirements: !ruby/object:Gem::Requirement
@@ -92,7 +92,7 @@ dependencies:
92
92
  version: '0.24'
93
93
  - - "<"
94
94
  - !ruby/object:Gem::Version
95
- version: '0.38'
95
+ version: '0.40'
96
96
  - !ruby/object:Gem::Dependency
97
97
  name: launchy
98
98
  requirement: !ruby/object:Gem::Requirement
@@ -161,14 +161,14 @@ dependencies:
161
161
  requirements:
162
162
  - - "~>"
163
163
  - !ruby/object:Gem::Version
164
- version: 0.1.2
164
+ version: 0.1.4
165
165
  type: :runtime
166
166
  prerelease: false
167
167
  version_requirements: !ruby/object:Gem::Requirement
168
168
  requirements:
169
169
  - - "~>"
170
170
  - !ruby/object:Gem::Version
171
- version: 0.1.2
171
+ version: 0.1.4
172
172
  - !ruby/object:Gem::Dependency
173
173
  name: aruba
174
174
  requirement: !ruby/object:Gem::Requirement
@@ -362,7 +362,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
362
362
  - !ruby/object:Gem::Version
363
363
  version: '0'
364
364
  requirements: []
365
- rubygems_version: 3.0.8
365
+ rubygems_version: 3.1.2
366
366
  signing_key:
367
367
  specification_version: 4
368
368
  summary: A command-line tool to help manage your Google Calendar.