decidim-reporting_proposals 0.6.1 → 0.7.3

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.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/lint.yml +8 -6
  3. data/.github/workflows/test_integration.yml +34 -12
  4. data/.github/workflows/test_unit.yml +27 -7
  5. data/.rubocop.yml +21 -1
  6. data/.ruby-version +1 -1
  7. data/Gemfile +6 -8
  8. data/Gemfile.lock +418 -427
  9. data/README.md +10 -0
  10. data/app/cells/concerns/decidim/reporting_proposals/proposals_picker_cell_override.rb +4 -4
  11. data/app/commands/concerns/decidim/reporting_proposals/admin/assign_proposals_to_valuator_override.rb +3 -1
  12. data/app/commands/concerns/decidim/reporting_proposals/admin/create_category_override.rb +5 -11
  13. data/app/commands/concerns/decidim/reporting_proposals/admin/create_proposal_answer_template_override.rb +24 -0
  14. data/app/commands/concerns/decidim/reporting_proposals/admin/has_result_command_override.rb +21 -0
  15. data/app/commands/concerns/decidim/reporting_proposals/admin/update_category_override.rb +8 -11
  16. data/app/commands/concerns/decidim/reporting_proposals/admin/update_imported_result_override.rb +30 -0
  17. data/app/commands/concerns/decidim/reporting_proposals/admin/update_result_override.rb +0 -4
  18. data/app/commands/concerns/decidim/reporting_proposals/create_project_override.rb +1 -1
  19. data/app/controllers/concerns/decidim/reporting_proposals/admin/proposal_answer_templates_controller_override.rb +4 -5
  20. data/app/controllers/concerns/decidim/reporting_proposals/admin/valuation_assignments_controller_override.rb +10 -4
  21. data/app/controllers/concerns/decidim/reporting_proposals/proposals_controller_override.rb +23 -31
  22. data/app/forms/concerns/decidim/reporting_proposals/admin/category_form_override.rb +1 -1
  23. data/app/forms/concerns/decidim/reporting_proposals/form_builder_override.rb +4 -1
  24. data/app/helpers/concerns/decidim/reporting_proposals/admin/proposal_bulk_actions_helper_override.rb +23 -0
  25. data/app/helpers/concerns/decidim/reporting_proposals/admin/proposals_helper_override.rb +18 -0
  26. data/app/helpers/concerns/decidim/reporting_proposals/proposal_wizard_helper_override.rb +17 -3
  27. data/app/jobs/decidim/reporting_proposals/assign_proposal_valuators_job.rb +1 -1
  28. data/app/overrides/decidim/proposals/admin/proposals/_proposal-tr/add_categories_column.html.erb.deface +8 -0
  29. data/app/overrides/decidim/proposals/admin/proposals/_proposal-tr/add_id_column.html.erb.deface +3 -0
  30. data/app/overrides/decidim/proposals/admin/proposals/_proposal-tr/add_valuators_name.html.erb.deface +5 -5
  31. data/app/overrides/decidim/proposals/admin/proposals/_proposal-tr/replace_td_title.html.erb.deface +1 -1
  32. data/app/overrides/decidim/proposals/admin/proposals/index/add_categories.html.erb.deface +3 -0
  33. data/app/overrides/decidim/proposals/admin/proposals/index/add_form_default_class.html.erb.deface +5 -0
  34. data/app/overrides/decidim/proposals/admin/proposals/index/add_id_column_header.html.erb.deface +3 -0
  35. data/app/overrides/decidim/proposals/admin/proposals/show/add_valuators_form.html.erb.deface +1 -24
  36. data/app/overrides/decidim/proposals/proposals/edit_draft/replace_partial_edit_form_fields.html.erb.deface +0 -1
  37. data/app/overrides/decidim/proposals/proposals/new/replace_partial_edit_form_fields.html.erb.deface +3 -0
  38. data/app/packs/entrypoints/decidim_reporting_proposals.js +1 -0
  39. data/app/packs/src/decidim/reporting_proposals/assign_valuators_select.js +25 -0
  40. data/app/packs/src/decidim/reporting_proposals/user_camera_inputs.js +1 -1
  41. data/app/packs/stylesheets/decidim/reporting_proposals/list_component_admin.scss +6 -0
  42. data/app/permissions/concerns/decidim/reporting_proposals/admin/permissions_override.rb +12 -2
  43. data/app/queries/decidim/reporting_proposals/nearby_proposals.rb +1 -3
  44. data/app/views/decidim/proposals/admin/proposals/_assign_to_valuator.html.erb +31 -0
  45. data/app/views/decidim/proposals/proposals/compare.html.erb +34 -0
  46. data/app/views/decidim/reporting_proposals/admin/categories/_valuators_field.html.erb +1 -1
  47. data/app/views/decidim/reporting_proposals/admin/proposals/_photo_form.html.erb +2 -2
  48. data/app/views/decidim/reporting_proposals/admin/proposals/_photo_gallery.html.erb +2 -1
  49. data/app/views/decidim/reporting_proposals/admin/proposals/_photos.html.erb +4 -1
  50. data/app/views/decidim/reporting_proposals/admin/proposals/_proposal_td_hide.html.erb +1 -9
  51. data/app/views/decidim/reporting_proposals/admin/proposals/_proposal_td_title.html.erb +5 -4
  52. data/app/views/decidim/reporting_proposals/proposals/_camera_button.html.erb +4 -2
  53. data/app/views/decidim/reporting_proposals/proposals/_reporting_proposal_fields.html.erb +66 -65
  54. data/bin/bundle +62 -0
  55. data/bin/rspec +26 -0
  56. data/bin/test +47 -0
  57. data/bin/test-legacy +3 -0
  58. data/config/locales/ca.yml +22 -34
  59. data/config/locales/de.yml +22 -36
  60. data/config/locales/en.yml +20 -1
  61. data/config/locales/es.yml +22 -36
  62. data/decidim-reporting_proposals.gemspec +1 -2
  63. data/lib/decidim/reporting_proposals/component.rb +31 -17
  64. data/lib/decidim/reporting_proposals/engine.rb +16 -12
  65. data/lib/decidim/reporting_proposals/version.rb +3 -3
  66. data/lib/tasks/reporting_proposals_statuses.rake +52 -0
  67. data/package-lock.json +120 -85
  68. data/package.json +7 -7
  69. metadata +61 -79
  70. data/.rubocop-disabled.yml +0 -11
  71. data/.rubocop_rails.yml +0 -90
  72. data/.rubocop_ruby.yml +0 -1767
  73. data/app/commands/concerns/decidim/reporting_proposals/admin/create_answer_override.rb +0 -17
  74. data/app/commands/concerns/decidim/reporting_proposals/admin/create_result_override.rb +0 -17
  75. data/app/commands/concerns/decidim/reporting_proposals/create_report_override.rb +0 -19
  76. data/app/commands/concerns/decidim/reporting_proposals/gallery_methods_override.rb +0 -18
  77. data/app/overrides/decidim/proposals/proposals/compare/add_css.html.erb.deface +0 -5
  78. data/app/overrides/decidim/proposals/proposals/compare/add_distance_badge.html.erb.deface +0 -10
  79. data/app/overrides/decidim/proposals/proposals/edit/add_user_group.html.erb.deface +0 -3
  80. data/app/overrides/decidim/proposals/proposals/new/remove_body.html.erb.deface +0 -1
  81. data/app/overrides/decidim/proposals/proposals/new/replace_body.html.erb.deface +0 -3
  82. data/app/overrides/layouts/decidim/_process_header_steps/always_show_new_proposals.html.erb.deface +0 -3
  83. data/app/views/decidim/reporting_proposals/proposals/_new_proposal_fields.html.erb +0 -9
  84. data/app/views/decidim/reporting_proposals/proposals/_user_group.html.erb +0 -5
  85. data/babel.config.json +0 -25
