gaah 0.3.1 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ea5814be5a5b1a53d0060fed0d51b38a02f0267
4
- data.tar.gz: 076f1a0247b8a0397f405463301cfd2091e7aaf2
3
+ metadata.gz: da0bfd32ba10b45287203c0dc816ce337a0d6420
4
+ data.tar.gz: b10cb0a100589f7353b75c91f366a8c7f2f92d6b
5
5
  SHA512:
6
- metadata.gz: b2d596826b4412c222db73ee23a8b2c5d90be60096fed38a6e7c2f46b926797e68c82fcb6ccbde72b54564d6f5d31ae53dc5ede996b7984a5f1262de58978014
7
- data.tar.gz: d2733ae22804d8858821ec912beb26cbac7920f2839616625b2cebc8484123895e1935a7f8204ea22d72d22ad62cf85fc0ca57bcd7bcf702a183cdd762dd6a52
6
+ metadata.gz: 926c47ff0453cb4da79cfbcacce7e9b93c94401c6bd36c83ffb7310f518d0345ec6b2202a51e9761a73f9868f2115d7e2e7b2578289176fe52d69c51e290d8a7
7
+ data.tar.gz: a2ce0959270c1b704adcb1d8be18916c9130617ccd751cadfea48a7dd639b1190941fe254ac00d93e68c6e3ac0d559f372d6d13623af912dc01c3553fb6751bd
@@ -20,6 +20,7 @@ module Gaah
20
20
  @organizer = Who.new(json['organizer'])
21
21
  @sequence = json['sequence']
22
22
  @status = json['status']
23
+ @url = json['htmlLink']
23
24
  end
24
25
 
25
26
  def to_json(*args)
@@ -35,6 +36,8 @@ module Gaah
35
36
  transparency: @transparency,
36
37
  visibility: @visibility,
37
38
  status: @status,
39
+ url: @url,
40
+ resources: resources,
38
41
  }.to_json
39
42
  end
40
43
 
@@ -52,13 +55,13 @@ module Gaah
52
55
  def marshal_dump
53
56
  [@id, nil, @updated, @summary, @description, @location, @creator, @when,
54
57
  @attendees, @transparency, @visibility, @ical_uid, @organizer,
55
- @sequence, @status]
58
+ @sequence, @status, @url]
56
59
  end
57
60
 
58
61
  def marshal_load(array)
59
62
  @id, _, @updated, @summary, @description, @location, @creator, @when,
60
63
  @attendees, @transparency, @visibility, @ical_uid, @organizer,
61
- @sequence, @status = array
64
+ @sequence, @status, @url = array
62
65
  end
63
66
 
64
67
  private
@@ -1,3 +1,3 @@
1
1
  module Gaah
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gaah
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hwan-Joon Choi