gaah 0.3.3 → 0.3.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gaah/calendar/calendar.rb +8 -2
- data/lib/gaah/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e006a91d3d48f203defa91abb660ec9c35daeb55
|
4
|
+
data.tar.gz: 4d938188372432fc7b7863174911a709bdb97544
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3bcc65513cae0165f741d1e432847fea556f5782df27fc2306e55f37c7375220d211c900a999e69341cdc82b40a84f5af2e601125fed473e8bced326dd4bad4
|
7
|
+
data.tar.gz: 615419351c4997129aca49630a9e4a7668bbbf598fccb42e717a2d267c52396e4bc119140da1c1e323b8bedce0e0f701da4dc661bf9ed5acb60f75569b3c8fd3
|
@@ -9,6 +9,9 @@ module Gaah
|
|
9
9
|
@id = json['id']
|
10
10
|
@summary = json['summary']
|
11
11
|
@description = json['description']
|
12
|
+
@hidden = json['hidden']
|
13
|
+
@selected = json['selected']
|
14
|
+
@primary = json['primary']
|
12
15
|
@time_zone = json['timeZone']
|
13
16
|
@color_id = json['colorId']
|
14
17
|
@bg_color = json['backgroundColor']
|
@@ -22,6 +25,9 @@ module Gaah
|
|
22
25
|
id: @id,
|
23
26
|
summary: @summary,
|
24
27
|
description: @description,
|
28
|
+
hidden: @hidden,
|
29
|
+
selected: @selected,
|
30
|
+
primary: @primary,
|
25
31
|
time_zone: @time_zone,
|
26
32
|
color_id: @color_id,
|
27
33
|
bg_color: @bg_color,
|
@@ -32,11 +38,11 @@ module Gaah
|
|
32
38
|
end
|
33
39
|
|
34
40
|
def marshal_dump
|
35
|
-
[@id, @summary, @description, @time_zone, @color_id, @bg_color, @fg_color, @selected, @access_role]
|
41
|
+
[@id, @summary, @description, @hidden, @selected, @primary, @time_zone, @color_id, @bg_color, @fg_color, @selected, @access_role]
|
36
42
|
end
|
37
43
|
|
38
44
|
def marshal_load(array)
|
39
|
-
@id, @summary, @description, @time_zone, @color_id, @bg_color, @fg_color, @selected, @access_role = array
|
45
|
+
@id, @summary, @description, @hidden, @selected, @primary, @time_zone, @color_id, @bg_color, @fg_color, @selected, @access_role = array
|
40
46
|
end
|
41
47
|
end
|
42
48
|
end
|
data/lib/gaah/version.rb
CHANGED