data/Gemfile.lock CHANGED
@@ -1,50 +1,58 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- decidim-reporting_proposals (0.6.1)
5
- decidim-admin (>= 0.28.1, < 0.29)
6
- decidim-core (>= 0.28.1, < 0.29)
7
- decidim-participatory_processes (>= 0.28.1, < 0.29)
8
- decidim-proposals (>= 0.28.1, < 0.29)
4
+ decidim-reporting_proposals (0.7.3)
5
+ decidim-admin (>= 0.29.3, < 0.30)
6
+ decidim-core (>= 0.29.3, < 0.30)
7
+ decidim-participatory_processes (>= 0.29.3, < 0.30)
8
+ decidim-proposals (>= 0.29.3, < 0.30)
9
9
  deface (>= 1.9)
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actioncable (6.1.7.7)
15
- actionpack (= 6.1.7.7)
16
- activesupport (= 6.1.7.7)
14
+ actioncable (7.0.10)
15
+ actionpack (= 7.0.10)
16
+ activesupport (= 7.0.10)
17
17
  nio4r (~> 2.0)
18
18
  websocket-driver (>= 0.6.1)
19
- actionmailbox (6.1.7.7)
20
- actionpack (= 6.1.7.7)
21
- activejob (= 6.1.7.7)
22
- activerecord (= 6.1.7.7)
23
- activestorage (= 6.1.7.7)
24
- activesupport (= 6.1.7.7)
19
+ actionmailbox (7.0.10)
20
+ actionpack (= 7.0.10)
21
+ activejob (= 7.0.10)
22
+ activerecord (= 7.0.10)
23
+ activestorage (= 7.0.10)
24
+ activesupport (= 7.0.10)
25
25
  mail (>= 2.7.1)
26
- actionmailer (6.1.7.7)
27
- actionpack (= 6.1.7.7)
28
- actionview (= 6.1.7.7)
29
- activejob (= 6.1.7.7)
30
- activesupport (= 6.1.7.7)
26
+ net-imap
27
+ net-pop
28
+ net-smtp
29
+ actionmailer (7.0.10)
30
+ actionpack (= 7.0.10)
31
+ actionview (= 7.0.10)
32
+ activejob (= 7.0.10)
33
+ activesupport (= 7.0.10)
31
34
  mail (~> 2.5, >= 2.5.4)
35
+ net-imap
36
+ net-pop
37
+ net-smtp
32
38
  rails-dom-testing (~> 2.0)
33
- actionpack (6.1.7.7)
34
- actionview (= 6.1.7.7)
35
- activesupport (= 6.1.7.7)
36
- rack (~> 2.0, >= 2.0.9)
39
+ actionpack (7.0.10)
40
+ actionview (= 7.0.10)
41
+ activesupport (= 7.0.10)
42
+ racc
43
+ rack (~> 2.0, >= 2.2.4)
37
44
  rack-test (>= 0.6.3)
38
45
  rails-dom-testing (~> 2.0)
39
46
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
40
- actiontext (6.1.7.7)
41
- actionpack (= 6.1.7.7)
42
- activerecord (= 6.1.7.7)
43
- activestorage (= 6.1.7.7)
44
- activesupport (= 6.1.7.7)
47
+ actiontext (7.0.10)
48
+ actionpack (= 7.0.10)
49
+ activerecord (= 7.0.10)
50
+ activestorage (= 7.0.10)
51
+ activesupport (= 7.0.10)
52
+ globalid (>= 0.6.0)
45
53
  nokogiri (>= 1.8.5)
46
- actionview (6.1.7.7)
47
- activesupport (= 6.1.7.7)
54
+ actionview (7.0.10)
55
+ activesupport (= 7.0.10)
48
56
  builder (~> 3.1)
49
57
  erubi (~> 1.4)
50
58
  rails-dom-testing (~> 2.0)
@@ -52,48 +60,58 @@ GEM
52
60
  active_link_to (1.0.5)
53
61
  actionpack
54
62
  addressable
55
- activejob (6.1.7.7)
56
- activesupport (= 6.1.7.7)
63
+ activejob (7.0.10)
64
+ activesupport (= 7.0.10)
57
65
  globalid (>= 0.3.6)
58
- activemodel (6.1.7.7)
59
- activesupport (= 6.1.7.7)
60
- activerecord (6.1.7.7)
61
- activemodel (= 6.1.7.7)
62
- activesupport (= 6.1.7.7)
63
- activestorage (6.1.7.7)
64
- actionpack (= 6.1.7.7)
65
- activejob (= 6.1.7.7)
66
- activerecord (= 6.1.7.7)
67
- activesupport (= 6.1.7.7)
66
+ activemodel (7.0.10)
67
+ activesupport (= 7.0.10)
68
+ activerecord (7.0.10)
69
+ activemodel (= 7.0.10)
70
+ activesupport (= 7.0.10)
71
+ activestorage (7.0.10)
72
+ actionpack (= 7.0.10)
73
+ activejob (= 7.0.10)
74
+ activerecord (= 7.0.10)
75
+ activesupport (= 7.0.10)
68
76
  marcel (~> 1.0)
69
77
  mini_mime (>= 1.1.0)
70
- activesupport (6.1.7.7)
78
+ activesupport (7.0.10)
79
+ base64
80
+ benchmark (>= 0.3)
81
+ bigdecimal
71
82
  concurrent-ruby (~> 1.0, >= 1.0.2)
83
+ drb
72
84
  i18n (>= 1.6, < 2)
85
+ logger (>= 1.4.2)
73
86
  minitest (>= 5.1)
87
+ mutex_m
88
+ securerandom (>= 0.3)
74
89
  tzinfo (~> 2.0)
75
- zeitwerk (~> 2.3)
76
- acts_as_list (1.1.0)
77
- activerecord (>= 4.2)
78
- addressable (2.8.6)
79
- public_suffix (>= 2.0.2, < 6.0)
80
- ast (2.4.2)
81
- base64 (0.2.0)
90
+ acts_as_list (1.2.6)
91
+ activerecord (>= 6.1)
92
+ activesupport (>= 6.1)
93
+ addressable (2.8.8)
94
+ public_suffix (>= 2.0.2, < 8.0)
95
+ ast (2.4.3)
96
+ base64 (0.3.0)
82
97
  batch-loader (1.5.0)
83
98
  bcrypt (3.1.20)
84
- better_html (2.1.1)
85
- actionview (>= 6.0)
86
- activesupport (>= 6.0)
99
+ benchmark (0.5.0)
100
+ better_html (2.2.0)
101
+ actionview (>= 7.0)
102
+ activesupport (>= 7.0)
87
103
  ast (~> 2.0)
88
104
  erubi (~> 1.4)
89
105
  parser (>= 2.4)
90
106
  smart_properties
91
- bigdecimal (3.1.7)
107
+ bigdecimal (3.3.1)
92
108
  bindex (0.8.1)
93
- bootsnap (1.18.3)
109
+ bootsnap (1.19.0)
94
110
  msgpack (~> 1.2)
111
+ brakeman (6.2.2)
112
+ racc
95
113
  browser (2.7.1)
96
- builder (3.2.4)
114
+ builder (3.3.0)
97
115
  bullet (7.1.6)
98
116
  activesupport (>= 3.0.0)
99
117
  uniform_notifier (~> 1.11)
@@ -107,105 +125,92 @@ GEM
107
125
  rack-test (>= 0.6.3)
108
126
  regexp_parser (>= 1.5, < 3.0)
109
127
  xpath (~> 3.2)
