decidim-bulletin_board 0.21.0 → 0.22.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +89 -75
- data/app/assets/javascripts/decidim/bulletin_board/decidim-bulletin_board.js +2 -2
- data/decidim-bulletin_board.gemspec +1 -2
- data/lib/decidim/bulletin_board/authority/report_missing_trustee.rb +59 -0
- data/lib/decidim/bulletin_board/client.rb +11 -2
- data/lib/decidim/bulletin_board/engine.rb +4 -2
- data/lib/decidim/bulletin_board/graphql/bb_schema.json +82 -0
- data/lib/decidim/bulletin_board/version.rb +1 -1
- metadata +12 -5
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-bulletin_board
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Morcillo
|
8
8
|
- Svenja Schäfer
|
9
9
|
- Leonardo Diez
|
10
10
|
- Agustí B.R.
|
11
|
-
autorequire:
|
11
|
+
autorequire:
|
12
12
|
bindir: exe
|
13
13
|
cert_chain: []
|
14
|
-
date: 2021-
|
14
|
+
date: 2021-09-06 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rails
|
@@ -20,6 +20,9 @@ dependencies:
|
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 5.0.0
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '6.0'
|
23
26
|
type: :runtime
|
24
27
|
prerelease: false
|
25
28
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -27,6 +30,9 @@ dependencies:
|
|
27
30
|
- - ">="
|
28
31
|
- !ruby/object:Gem::Version
|
29
32
|
version: 5.0.0
|
33
|
+
- - "~>"
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '6.0'
|
30
36
|
- !ruby/object:Gem::Dependency
|
31
37
|
name: byebug
|
32
38
|
requirement: !ruby/object:Gem::Requirement
|
@@ -169,6 +175,7 @@ files:
|
|
169
175
|
- lib/decidim/bulletin_board/authority/get_election_results.rb
|
170
176
|
- lib/decidim/bulletin_board/authority/get_election_status.rb
|
171
177
|
- lib/decidim/bulletin_board/authority/publish_results.rb
|
178
|
+
- lib/decidim/bulletin_board/authority/report_missing_trustee.rb
|
172
179
|
- lib/decidim/bulletin_board/authority/start_key_ceremony.rb
|
173
180
|
- lib/decidim/bulletin_board/authority/start_tally.rb
|
174
181
|
- lib/decidim/bulletin_board/authority/start_vote.rb
|
@@ -191,7 +198,7 @@ homepage: https://github.com/decidim/decidim-bulletin-board
|
|
191
198
|
licenses:
|
192
199
|
- AGPL-3.0
|
193
200
|
metadata: {}
|
194
|
-
post_install_message:
|
201
|
+
post_install_message:
|
195
202
|
rdoc_options: []
|
196
203
|
require_paths:
|
197
204
|
- lib
|
@@ -207,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
207
214
|
version: '0'
|
208
215
|
requirements: []
|
209
216
|
rubygems_version: 3.0.3
|
210
|
-
signing_key:
|
217
|
+
signing_key:
|
211
218
|
specification_version: 4
|
212
219
|
summary: ''
|
213
220
|
test_files: []
|