hdo-storting-importer 0.5.5 → 0.5.6
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c3d13a06c7ea55cc04ad7141a7336571aa06cac
|
|
4
|
+
data.tar.gz: dd694adc08a45ee11478a29e5b9d771290f9bed3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f3d898f4bb92157937e8ff04b0874e437894cff1fdb0684b259cd03ae005ac272430a30e60be9b08c6467a09a1f163c1aee32d08f2024e4a9bf6a93ef821132
|
|
7
|
+
data.tar.gz: a6271016a4f37a68e1a95be5e27a2d36c14f18e351d38650329515990790f32cd6a4d781509c1cb6f276c2fa8fbdf1f1b4d71f33fb590878b92962586b3f47b4
|
|
@@ -42,12 +42,30 @@ module Hdo
|
|
|
42
42
|
end
|
|
43
43
|
end
|
|
44
44
|
|
|
45
|
+
def parliament_periods
|
|
46
|
+
cache :parliament_periods do
|
|
47
|
+
@delegate.parliament_periods
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
def parliament_sessions
|
|
52
|
+
cache :parliament_sessions do
|
|
53
|
+
@delegate.parliament_sessions
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
|
|
45
57
|
def parliament_issues(session_id)
|
|
46
58
|
cache :parliament_issues, session_id do
|
|
47
59
|
@delegate.parliament_issues session_id
|
|
48
60
|
end
|
|
49
61
|
end
|
|
50
62
|
|
|
63
|
+
def parliament_issue_details(parliament_issue_id)
|
|
64
|
+
cache :parliament_issue_details, parliament_issue_id do
|
|
65
|
+
@delegate.parliament_issue_details parliament_issue_id
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
|
|
51
69
|
def votes_for(issue_id)
|
|
52
70
|
cache :votes_for, issue_id do
|
|
53
71
|
@delegate.votes_for issue_id
|