110
- carrierwave (2.2.6)
111
- activemodel (>= 5.0.0)
112
- activesupport (>= 5.0.0)
113
- addressable (~> 2.6)
114
- image_processing (~> 1.1)
115
- marcel (~> 1.0.0)
116
- mini_mime (>= 0.1.3)
117
- ssrf_filter (~> 1.0)
118
- cells (4.1.7)
119
- declarative-builder (< 0.2.0)
128
+ cells (4.1.8)
129
+ declarative-builder (~> 0.2.0)
120
130
  declarative-option (< 0.2.0)
121
131
  tilt (>= 1.4, < 3)
122
132
  uber (< 0.2.0)
123
133
  cells-erb (0.1.0)
124
134
  cells (~> 4.0)
125
135
  erbse (>= 0.1.1)
126
- cells-rails (0.1.5)
136
+ cells-rails (0.1.6)
127
137
  actionpack (>= 5.0)
128
138
  cells (>= 4.1.6, < 5.0.0)
129
- charlock_holmes (0.7.7)
130
- childprocess (5.0.0)
139
+ charlock_holmes (0.7.9)
140
+ childprocess (5.1.0)
141
+ logger (~> 1.5)
131
142
  codecov (0.2.12)
132
143
  json
133
144
  simplecov
134
- commonmarker (0.23.10)
135
- concurrent-ruby (1.2.3)
136
- crack (1.0.0)
145
+ commonmarker (0.23.12)
146
+ concurrent-ruby (1.3.4)
147
+ crack (1.0.1)
137
148
  bigdecimal
138
149
  rexml
139
150
  crass (1.0.6)
140
- css_parser (1.17.1)
151
+ css_parser (1.21.1)
141
152
  addressable
142
- date (3.3.4)
153
+ csv (3.3.5)
154
+ dartsass (1.49.8)
155
+ date (3.5.1)
143
156
  date_validator (0.12.0)
144
157
  activemodel (>= 3)
145
158
  activesupport (>= 3)
146
- decidim (0.28.1)
147
- decidim-accountability (= 0.28.1)
148
- decidim-admin (= 0.28.1)
149
- decidim-api (= 0.28.1)
150
- decidim-assemblies (= 0.28.1)
151
- decidim-blogs (= 0.28.1)
152
- decidim-budgets (= 0.28.1)
153
- decidim-comments (= 0.28.1)
154
- decidim-core (= 0.28.1)
155
- decidim-debates (= 0.28.1)
156
- decidim-forms (= 0.28.1)
157
- decidim-generators (= 0.28.1)
158
- decidim-meetings (= 0.28.1)
159
- decidim-pages (= 0.28.1)
160
- decidim-participatory_processes (= 0.28.1)
161
- decidim-proposals (= 0.28.1)
162
- decidim-sortitions (= 0.28.1)
163
- decidim-surveys (= 0.28.1)
164
- decidim-system (= 0.28.1)
165
- decidim-templates (= 0.28.1)
166
- decidim-verifications (= 0.28.1)
167
- decidim-accountability (0.28.1)
168
- decidim-comments (= 0.28.1)
169
- decidim-core (= 0.28.1)
170
- decidim-admin (0.28.1)
159
+ decidim (0.29.7)
160
+ decidim-accountability (= 0.29.7)
161
+ decidim-admin (= 0.29.7)
162
+ decidim-api (= 0.29.7)
163
+ decidim-assemblies (= 0.29.7)
164
+ decidim-blogs (= 0.29.7)
165
+ decidim-budgets (= 0.29.7)
166
+ decidim-comments (= 0.29.7)
167
+ decidim-core (= 0.29.7)
168
+ decidim-debates (= 0.29.7)
169
+ decidim-forms (= 0.29.7)
170
+ decidim-generators (= 0.29.7)
171
+ decidim-meetings (= 0.29.7)
172
+ decidim-pages (= 0.29.7)
173
+ decidim-participatory_processes (= 0.29.7)
174
+ decidim-proposals (= 0.29.7)
175
+ decidim-sortitions (= 0.29.7)
176
+ decidim-surveys (= 0.29.7)
177
+ decidim-system (= 0.29.7)
178
+ decidim-verifications (= 0.29.7)
179
+ decidim-accountability (0.29.7)
180
+ decidim-comments (= 0.29.7)
181
+ decidim-core (= 0.29.7)
182
+ decidim-admin (0.29.7)
171
183
  active_link_to (~> 1.0)
172
- decidim-core (= 0.28.1)
184
+ decidim-core (= 0.29.7)
173
185
  devise (~> 4.7)
174
186
  devise-i18n (~> 1.2)
175
187
  devise_invitable (~> 2.0, >= 2.0.9)
176
- decidim-api (0.28.1)
177
- commonmarker (~> 0.23.0, >= 0.23.9)
178
- decidim-core (= 0.28.1)
179
- graphql (~> 2.0.0)
180
- graphql-docs (~> 3.0.1)
188
+ decidim-api (0.29.7)
189
+ decidim-core (= 0.29.7)
190
+ graphql (~> 2.2.6)
191
+ graphql-docs (~> 4.0)
181
192
  rack-cors (~> 1.0)
182
- decidim-assemblies (0.28.1)
183
- decidim-core (= 0.28.1)
184
- decidim-blogs (0.28.1)
185
- decidim-admin (= 0.28.1)
186
- decidim-comments (= 0.28.1)
187
- decidim-core (= 0.28.1)
188
- decidim-budgets (0.28.1)
189
- decidim-comments (= 0.28.1)
190
- decidim-core (= 0.28.1)
191
- decidim-bulletin_board (0.24.4)
192
- byebug (~> 11.0)
193
- graphlient (~> 0.5.0)
194
- jwt (~> 2.5.0)
195
- rails (>= 5.0.0, < 7.1)
196
- wisper (~> 2.0.0)
197
- decidim-comments (0.28.1)
198
- decidim-core (= 0.28.1)
193
+ decidim-assemblies (0.29.7)
194
+ decidim-core (= 0.29.7)
195
+ decidim-blogs (0.29.7)
196
+ decidim-admin (= 0.29.7)
197
+ decidim-comments (= 0.29.7)
198
+ decidim-core (= 0.29.7)
199
+ decidim-budgets (0.29.7)
200
+ decidim-comments (= 0.29.7)
201
+ decidim-core (= 0.29.7)
202
+ decidim-comments (0.29.7)
203
+ decidim-core (= 0.29.7)
199
204
  redcarpet (~> 3.5, >= 3.5.1)
200
- decidim-core (0.28.1)
205
+ decidim-core (0.29.7)
201
206
  active_link_to (~> 1.0)
202
207
  acts_as_list (~> 1.0)
203
208
  batch-loader (~> 1.2)
204
209
  browser (~> 2.7)
205
- carrierwave (~> 2.2.5, >= 2.2.5)
206
210
  cells-erb (~> 0.1.0)
207
211
  cells-rails (~> 0.1.3)
208
212
  charlock_holmes (~> 0.7)
213
+ concurrent-ruby (= 1.3.4)
209
214
  date_validator (~> 0.12.0)
210
215
  devise (~> 4.7)
211
216
  devise-i18n (~> 1.2, < 1.11.1)
@@ -217,12 +222,14 @@ GEM
217
222
  foundation_rails_helper (~> 4.0)
218
223
  geocoder (~> 1.8)
219
224
  hashdiff (>= 0.4.0, < 2.0.0)
225
+ image_processing (~> 1.2)
220
226
  invisible_captcha (~> 0.12)
221
227
  kaminari (~> 1.2, >= 1.2.1)
222
228
  loofah (~> 2.19, >= 2.19.1)
223
229
  mime-types (>= 1.16, < 4.0)
224
230
  mini_magick (~> 4.9)
225
231
  net-smtp (~> 0.3.1)
232
+ nokogiri (~> 1.16, >= 1.16.2)
226
233
  omniauth (~> 2.0)
227
234
  omniauth-facebook (~> 5.0)
228
235
  omniauth-google-oauth2 (~> 1.0)
@@ -233,33 +240,32 @@ GEM
233
240
  pg_search (~> 2.2)
234
241
  premailer-rails (~> 1.10)
235
242
  psych (~> 4.0)
236
- rack (~> 2.2, >= 2.2.6.4)
243
+ rack (~> 2.2, >= 2.2.8.1)
237
244
  rack-attack (~> 6.0)
238
- rails (~> 6.1.7, >= 6.1.7.4)
239
- rails-i18n (~> 6.0)
245
+ rails (~> 7.0.8)
246
+ rails-i18n (~> 7.0)
240
247
  ransack (~> 3.2.1)
241
248
  redis (~> 4.1)
242
249
  request_store (~> 1.5.0)
243
250
  rubyXL (~> 3.4)
244
251
  rubyzip (~> 2.0)
245
- seven_zip_ruby (~> 1.3)
246
252
  shakapacker (~> 7.1.0)
247
253
  valid_email2 (~> 4.0)
248
254
  web-push (~> 3.0)
249
255
  wisper (~> 2.0)
250
- decidim-debates (0.28.1)
251
- decidim-comments (= 0.28.1)
252
- decidim-core (= 0.28.1)
253
- decidim-dev (0.28.1)
254
- bullet (~> 7.0)
256
+ decidim-debates (0.29.7)
257
+ decidim-comments (= 0.29.7)
258
+ decidim-core (= 0.29.7)
259
+ decidim-dev (0.29.7)
260
+ bullet (~> 7.1.6)
255
261
  byebug (~> 11.0)
256
262
  capybara (~> 3.39)
257
- decidim (= 0.28.1)
263
+ decidim (= 0.29.7)
258
264
  erb_lint (~> 0.4.0)
259
265
  factory_bot_rails (~> 6.2)
260
266
  faker (~> 3.2)
261
267
  i18n-tasks (~> 1.0)
262
- nokogiri (~> 1.14, >= 1.14.3)
268
+ nokogiri (~> 1.16, >= 1.16.2)
263
269
  parallel_tests (~> 4.2)
264
270
  puma (~> 6.2, >= 6.3.1)
265
271
  rails-controller-testing (~> 1.0)
@@ -269,64 +275,62 @@ GEM
269
275
  rspec-rails (~> 6.0)
270
276
  rspec-retry (~> 0.6.2)
271
277
  rspec_junit_formatter (~> 0.6.0)
272
- rubocop (~> 1.50.0)
278
+ rubocop (~> 1.65.0)
279
+ rubocop-capybara (~> 2.21)
280
+ rubocop-factory_bot (~> 2.26)
273
281
  rubocop-faker (~> 1.1)
274
- rubocop-rails (~> 2.19)
275
- rubocop-rspec (~> 2.20)
282
+ rubocop-performance (~> 1.21)
283
+ rubocop-rails (~> 2.25)
284
+ rubocop-rspec (~> 3.0)
285
+ rubocop-rspec_rails (~> 2.30)
286
+ rubocop-rubycw (~> 0.1)
276
287
  selenium-webdriver (~> 4.9)
277
288
  simplecov (~> 0.22.0)
278
289
  simplecov-cobertura (~> 2.1.0)
290
+ spring (~> 4.0)
291
+ spring-watcher-listen (~> 2.0)
279
292
  w3c_rspec_validators (~> 0.3.0)
280
293
  webmock (~> 3.18)
281
294
  wisper-rspec (~> 1.0)
282
- decidim-elections (0.28.1)
283
- decidim-bulletin_board (~> 0.24.4)
284
- decidim-core (= 0.28.1)
285
- decidim-forms (= 0.28.1)
286
- decidim-proposals (= 0.28.1)
287
- rack-attack (~> 6.0)
288
- voting_schemes-dummy (~> 0.24.4)
289
- voting_schemes-electionguard (~> 0.24.4)
290
- decidim-forms (0.28.1)
291
- decidim-core (= 0.28.1)
295
+ decidim-forms (0.29.7)
296
+ decidim-core (= 0.29.7)
292
297
  wicked_pdf (~> 2.1)
293
- wkhtmltopdf-binary (~> 0.12)
294
- decidim-generators (0.28.1)
295
- decidim-core (= 0.28.1)
296
- decidim-meetings (0.28.1)
297
- decidim-core (= 0.28.1)
298
- decidim-forms (= 0.28.1)
298
+ decidim-generators (0.29.7)
299
+ decidim-core (= 0.29.7)
300
+ decidim-meetings (0.29.7)
301
+ decidim-core (= 0.29.7)
302
+ decidim-forms (= 0.29.7)
299
303
  icalendar (~> 2.5)
300
- decidim-pages (0.28.1)
301
- decidim-core (= 0.28.1)
302
- decidim-participatory_processes (0.28.1)
303
- decidim-core (= 0.28.1)
304
- decidim-proposals (0.28.1)
305
- decidim-comments (= 0.28.1)
306
- decidim-core (= 0.28.1)
307
- doc2text (~> 0.4.6)
304
+ decidim-pages (0.29.7)
305
+ decidim-core (= 0.29.7)
306
+ decidim-participatory_processes (0.29.7)
307
+ decidim-core (= 0.29.7)
308
+ decidim-proposals (0.29.7)
309
+ decidim-comments (= 0.29.7)
310
+ decidim-core (= 0.29.7)
311
+ doc2text (~> 0.4.7)
308
312
  redcarpet (~> 3.5, >= 3.5.1)
309
- decidim-sortitions (0.28.1)
310
- decidim-admin (= 0.28.1)
311
- decidim-comments (= 0.28.1)
312
- decidim-core (= 0.28.1)
313
- decidim-proposals (= 0.28.1)
314
- decidim-surveys (0.28.1)
315
- decidim-core (= 0.28.1)
316
- decidim-forms (= 0.28.1)
317
- decidim-system (0.28.1)
313
+ decidim-sortitions (0.29.7)
314
+ decidim-admin (= 0.29.7)
315
+ decidim-comments (= 0.29.7)
316
+ decidim-core (= 0.29.7)
317
+ decidim-proposals (= 0.29.7)
318
+ decidim-surveys (0.29.7)
319
+ decidim-core (= 0.29.7)
320
+ decidim-forms (= 0.29.7)
321
+ decidim-system (0.29.7)
318
322
  active_link_to (~> 1.0)
319
- decidim-core (= 0.28.1)
323
+ decidim-core (= 0.29.7)
320
324
  devise (~> 4.7)
321
325
  devise-i18n (~> 1.2)
322
326
  devise_invitable (~> 2.0, >= 2.0.9)
323
- decidim-templates (0.28.1)
324
- decidim-core (= 0.28.1)
325
- decidim-forms (= 0.28.1)
326
- decidim-verifications (0.28.1)
327
- decidim-core (= 0.28.1)
328
- declarative-builder (0.1.0)
329
- declarative-option (< 0.2.0)
327
+ decidim-templates (0.29.7)
328
+ decidim-core (= 0.29.7)
329
+ decidim-forms (= 0.29.7)
330
+ decidim-verifications (0.29.7)
331
+ decidim-core (= 0.29.7)
332
+ declarative-builder (0.2.0)
333
+ trailblazer-option (~> 0.1.0)
330
334
  declarative-option (0.1.0)
331
335
  deface (1.9.0)
332
336
  actionview (>= 5.2)
@@ -342,18 +346,19 @@ GEM
342
346
  warden (~> 1.2.3)
343
347
  devise-i18n (1.11.0)
344
348
  devise (>= 4.9.0)
345
- devise_invitable (2.0.9)
349
+ devise_invitable (2.0.11)
346
350
  actionmailer (>= 5.0)
347
351
  devise (>= 4.6)
348
- diff-lcs (1.5.1)
349
- diffy (3.4.2)
350
- doc2text (0.4.7)
351
- nokogiri (>= 1.13.2, < 1.17.0)
352
+ diff-lcs (1.6.2)
353
+ diffy (3.4.4)
354
+ doc2text (0.4.8)
355
+ nokogiri (>= 1.18.2)
352
356
  rubyzip (~> 2.3.0)
353
- docile (1.4.0)
354
- doorkeeper (5.6.9)
357
+ docile (1.4.1)
358
+ doorkeeper (5.8.2)
355
359
  railties (>= 5)
356
360
  doorkeeper-i18n (4.0.1)
361
+ drb (2.2.3)
357
362
  erb_lint (0.4.0)
358
363
  activesupport
359
364
  better_html (>= 2.0.1)
@@ -363,111 +368,96 @@ GEM
363
368
  smart_properties
364
369
  erbse (0.1.4)
365
370
  temple
366
- erubi (1.12.0)
367
- escape_utils (1.2.2)
368
- excon (0.110.0)
371
+ erubi (1.13.1)
372
+ escape_utils (1.3.0)
373
+ excon (1.3.2)
374
+ logger
369
375
  extended-markdown-filter (0.7.0)
370
376
  html-pipeline (~> 2.9)
371
- factory_bot (6.4.6)
372
- activesupport (>= 5.0.0)
373
- factory_bot_rails (6.4.3)
374
- factory_bot (~> 6.4)
375
- railties (>= 5.0.0)
376
- faker (3.3.1)
377
+ factory_bot (6.5.6)
378
+ activesupport (>= 6.1.0)
379
+ factory_bot_rails (6.5.1)
380
+ factory_bot (~> 6.5)
381
+ railties (>= 6.1.0)
382
+ faker (3.5.3)
377
383
  i18n (>= 1.8.11, < 2)
378
- faraday (1.10.3)
379
- faraday-em_http (~> 1.0)
380
- faraday-em_synchrony (~> 1.0)
381
- faraday-excon (~> 1.1)
382
- faraday-httpclient (~> 1.0)
383
- faraday-multipart (~> 1.0)
384
- faraday-net_http (~> 1.0)
385
- faraday-net_http_persistent (~> 1.0)
386
- faraday-patron (~> 1.0)
387
- faraday-rack (~> 1.0)
388
- faraday-retry (~> 1.0)
389
- ruby2_keywords (>= 0.0.4)
390
- faraday-em_http (1.0.0)
391
- faraday-em_synchrony (1.0.0)
392
- faraday-excon (1.1.0)
393
- faraday-httpclient (1.0.1)
394
- faraday-multipart (1.0.4)
395
- multipart-post (~> 2)
396
- faraday-net_http (1.0.1)
397
- faraday-net_http_persistent (1.2.0)
398
- faraday-patron (1.0.0)
399
- faraday-rack (1.0.0)
400
- faraday-retry (1.0.3)
401
- faraday_middleware (1.2.0)
402
- faraday (~> 1.0)
403
- ffi (1.16.3)
384
+ faraday (2.14.0)
385
+ faraday-net_http (>= 2.0, < 3.5)
386
+ json
387
+ logger
388
+ faraday-net_http (3.4.2)
389
+ net-http (~> 0.5)
390
+ ffi (1.17.2)
404
391
  file_validators (3.0.0)
405
392
  activemodel (>= 3.2)
406
393
  mime-types (>= 1.0)
407
- fog-core (2.4.0)
394
+ fog-core (2.6.0)
408
395
  builder
409
- excon (~> 0.71)
396
+ excon (~> 1.0)
410
397
  formatador (>= 0.2, < 2.0)
411
398
  mime-types
412
- fog-local (0.8.0)
399
+ fog-local (0.9.0)
413
400
  fog-core (>= 1.27, < 3.0)
414
- formatador (1.1.0)
401
+ formatador (1.2.3)
402
+ reline
415
403
  foundation_rails_helper (4.0.1)
416
404
  actionpack (>= 4.1, < 7.1)
417
405
  activemodel (>= 4.1, < 7.1)
418
406
  activesupport (>= 4.1, < 7.1)
419
407
  railties (>= 4.1, < 7.1)
420
408
  gemoji (3.0.1)
421
- geocoder (1.8.2)
422
- globalid (1.2.1)
409
+ geocoder (1.8.6)
410
+ base64 (>= 0.1.0)
411
+ csv (>= 3.0.0)
412
+ globalid (1.3.0)
423
413
  activesupport (>= 6.1)
424
- graphlient (0.5.0)
425
- faraday (>= 1.0)
426
- faraday_middleware
427
- graphql-client
428
- graphql (2.0.29)
414
+ graphql (2.2.17)
429
415
  base64
430
- graphql-client (0.22.0)
431
- activesupport (>= 3.0)
432
- graphql (>= 1.13.0)
433
- graphql-docs (3.0.1)
434
- commonmarker (~> 0.16)
435
- escape_utils (~> 1.2.2)
416
+ graphql-docs (4.0.0)
417
+ commonmarker (~> 0.23, >= 0.23.6)
418
+ dartsass (~> 1.49)
419
+ escape_utils (~> 1.2)
436
420
  extended-markdown-filter (~> 0.4)
437
421
  gemoji (~> 3.0)
438
422
  graphql (~> 2.0)
439
- html-pipeline (~> 2.9)
440
- sass (~> 3.4)
441
- hashdiff (1.1.0)
423
+ html-pipeline (~> 2.14, >= 2.14.3)
424
+ hashdiff (1.2.1)
442
425
  hashie (5.0.0)
443
- highline (3.0.1)
426
+ highline (3.1.2)
427
+ reline
444
428
  html-pipeline (2.14.3)
445
429
  activesupport (>= 2)
446
430
  nokogiri (>= 1.4)
447
- htmlentities (4.3.4)
448
- i18n (1.14.4)
431
+ htmlentities (4.4.2)
432
+ i18n (1.14.7)
449
433
  concurrent-ruby (~> 1.0)
450
- i18n-tasks (1.0.13)
434
+ i18n-tasks (1.1.2)
451
435
  activesupport (>= 4.0.2)
452
436
  ast (>= 2.1.0)
453
- better_html (>= 1.0, < 3.0)
454
437
  erubi
455
- highline (>= 2.0.0)
438
+ highline (>= 3.0.0)
456
439
  i18n
457
440
  parser (>= 3.2.2.1)
441
+ prism
458
442
  rails-i18n
459
443
  rainbow (>= 2.2.2, < 4.0)
444
+ ruby-progressbar (~> 1.8, >= 1.8.1)
460
445
  terminal-table (>= 1.5.1)
461
- icalendar (2.10.1)
446
+ icalendar (2.12.1)
447
+ base64
462
448
  ice_cube (~> 0.16)
463
- ice_cube (0.16.4)
464
- image_processing (1.12.2)
465
- mini_magick (>= 4.9.5, < 5)
449
+ logger
450
+ ostruct
451
+ ice_cube (0.17.0)
452
+ image_processing (1.14.0)
453
+ mini_magick (>= 4.9.5, < 6)
466
454
  ruby-vips (>= 2.0.17, < 3)
467
455
  invisible_captcha (0.13.0)
468
456
  rails (>= 3.2.0)
469
- json (2.7.2)
470
- jwt (2.5.0)
457
+ io-console (0.8.1)
458
+ json (2.17.1)
459
+ jwt (3.1.2)
460
+ base64
471
461
  kaminari (1.2.2)
472
462
  activesupport (>= 4.1.0)
473
463
  kaminari-actionview (= 1.2.2)
@@ -480,9 +470,11 @@ GEM
480
470
  activerecord
481
471
  kaminari-core (= 1.2.2)
482
472
  kaminari-core (1.2.2)
483
- launchy (3.0.0)
473
+ language_server-protocol (3.17.0.5)
474
+ launchy (3.1.1)
484
475
  addressable (~> 2.8)
485
476
  childprocess (~> 5.0)
477
+ logger (~> 1.6)
486
478
  letter_opener (1.10.0)
487
479
  launchy (>= 2.2, < 4)
488
480
  letter_opener_web (2.0.0)
@@ -493,27 +485,34 @@ GEM
493
485
  listen (3.9.0)
494
486
  rb-fsevent (~> 0.10, >= 0.10.3)
495
487
  rb-inotify (~> 0.9, >= 0.9.10)
496
- loofah (2.22.0)
488
+ logger (1.7.0)
489
+ loofah (2.24.1)
497
490
  crass (~> 1.0.2)
498
491
  nokogiri (>= 1.12.0)
499
- mail (2.8.1)
492
+ mail (2.9.0)
493
+ logger
500
494
  mini_mime (>= 0.1.1)
501
495
  net-imap
502
496
  net-pop
503
497
  net-smtp
504
- marcel (1.0.4)
505
- matrix (0.4.2)
506
- method_source (1.0.0)
507
- mime-types (3.5.2)
508
- mime-types-data (~> 3.2015)
509
- mime-types-data (3.2024.0305)
510
- mini_magick (4.12.0)
498
+ marcel (1.1.0)
499
+ matrix (0.4.3)
500
+ method_source (1.1.0)
501
+ mime-types (3.7.0)
502
+ logger
503
+ mime-types-data (~> 3.2025, >= 3.2025.0507)
504
+ mime-types-data (3.2025.0924)
505
+ mini_magick (4.13.2)
511
506
  mini_mime (1.1.5)
512
- minitest (5.22.3)
513
- msgpack (1.7.2)
514
- multi_xml (0.6.0)
515
- multipart-post (2.4.0)
516
- net-imap (0.4.10)
507
+ mini_portile2 (2.8.9)
508
+ minitest (5.26.2)
509
+ msgpack (1.8.0)
510
+ multi_xml (0.7.2)
511
+ bigdecimal (~> 3.1)
512
+ mutex_m (0.3.0)
513
+ net-http (0.8.0)
514
+ uri (>= 0.11.1)
515
+ net-imap (0.5.12)
517
516
  date
518
517
  net-protocol
519
518
  net-pop (0.1.2)
@@ -522,81 +521,84 @@ GEM
522
521
  timeout
523
522
  net-smtp (0.3.4)
524
523
  net-protocol
525
- nio4r (2.7.1)
526
- nokogiri (1.16.4-arm64-darwin)
527
- racc (~> 1.4)
528
- nokogiri (1.16.4-x86_64-darwin)
524
+ nio4r (2.7.5)
525
+ nokogiri (1.18.10)
526
+ mini_portile2 (~> 2.8.2)
529
527
  racc (~> 1.4)
530
- nokogiri (1.16.4-x86_64-linux)
531
- racc (~> 1.4)
532
- oauth (1.1.0)
533
- oauth-tty (~> 1.0, >= 1.0.1)
528
+ oauth (1.1.3)
529
+ base64 (~> 0.1)
530
+ oauth-tty (~> 1.0, >= 1.0.6)
534
531
  snaky_hash (~> 2.0)
535
- version_gem (~> 1.1)
536
- oauth-tty (1.0.5)
537
- version_gem (~> 1.1, >= 1.1.1)
538
- oauth2 (2.0.9)
539
- faraday (>= 0.17.3, < 3.0)
540
- jwt (>= 1.0, < 3.0)
532
+ version_gem (~> 1.1, >= 1.1.9)
533
+ oauth-tty (1.0.6)
534
+ version_gem (~> 1.1, >= 1.1.9)
535
+ oauth2 (2.0.18)
536
+ faraday (>= 0.17.3, < 4.0)
537
+ jwt (>= 1.0, < 4.0)
538
+ logger (~> 1.2)
541
539
  multi_xml (~> 0.5)
542
540
  rack (>= 1.2, < 4)
543
- snaky_hash (~> 2.0)
544
- version_gem (~> 1.1)
545
- omniauth (2.1.2)
541
+ snaky_hash (~> 2.0, >= 2.0.3)
542
+ version_gem (~> 1.1, >= 1.1.9)
543
+ omniauth (2.1.4)
546
544
  hashie (>= 3.4.6)
545
+ logger
547
546
  rack (>= 2.2.3)
548
547
  rack-protection
549
548
  omniauth-facebook (5.0.0)
550
549
  omniauth-oauth2 (~> 1.2)
551
- omniauth-google-oauth2 (1.1.2)
552
- jwt (>= 2.0)
550
+ omniauth-google-oauth2 (1.2.1)
551
+ jwt (>= 2.9.2)
553
552
  oauth2 (~> 2.0)
554
553
  omniauth (~> 2.0)
555
554
  omniauth-oauth2 (~> 1.8)
556
- omniauth-oauth (1.2.0)
555
+ omniauth-oauth (1.2.1)
557
556
  oauth
558
557
  omniauth (>= 1.0, < 3)
558
+ rack (>= 1.6.2, < 4)
559
559
  omniauth-oauth2 (1.8.0)
560
560
  oauth2 (>= 1.4, < 3)
561
561
  omniauth (~> 2.0)
562
- omniauth-rails_csrf_protection (1.0.1)
562
+ omniauth-rails_csrf_protection (1.0.2)
563
563
  actionpack (>= 4.2)
564
564
  omniauth (~> 2.0)
565
565
  omniauth-twitter (1.4.0)
566
566
  omniauth-oauth (~> 1.1)
567
567
  rack
568
- openssl (3.2.0)
568
+ openssl (3.3.2)
569
569
  orm_adapter (0.5.0)
570
+ ostruct (0.6.3)
570
571
  paper_trail (12.3.0)
571
572
  activerecord (>= 5.2)
572
573
  request_store (~> 1.1)
573
- parallel (1.24.0)
574
- parallel_tests (4.7.1)
574
+ parallel (1.27.0)
575
+ parallel_tests (4.10.1)
575
576
  parallel
576
- parser (3.3.0.5)
577
+ parser (3.3.10.0)
577
578
  ast (~> 2.4.1)
578
579
  racc
579
580
  pg (1.4.6)
580
- pg_search (2.3.6)
581
- activerecord (>= 5.2)
582
- activesupport (>= 5.2)
581
+ pg_search (2.3.7)
582
+ activerecord (>= 6.1)
583
+ activesupport (>= 6.1)
583
584
  polyglot (0.3.5)
584
- premailer (1.23.0)
585
+ premailer (1.27.0)
585
586
  addressable
586
- css_parser (>= 1.12.0)
587
+ css_parser (>= 1.19.0)
587
588
  htmlentities (>= 4.0.0)
588
589
  premailer-rails (1.12.0)
589
590
  actionmailer (>= 3)
590
591
  net-smtp
591
592
  premailer (~> 1.7, >= 1.7.9)
593
+ prism (1.6.0)
592
594
  psych (4.0.6)
593
595
  stringio
594
- public_suffix (5.0.5)
595
- puma (6.4.2)
596
+ public_suffix (7.0.0)
597
+ puma (6.6.1)
596
598
  nio4r (~> 2.0)
597
- racc (1.7.3)
598
- rack (2.2.9)
599
- rack-attack (6.7.0)
599
+ racc (1.8.1)
600
+ rack (2.2.21)
601
+ rack-attack (6.8.0)
600
602
  rack (>= 1.0, < 4)
601
603
  rack-cors (1.1.1)
602
604
  rack (>= 2.0.0)
@@ -605,80 +607,82 @@ GEM
605
607
  rack (~> 2.2, >= 2.2.4)
606
608
  rack-proxy (0.7.7)
607
609
  rack
608
- rack-test (2.1.0)
610
+ rack-test (2.2.0)
609
611
  rack (>= 1.3)
610
- rails (6.1.7.7)
611
- actioncable (= 6.1.7.7)
612
- actionmailbox (= 6.1.7.7)
613
- actionmailer (= 6.1.7.7)
614
- actionpack (= 6.1.7.7)
615
- actiontext (= 6.1.7.7)
616
- actionview (= 6.1.7.7)
617
- activejob (= 6.1.7.7)
618
- activemodel (= 6.1.7.7)
619
- activerecord (= 6.1.7.7)
620
- activestorage (= 6.1.7.7)
621
- activesupport (= 6.1.7.7)
612
+ rails (7.0.10)
613
+ actioncable (= 7.0.10)
614
+ actionmailbox (= 7.0.10)
615
+ actionmailer (= 7.0.10)
616
+ actionpack (= 7.0.10)
617
+ actiontext (= 7.0.10)
618
+ actionview (= 7.0.10)
619
+ activejob (= 7.0.10)
620
+ activemodel (= 7.0.10)
621
+ activerecord (= 7.0.10)
622
+ activestorage (= 7.0.10)
623
+ activesupport (= 7.0.10)
622
624
  bundler (>= 1.15.0)
623
- railties (= 6.1.7.7)
624
- sprockets-rails (>= 2.0.0)
625
+ railties (= 7.0.10)
625
626
  rails-controller-testing (1.0.5)
626
627
  actionpack (>= 5.0.1.rc1)
627
628
  actionview (>= 5.0.1.rc1)
628
629
  activesupport (>= 5.0.1.rc1)
629
- rails-dom-testing (2.2.0)
630
+ rails-dom-testing (2.3.0)
630
631
  activesupport (>= 5.0.0)
631
632
  minitest
632
633
  nokogiri (>= 1.6)
633
- rails-html-sanitizer (1.6.0)
634
+ rails-html-sanitizer (1.6.2)
634
635
  loofah (~> 2.21)
635
- nokogiri (~> 1.14)
636
- rails-i18n (6.0.0)
636
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
637
+ rails-i18n (7.0.10)
637
638
  i18n (>= 0.7, < 2)
638
- railties (>= 6.0.0, < 7)
639
- railties (6.1.7.7)
640
- actionpack (= 6.1.7.7)
641
- activesupport (= 6.1.7.7)
639
+ railties (>= 6.0.0, < 8)
640
+ railties (7.0.10)
641
+ actionpack (= 7.0.10)
642
+ activesupport (= 7.0.10)
642
643
  method_source
643
644
  rake (>= 12.2)
644
645
  thor (~> 1.0)
646
+ zeitwerk (~> 2.5)
645
647
  rainbow (3.1.1)
646
- rake (13.2.1)
648
+ rake (13.3.1)
647
649
  ransack (3.2.1)
648
650
  activerecord (>= 6.1.5)
649
651
  activesupport (>= 6.1.5)
650
652
  i18n
651
653
  rb-fsevent (0.11.2)
652
- rb-inotify (0.10.1)
654
+ rb-inotify (0.11.1)
653
655
  ffi (~> 1.0)
654
- redcarpet (3.6.0)
656
+ redcarpet (3.6.1)
655
657
  redis (4.8.1)
656
- regexp_parser (2.9.0)
658
+ regexp_parser (2.11.3)
659
+ reline (0.6.3)
660
+ io-console (~> 0.5)
657
661
  request_store (1.5.1)
658
662
  rack (>= 1.4)
659
- responders (3.1.1)
660
- actionpack (>= 5.2)
661
- railties (>= 5.2)
662
- rexml (3.2.6)
663
- rspec (3.13.0)
663
+ responders (3.2.0)
664
+ actionpack (>= 7.0)
665
+ railties (>= 7.0)
666
+ rexml (3.4.1)
667
+ rspec (3.13.2)
664
668
  rspec-core (~> 3.13.0)
665
669
  rspec-expectations (~> 3.13.0)
666
670
  rspec-mocks (~> 3.13.0)
667
- rspec-cells (0.3.9)
671
+ rspec-cells (0.3.10)
668
672
  cells (>= 4.0.0, < 6.0.0)
669
- rspec-rails (>= 3.0.0, < 6.2.0)
670
- rspec-core (3.13.0)
673
+ rspec-rails (>= 3.0.0)
674
+ rspec-core (3.13.6)
671
675
  rspec-support (~> 3.13.0)
672
- rspec-expectations (3.13.0)
676
+ rspec-expectations (3.13.5)
673
677
  diff-lcs (>= 1.2.0, < 2.0)
674
678
  rspec-support (~> 3.13.0)
675
679
  rspec-html-matchers (0.10.0)
676
680
  nokogiri (~> 1)
677
681
  rspec (>= 3.0.0.a)
678
- rspec-mocks (3.13.0)
682
+ rspec-mocks (3.13.7)
679
683
  diff-lcs (>= 1.2.0, < 2.0)
680
684
  rspec-support (~> 3.13.0)
681
- rspec-rails (6.1.2)
685
+ rspec-rails (6.1.5)
682
686
  actionpack (>= 6.1)
683
687
  activesupport (>= 6.1)
684
688
  railties (>= 6.1)
@@ -688,60 +692,61 @@ GEM
688
692
  rspec-support (~> 3.13)
689
693
  rspec-retry (0.6.2)
690
694
  rspec-core (> 3.3)
691
- rspec-support (3.13.1)
695
+ rspec-support (3.13.6)
692
696
  rspec_junit_formatter (0.6.0)
693
697
  rspec-core (>= 2, < 4, != 2.12.0)
694
- rubocop (1.50.2)
698
+ rubocop (1.65.1)
695
699
  json (~> 2.3)
700
+ language_server-protocol (>= 3.17.0)
696
701
  parallel (~> 1.10)
697
- parser (>= 3.2.0.0)
702
+ parser (>= 3.3.0.2)
698
703
  rainbow (>= 2.2.2, < 4.0)
699
- regexp_parser (>= 1.8, < 3.0)
704
+ regexp_parser (>= 2.4, < 3.0)
700
705
  rexml (>= 3.2.5, < 4.0)
701
- rubocop-ast (>= 1.28.0, < 2.0)
706
+ rubocop-ast (>= 1.31.1, < 2.0)
702
707
  ruby-progressbar (~> 1.7)
703
708
  unicode-display_width (>= 2.4.0, < 3.0)
704
- rubocop-ast (1.31.2)
705
- parser (>= 3.3.0.4)
706
- rubocop-capybara (2.20.0)
707
- rubocop (~> 1.41)
708
- rubocop-factory_bot (2.25.1)
709
+ rubocop-ast (1.48.0)
710
+ parser (>= 3.3.7.2)
711
+ prism (~> 1.4)
712
+ rubocop-capybara (2.21.0)
709
713
  rubocop (~> 1.41)
710
- rubocop-faker (1.1.0)
714
+ rubocop-factory_bot (2.26.1)
715
+ rubocop (~> 1.61)
716
+ rubocop-faker (1.2.0)
711
717
  faker (>= 2.12.0)
712
- rubocop (>= 0.82.0)
713
- rubocop-rails (2.24.1)
718
+ rubocop (>= 1.13.0)
719
+ rubocop-performance (1.23.1)
720
+ rubocop (>= 1.48.1, < 2.0)
721
+ rubocop-ast (>= 1.31.1, < 2.0)
722
+ rubocop-rails (2.29.1)
714
723
  activesupport (>= 4.2.0)
715
724
  rack (>= 1.1)
716
- rubocop (>= 1.33.0, < 2.0)
725
+ rubocop (>= 1.52.0, < 2.0)
717
726
  rubocop-ast (>= 1.31.1, < 2.0)
718
- rubocop-rspec (2.29.2)
719
- rubocop (~> 1.40)
720
- rubocop-capybara (~> 2.17)
721
- rubocop-factory_bot (~> 2.22)
722
- rubocop-rspec_rails (~> 2.28)
723
- rubocop-rspec_rails (2.28.3)
724
- rubocop (~> 1.40)
727
+ rubocop-rspec (3.4.0)
728
+ rubocop (~> 1.61)
729
+ rubocop-rspec_rails (2.30.0)
730
+ rubocop (~> 1.61)
731
+ rubocop-rspec (~> 3, >= 3.0.1)
732
+ rubocop-rubycw (0.1.6)
733
+ rubocop (~> 1.0)
725
734
  ruby-progressbar (1.13.0)
726
- ruby-vips (2.2.1)
735
+ ruby-vips (2.2.5)
727
736
  ffi (~> 1.12)
728
- ruby2_keywords (0.0.5)
729
- rubyXL (3.4.26)
737
+ logger
738
+ rubyXL (3.4.33)
730
739
  nokogiri (>= 1.10.8)
731
740
  rubyzip (>= 1.3.0)
732
741
  rubyzip (2.3.2)
733
- sass (3.7.4)
734
- sass-listen (~> 4.0.0)
735
- sass-listen (4.0.0)
736
- rb-fsevent (~> 0.9, >= 0.9.4)
737
- rb-inotify (~> 0.9, >= 0.9.7)
738
- selenium-webdriver (4.20.1)
742
+ securerandom (0.4.1)
743
+ selenium-webdriver (4.39.0)
739
744
  base64 (~> 0.2)
745
+ logger (~> 1.4)
740
746
  rexml (~> 3.2, >= 3.2.5)
741
- rubyzip (>= 1.2.2, < 3.0)
747
+ rubyzip (>= 1.2.2, < 4.0)
742
748
  websocket (~> 1.0)
743
- semantic_range (3.0.0)
744
- seven_zip_ruby (1.3.0)
749
+ semantic_range (3.1.0)
745
750
  shakapacker (7.1.0)
746
751
  activesupport (>= 5.2)
747
752
  rack-proxy (>= 0.6.1)
@@ -754,44 +759,34 @@ GEM
754
759
  simplecov-cobertura (2.1.0)
755
760
  rexml
756
761
  simplecov (~> 0.19)
757
- simplecov-html (0.12.3)
762
+ simplecov-html (0.13.2)
758
763
  simplecov_json_formatter (0.1.4)
759
764
  smart_properties (1.17.0)
760
- snaky_hash (2.0.1)
761
- hashie
762
- version_gem (~> 1.1, >= 1.1.1)
763
- spring (2.1.1)
764
- spring-watcher-listen (2.0.1)
765
+ snaky_hash (2.0.3)
766
+ hashie (>= 0.1.0, < 6)
767
+ version_gem (>= 1.1.8, < 3)
768
+ spring (4.4.0)
769
+ spring-watcher-listen (2.1.0)
765
770
  listen (>= 2.7, < 4.0)
766
- spring (>= 1.2, < 3.0)
767
- sprockets (4.2.1)
768
- concurrent-ruby (~> 1.0)
769
- rack (>= 2.2.4, < 4)
770
- sprockets-rails (3.4.2)
771
- actionpack (>= 5.2)
772
- activesupport (>= 5.2)
773
- sprockets (>= 3.0.0)
774
- ssrf_filter (1.1.2)
775
- stringio (3.1.0)
776
- temple (0.10.3)
777
- terminal-table (3.0.2)
778
- unicode-display_width (>= 1.1.1, < 3)
779
- thor (1.3.1)
780
- tilt (2.3.0)
781
- timeout (0.4.1)
771
+ spring (>= 4)
772
+ stringio (3.1.9)
773
+ temple (0.10.4)
774
+ terminal-table (4.0.0)
775
+ unicode-display_width (>= 1.1.1, < 4)
776
+ thor (1.4.0)
777
+ tilt (2.6.1)
778
+ timeout (0.5.0)
779
+ trailblazer-option (0.1.2)
782
780
  tzinfo (2.0.6)
783
781
  concurrent-ruby (~> 1.0)
784
782
  uber (0.1.0)
785
- unicode-display_width (2.5.0)
786
- uniform_notifier (1.16.0)
783
+ unicode-display_width (2.6.0)
784
+ uniform_notifier (1.18.0)
785
+ uri (1.1.1)
787
786
  valid_email2 (4.0.6)
788
787
  activemodel (>= 3.2)
789
788
  mail (~> 2.5)
790
- version_gem (1.1.4)
791
- voting_schemes-dummy (0.24.4)
792
- rails (>= 5.0.0)
793
- voting_schemes-electionguard (0.24.4)
794
- rails (>= 5.0.0)
789
+ version_gem (1.1.9)
795
790
  w3c_rspec_validators (0.3.0)
796
791
  rails
797
792
  rspec
@@ -807,52 +802,48 @@ GEM
807
802
  activemodel (>= 6.0.0)
808
803
  bindex (>= 0.4.0)
809
804
  railties (>= 6.0.0)
810
- web-push (3.0.1)
811
- jwt (~> 2.0)
805
+ web-push (3.0.2)
806
+ jwt (~> 3.0)
812
807
  openssl (~> 3.0)
813
- webmock (3.23.0)
808
+ webmock (3.26.1)
814
809
  addressable (>= 2.8.0)
815
810
  crack (>= 0.3.2)
816
811
  hashdiff (>= 0.4.0, < 2.0.0)
817
- websocket (1.2.10)
818
- websocket-driver (0.7.6)
812
+ websocket (1.2.11)
813
+ websocket-driver (0.8.0)
814
+ base64
819
815
  websocket-extensions (>= 0.1.0)
820
816
  websocket-extensions (0.1.5)
821
- wicked_pdf (2.8.0)
817
+ wicked_pdf (2.8.2)
822
818
  activesupport
819
+ ostruct
823
820
  wisper (2.0.1)
824
821
  wisper-rspec (1.1.0)
825
- wkhtmltopdf-binary (0.12.6.6)
826
822
  xpath (3.2.0)
827
823
  nokogiri (~> 1.8)
828
- zeitwerk (2.6.13)
824
+ zeitwerk (2.7.3)
829
825
 
830
826
  PLATFORMS
831
- arm64-darwin-23
832
- x86_64-darwin-23
833
- x86_64-linux
827
+ ruby
834
828
 
835
829
  DEPENDENCIES
836
830
  bootsnap (~> 1.7)
831
+ brakeman (~> 6.1)
837
832
  byebug (~> 11.0)
838
833
  codecov
839
- decidim (= 0.28.1)
840
- decidim-dev (= 0.28.1)
841
- decidim-elections (= 0.28.1)
834
+ decidim (= 0.29.7)
835
+ decidim-dev (= 0.29.7)
842
836
  decidim-reporting_proposals!
843
- decidim-templates (= 0.28.1)
844
- faker (~> 3.2)
845
- letter_opener_web
837
+ decidim-templates (= 0.29.7)
838
+ letter_opener_web (~> 2.0)
846
839
  listen (~> 3.1)
840
+ parallel_tests (~> 4.2)
847
841
  puma (>= 6.3.1)
848
- rspec (~> 3.0)
849
- rubocop-faker (~> 1.1)
850
- spring (~> 2.0)
851
- spring-watcher-listen (~> 2.0)
852
- web-console
842
+ rexml (= 3.4.1)
843
+ web-console (~> 4.2)
853
844
 
854
845
  RUBY VERSION
855
- ruby 3.1.1p18
846
+ ruby 3.2.6p234
856
847
 
857
848
  BUNDLED WITH
858
- 2.4.22
849
+ 2.4.6