decidim-toggle 0.1.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 (151) hide show
  1. checksums.yaml +7 -0
  2. data/.erb-lint.yml +2134 -0
  3. data/.github/workflows/website.yml +57 -0
  4. data/.gitignore +13 -0
  5. data/.gitlab-ci.yml +165 -0
  6. data/.node-version +1 -0
  7. data/.rspec +1 -0
  8. data/.rubocop.yml +2 -0
  9. data/.ruby-version +1 -0
  10. data/.simplecov +18 -0
  11. data/CONTRIBUTING.md +17 -0
  12. data/Gemfile +33 -0
  13. data/Gemfile.lock +843 -0
  14. data/LICENSE.md +661 -0
  15. data/README.md +90 -0
  16. data/Rakefile +38 -0
  17. data/app/commands/decidim/toggle/update_authorizations_command.rb +31 -0
  18. data/app/commands/decidim/toggle/update_emails_command.rb +30 -0
  19. data/app/commands/decidim/toggle/update_file_upload_settings_command.rb +31 -0
  20. data/app/commands/decidim/toggle/update_locale_command.rb +47 -0
  21. data/app/commands/decidim/toggle/update_module_config_command.rb +31 -0
  22. data/app/commands/decidim/toggle/update_name_command.rb +31 -0
  23. data/app/commands/decidim/toggle/update_omniauth_command.rb +30 -0
  24. data/app/commands/decidim/toggle/update_security_command.rb +31 -0
  25. data/app/controllers/decidim_toggle/system/settings_tab_controller.rb +64 -0
  26. data/app/forms/decidim/toggle/update_authorizations_form.rb +54 -0
  27. data/app/forms/decidim/toggle/update_emails_form.rb +28 -0
  28. data/app/forms/decidim/toggle/update_file_upload_settings_form.rb +26 -0
  29. data/app/forms/decidim/toggle/update_locale_form.rb +116 -0
  30. data/app/forms/decidim/toggle/update_name_form.rb +63 -0
  31. data/app/forms/decidim/toggle/update_omniauth_form.rb +37 -0
  32. data/app/forms/decidim/toggle/update_security_form.rb +65 -0
  33. data/app/helpers/decidim/toggle/javascript_config_helper.rb +11 -0
  34. data/app/helpers/decidim/toggle/system_settings_tab_helper.rb +59 -0
  35. data/app/models/decidim/toggle/organization_module_config.rb +15 -0
  36. data/app/overrides/add_toggle_javascript_admin.rb +11 -0
  37. data/app/overrides/add_toggle_javascript_public.rb +11 -0
  38. data/app/packs/entrypoints/decidim_toggle.js +3 -0
  39. data/app/packs/src/decidim/toggle/organization_settings_tabs.js +114 -0
  40. data/app/packs/stylesheets/decidim/toggle/organization_settings.scss +160 -0
  41. data/app/views/decidim/system/organizations/edit.html.erb +20 -0
  42. data/app/views/decidim_toggle/system/organizations/_default_form_tab.html.erb +5 -0
  43. data/app/views/decidim_toggle/system/organizations/_encryption_not_configured_callout.html.erb +6 -0
  44. data/app/views/decidim_toggle/system/organizations/_settings_tab_active_tab_field.html.erb +1 -0
  45. data/app/views/decidim_toggle/system/organizations/_settings_tab_submit.html.erb +4 -0
  46. data/app/views/decidim_toggle/system/organizations/_settings_tabs.html.erb +31 -0
  47. data/app/views/decidim_toggle/system/organizations/tabs/_authorizations_tab.html.erb +9 -0
  48. data/app/views/decidim_toggle/system/organizations/tabs/_emails_tab.html.erb +5 -0
  49. data/app/views/decidim_toggle/system/organizations/tabs/_file_upload_tab.html.erb +5 -0
  50. data/app/views/decidim_toggle/system/organizations/tabs/_language_tab.html.erb +35 -0
  51. data/app/views/decidim_toggle/system/organizations/tabs/_omniauth_tab.html.erb +5 -0
  52. data/app/views/decidim_toggle/system/organizations/tabs/_security_tab.html.erb +20 -0
  53. data/app/views/layouts/decidim/toggle/_javascript_config.html.erb +3 -0
  54. data/bin/check +10 -0
  55. data/bin/i18n-tasks +27 -0
  56. data/bin/postversion +14 -0
  57. data/config/assets.rb +8 -0
  58. data/config/locales/decidim_toggle_en.yml +58 -0
  59. data/crowdin.yml +15 -0
  60. data/db/migrate/20260321120000_create_decidim_toggle_organization_module_configs.rb +20 -0
  61. data/decidim-toggle.gemspec +35 -0
  62. data/docker-compose.yml +41 -0
  63. data/lib/decidim/toggle/engine.rb +62 -0
  64. data/lib/decidim/toggle/expose_attributes_to_js.rb +26 -0
  65. data/lib/decidim/toggle/expose_attributes_to_js_validator.rb +32 -0
  66. data/lib/decidim/toggle/gem_registry.rb +15 -0
  67. data/lib/decidim/toggle/informative_callouts.rb +76 -0
  68. data/lib/decidim/toggle/javascript_config.rb +87 -0
  69. data/lib/decidim/toggle/module_config.rb +64 -0
  70. data/lib/decidim/toggle/module_config_form.rb +41 -0
  71. data/lib/decidim/toggle/module_config_i18n.rb +44 -0
  72. data/lib/decidim/toggle/module_configuration_presenter.rb +55 -0
  73. data/lib/decidim/toggle/organization_settings_tabs.rb +69 -0
  74. data/lib/decidim/toggle/settings_form_builder.rb +200 -0
  75. data/lib/decidim/toggle/settings_tab_item.rb +37 -0
  76. data/lib/decidim/toggle/settings_tab_registry.rb +109 -0
  77. data/lib/decidim/toggle/settings_tabs.rb +56 -0
  78. data/lib/decidim/toggle/tab_form.rb +20 -0
  79. data/lib/decidim/toggle/version.rb +14 -0
  80. data/lib/decidim/toggle.rb +36 -0
  81. data/lib/tasks/decidim/toggle/toggle_upgrade.rake +13 -0
  82. data/lib/tasks/decidim/toggle/toggle_webpacker.rake +60 -0
  83. data/log/.gitignore +2 -0
  84. data/package.json +18 -0
  85. data/prettier.config.js +15 -0
  86. data/spec/commands/decidim/toggle/update_authorizations_command_spec.rb +41 -0
  87. data/spec/commands/decidim/toggle/update_emails_command_spec.rb +84 -0
  88. data/spec/commands/decidim/toggle/update_file_upload_settings_command_spec.rb +28 -0
  89. data/spec/commands/decidim/toggle/update_locale_command_spec.rb +53 -0
  90. data/spec/commands/decidim/toggle/update_module_config_command_spec.rb +38 -0
  91. data/spec/commands/decidim/toggle/update_name_command_spec.rb +49 -0
  92. data/spec/commands/decidim/toggle/update_omniauth_command_spec.rb +80 -0
  93. data/spec/commands/decidim/toggle/update_security_command_spec.rb +25 -0
  94. data/spec/decidim/toggle/settings_tab_item_spec.rb +34 -0
  95. data/spec/decidim/toggle/settings_tab_registry_spec.rb +66 -0
  96. data/spec/decidim/toggle/settings_tabs_spec.rb +60 -0
  97. data/spec/forms/concerns/decidim/toggle/informative_callouts_spec.rb +48 -0
  98. data/spec/forms/decidim/toggle/update_authorizations_form_spec.rb +40 -0
  99. data/spec/forms/decidim/toggle/update_emails_form_spec.rb +35 -0
  100. data/spec/forms/decidim/toggle/update_file_upload_settings_form_spec.rb +20 -0
  101. data/spec/forms/decidim/toggle/update_locale_form_spec.rb +64 -0
  102. data/spec/forms/decidim/toggle/update_name_form_spec.rb +57 -0
  103. data/spec/forms/decidim/toggle/update_omniauth_form_spec.rb +56 -0
  104. data/spec/forms/decidim/toggle/update_security_form_spec.rb +32 -0
  105. data/spec/helpers/decidim/toggle/system_settings_tab_helper_spec.rb +99 -0
  106. data/spec/lib/decidim/toggle/expose_attributes_to_js_spec.rb +31 -0
  107. data/spec/lib/decidim/toggle/expose_attributes_to_js_validator_spec.rb +30 -0
  108. data/spec/lib/decidim/toggle/gem_registry_spec.rb +30 -0
  109. data/spec/lib/decidim/toggle/javascript_config_spec.rb +169 -0
  110. data/spec/lib/decidim/toggle/module_config_form_spec.rb +45 -0
  111. data/spec/lib/decidim/toggle/module_config_spec.rb +74 -0
  112. data/spec/lib/decidim/toggle/module_configuration_presenter_spec.rb +53 -0
  113. data/spec/lib/decidim/toggle/settings_form_builder_spec.rb +115 -0
  114. data/spec/requests/decidim_toggle/system/settings_tab_spec.rb +144 -0
  115. data/spec/spec_helper.rb +12 -0
  116. data/spec/support/decidim_factories.rb +3 -0
  117. data/spec/support/devise.rb +5 -0
  118. data/spec/system/decidim_toggle/javascript_config_spec.rb +56 -0
  119. data/website/.gitignore +4 -0
  120. data/website/docs/developer/_category_.json +8 -0
  121. data/website/docs/developer/code-of-conduct.md +99 -0
  122. data/website/docs/developer/contribute.md +50 -0
  123. data/website/docs/developer/deface-usage.md +37 -0
  124. data/website/docs/developer/documentation.md +58 -0
  125. data/website/docs/developer/error-handling.md +51 -0
  126. data/website/docs/developer/tab-registry.md +51 -0
  127. data/website/docs/developer/view-customization.md +49 -0
  128. data/website/docs/index.md +80 -0
  129. data/website/docs/integrate/_category_.json +8 -0
  130. data/website/docs/integrate/attributes.md +121 -0
  131. data/website/docs/integrate/customize-views.md +62 -0
  132. data/website/docs/integrate/index.md +38 -0
  133. data/website/docs/integrate/informative_callout.md +80 -0
  134. data/website/docs/integrate/javascript.md +84 -0
  135. data/website/docs/integrate/labels.md +91 -0
  136. data/website/docs/integrate/quickstart.md +77 -0
  137. data/website/docusaurus.config.ts +100 -0
  138. data/website/package.json +31 -0
  139. data/website/sidebars.ts +7 -0
  140. data/website/src/css/custom.css +37 -0
  141. data/website/static/img/logo.svg +1 -0
  142. data/website/static/img/schema_overview.png +0 -0
  143. data/website/static/img/screenshot_informative_callouts.png +0 -0
  144. data/website/static/img/screenshot_saved_flash.png +0 -0
  145. data/website/static/img/screenshots_locale_tab.png +0 -0
  146. data/website/static/img/screenshots_name_tab.png +0 -0
  147. data/website/static/img/screenshots_security_tab.png +0 -0
  148. data/website/tsconfig.json +6 -0
  149. data/website/yarn.lock +8336 -0
  150. data/yarn.lock +13 -0
  151. metadata +249 -0
data/Gemfile.lock ADDED
@@ -0,0 +1,843 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ decidim-toggle (0.1.1)
5
+ decidim-core (~> 0.29)
6
+ decidim-system (~> 0.29)
7
+ deface (~> 1.9.0)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (7.0.10)
13
+ actionpack (= 7.0.10)
14
+ activesupport (= 7.0.10)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (>= 0.6.1)
17
+ actionmailbox (7.0.10)
18
+ actionpack (= 7.0.10)
19
+ activejob (= 7.0.10)
20
+ activerecord (= 7.0.10)
21
+ activestorage (= 7.0.10)
22
+ activesupport (= 7.0.10)
23
+ mail (>= 2.7.1)
24
+ net-imap
25
+ net-pop
26
+ net-smtp
27
+ actionmailer (7.0.10)
28
+ actionpack (= 7.0.10)
29
+ actionview (= 7.0.10)
30
+ activejob (= 7.0.10)
31
+ activesupport (= 7.0.10)
32
+ mail (~> 2.5, >= 2.5.4)
33
+ net-imap
34
+ net-pop
35
+ net-smtp
36
+ rails-dom-testing (~> 2.0)
37
+ actionpack (7.0.10)
38
+ actionview (= 7.0.10)
39
+ activesupport (= 7.0.10)
40
+ racc
41
+ rack (~> 2.0, >= 2.2.4)
42
+ rack-test (>= 0.6.3)
43
+ rails-dom-testing (~> 2.0)
44
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
45
+ actiontext (7.0.10)
46
+ actionpack (= 7.0.10)
47
+ activerecord (= 7.0.10)
48
+ activestorage (= 7.0.10)
49
+ activesupport (= 7.0.10)
50
+ globalid (>= 0.6.0)
51
+ nokogiri (>= 1.8.5)
52
+ actionview (7.0.10)
53
+ activesupport (= 7.0.10)
54
+ builder (~> 3.1)
55
+ erubi (~> 1.4)
56
+ rails-dom-testing (~> 2.0)
57
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
58
+ active_link_to (1.0.5)
59
+ actionpack
60
+ addressable
61
+ activejob (7.0.10)
62
+ activesupport (= 7.0.10)
63
+ globalid (>= 0.3.6)
64
+ activemodel (7.0.10)
65
+ activesupport (= 7.0.10)
66
+ activerecord (7.0.10)
67
+ activemodel (= 7.0.10)
68
+ activesupport (= 7.0.10)
69
+ activestorage (7.0.10)
70
+ actionpack (= 7.0.10)
71
+ activejob (= 7.0.10)
72
+ activerecord (= 7.0.10)
73
+ activesupport (= 7.0.10)
74
+ marcel (~> 1.0)
75
+ mini_mime (>= 1.1.0)
76
+ activesupport (7.0.10)
77
+ base64
78
+ benchmark (>= 0.3)
79
+ bigdecimal
80
+ concurrent-ruby (~> 1.0, >= 1.0.2)
81
+ drb
82
+ i18n (>= 1.6, < 2)
83
+ logger (>= 1.4.2)
84
+ minitest (>= 5.1)
85
+ mutex_m
86
+ securerandom (>= 0.3)
87
+ tzinfo (~> 2.0)
88
+ acts_as_list (1.2.6)
89
+ activerecord (>= 6.1)
90
+ activesupport (>= 6.1)
91
+ addressable (2.8.9)
92
+ public_suffix (>= 2.0.2, < 8.0)
93
+ ast (2.4.3)
94
+ base64 (0.3.0)
95
+ batch-loader (1.5.0)
96
+ bcrypt (3.1.22)
97
+ benchmark (0.5.0)
98
+ better_html (2.2.0)
99
+ actionview (>= 7.0)
100
+ activesupport (>= 7.0)
101
+ ast (~> 2.0)
102
+ erubi (~> 1.4)
103
+ parser (>= 2.4)
104
+ smart_properties
105
+ bigdecimal (4.0.1)
106
+ bindex (0.8.1)
107
+ bootsnap (1.23.0)
108
+ msgpack (~> 1.2)
109
+ brakeman (6.2.2)
110
+ racc
111
+ browser (2.7.1)
112
+ builder (3.3.0)
113
+ bullet (7.1.6)
114
+ activesupport (>= 3.0.0)
115
+ uniform_notifier (~> 1.11)
116
+ byebug (11.1.3)
117
+ capybara (3.40.0)
118
+ addressable
119
+ matrix
120
+ mini_mime (>= 0.1.3)
121
+ nokogiri (~> 1.11)
122
+ rack (>= 1.6.0)
123
+ rack-test (>= 0.6.3)
124
+ regexp_parser (>= 1.5, < 3.0)
125
+ xpath (~> 3.2)
126
+ cells (4.1.8)
127
+ declarative-builder (~> 0.2.0)
128
+ declarative-option (< 0.2.0)
129
+ tilt (>= 1.4, < 3)
130
+ uber (< 0.2.0)
131
+ cells-erb (0.1.0)
132
+ cells (~> 4.0)
133
+ erbse (>= 0.1.1)
134
+ cells-rails (0.1.6)
135
+ actionpack (>= 5.0)
136
+ cells (>= 4.1.6, < 5.0.0)
137
+ charlock_holmes (0.7.9)
138
+ childprocess (5.1.0)
139
+ logger (~> 1.5)
140
+ commonmarker (0.23.12)
141
+ concurrent-ruby (1.3.6)
142
+ crack (1.0.1)
143
+ bigdecimal
144
+ rexml
145
+ crass (1.0.6)
146
+ css_parser (1.21.1)
147
+ addressable
148
+ csv (3.3.5)
149
+ dartsass (1.49.8)
150
+ date (3.5.1)
151
+ date_validator (0.12.0)
152
+ activemodel (>= 3)
153
+ activesupport (>= 3)
154
+ decidim (0.29.1)
155
+ decidim-accountability (= 0.29.1)
156
+ decidim-admin (= 0.29.1)
157
+ decidim-api (= 0.29.1)
158
+ decidim-assemblies (= 0.29.1)
159
+ decidim-blogs (= 0.29.1)
160
+ decidim-budgets (= 0.29.1)
161
+ decidim-comments (= 0.29.1)
162
+ decidim-core (= 0.29.1)
163
+ decidim-debates (= 0.29.1)
164
+ decidim-forms (= 0.29.1)
165
+ decidim-generators (= 0.29.1)
166
+ decidim-meetings (= 0.29.1)
167
+ decidim-pages (= 0.29.1)
168
+ decidim-participatory_processes (= 0.29.1)
169
+ decidim-proposals (= 0.29.1)
170
+ decidim-sortitions (= 0.29.1)
171
+ decidim-surveys (= 0.29.1)
172
+ decidim-system (= 0.29.1)
173
+ decidim-verifications (= 0.29.1)
174
+ decidim-accountability (0.29.1)
175
+ decidim-comments (= 0.29.1)
176
+ decidim-core (= 0.29.1)
177
+ decidim-admin (0.29.1)
178
+ active_link_to (~> 1.0)
179
+ decidim-core (= 0.29.1)
180
+ devise (~> 4.7)
181
+ devise-i18n (~> 1.2)
182
+ devise_invitable (~> 2.0, >= 2.0.9)
183
+ decidim-api (0.29.1)
184
+ decidim-core (= 0.29.1)
185
+ graphql (~> 2.2.6)
186
+ graphql-docs (~> 4.0)
187
+ rack-cors (~> 1.0)
188
+ decidim-assemblies (0.29.1)
189
+ decidim-core (= 0.29.1)
190
+ decidim-blogs (0.29.1)
191
+ decidim-admin (= 0.29.1)
192
+ decidim-comments (= 0.29.1)
193
+ decidim-core (= 0.29.1)
194
+ decidim-budgets (0.29.1)
195
+ decidim-comments (= 0.29.1)
196
+ decidim-core (= 0.29.1)
197
+ decidim-comments (0.29.1)
198
+ decidim-core (= 0.29.1)
199
+ redcarpet (~> 3.5, >= 3.5.1)
200
+ decidim-core (0.29.1)
201
+ active_link_to (~> 1.0)
202
+ acts_as_list (~> 1.0)
203
+ batch-loader (~> 1.2)
204
+ browser (~> 2.7)
205
+ cells-erb (~> 0.1.0)
206
+ cells-rails (~> 0.1.3)
207
+ charlock_holmes (~> 0.7)
208
+ date_validator (~> 0.12.0)
209
+ devise (~> 4.7)
210
+ devise-i18n (~> 1.2, < 1.11.1)
211
+ diffy (~> 3.3)
212
+ doorkeeper (~> 5.6, >= 5.6.6)
213
+ doorkeeper-i18n (~> 4.0)
214
+ file_validators (~> 3.0)
215
+ fog-local (~> 0.6)
216
+ foundation_rails_helper (~> 4.0)
217
+ geocoder (~> 1.8)
218
+ hashdiff (>= 0.4.0, < 2.0.0)
219
+ image_processing (~> 1.2)
220
+ invisible_captcha (~> 0.12)
221
+ kaminari (~> 1.2, >= 1.2.1)
222
+ loofah (~> 2.19, >= 2.19.1)
223
+ mime-types (>= 1.16, < 4.0)
224
+ mini_magick (~> 4.9)
225
+ net-smtp (~> 0.3.1)
226
+ nokogiri (~> 1.16, >= 1.16.2)
227
+ omniauth (~> 2.0)
228
+ omniauth-facebook (~> 5.0)
229
+ omniauth-google-oauth2 (~> 1.0)
230
+ omniauth-rails_csrf_protection (~> 1.0)
231
+ omniauth-twitter (~> 1.4)
232
+ paper_trail (~> 12.0)
233
+ pg (~> 1.4.0, < 2)
234
+ pg_search (~> 2.2)
235
+ premailer-rails (~> 1.10)
236
+ psych (~> 4.0)
237
+ rack (~> 2.2, >= 2.2.8.1)
238
+ rack-attack (~> 6.0)
239
+ rails (~> 7.0.8)
240
+ rails-i18n (~> 7.0)
241
+ ransack (~> 3.2.1)
242
+ redis (~> 4.1)
243
+ request_store (~> 1.5.0)
244
+ rubyXL (~> 3.4)
245
+ rubyzip (~> 2.0)
246
+ shakapacker (~> 7.1.0)
247
+ valid_email2 (~> 4.0)
248
+ web-push (~> 3.0)
249
+ wisper (~> 2.0)
250
+ decidim-debates (0.29.1)
251
+ decidim-comments (= 0.29.1)
252
+ decidim-core (= 0.29.1)
253
+ decidim-dev (0.29.1)
254
+ bullet (~> 7.1.6)
255
+ byebug (~> 11.0)
256
+ capybara (~> 3.39)
257
+ decidim (= 0.29.1)
258
+ erb_lint (~> 0.4.0)
259
+ factory_bot_rails (~> 6.2)
260
+ faker (~> 3.2)
261
+ i18n-tasks (~> 1.0)
262
+ nokogiri (~> 1.16, >= 1.16.2)
263
+ parallel_tests (~> 4.2)
264
+ puma (~> 6.2, >= 6.3.1)
265
+ rails-controller-testing (~> 1.0)
266
+ rspec (~> 3.12)
267
+ rspec-cells (~> 0.3.7)
268
+ rspec-html-matchers (~> 0.10)
269
+ rspec-rails (~> 6.0)
270
+ rspec-retry (~> 0.6.2)
271
+ rspec_junit_formatter (~> 0.6.0)
272
+ rubocop (~> 1.65.0)
273
+ rubocop-capybara (~> 2.21)
274
+ rubocop-factory_bot (~> 2.26)
275
+ rubocop-faker (~> 1.1)
276
+ rubocop-performance (~> 1.21)
277
+ rubocop-rails (~> 2.25)
278
+ rubocop-rspec (~> 3.0)
279
+ rubocop-rspec_rails (~> 2.30)
280
+ rubocop-rubycw (~> 0.1)
281
+ selenium-webdriver (~> 4.9)
282
+ simplecov (~> 0.22.0)
283
+ simplecov-cobertura (~> 2.1.0)
284
+ spring (~> 4.0)
285
+ spring-watcher-listen (~> 2.0)
286
+ w3c_rspec_validators (~> 0.3.0)
287
+ webmock (~> 3.18)
288
+ wisper-rspec (~> 1.0)
289
+ decidim-forms (0.29.1)
290
+ decidim-core (= 0.29.1)
291
+ wicked_pdf (~> 2.1)
292
+ wkhtmltopdf-binary (= 0.12.6.6)
293
+ decidim-generators (0.29.1)
294
+ decidim-core (= 0.29.1)
295
+ decidim-meetings (0.29.1)
296
+ decidim-core (= 0.29.1)
297
+ decidim-forms (= 0.29.1)
298
+ icalendar (~> 2.5)
299
+ decidim-pages (0.29.1)
300
+ decidim-core (= 0.29.1)
301
+ decidim-participatory_processes (0.29.1)
302
+ decidim-core (= 0.29.1)
303
+ decidim-proposals (0.29.1)
304
+ decidim-comments (= 0.29.1)
305
+ decidim-core (= 0.29.1)
306
+ doc2text (~> 0.4.7)
307
+ redcarpet (~> 3.5, >= 3.5.1)
308
+ decidim-sortitions (0.29.1)
309
+ decidim-admin (= 0.29.1)
310
+ decidim-comments (= 0.29.1)
311
+ decidim-core (= 0.29.1)
312
+ decidim-proposals (= 0.29.1)
313
+ decidim-surveys (0.29.1)
314
+ decidim-core (= 0.29.1)
315
+ decidim-forms (= 0.29.1)
316
+ decidim-system (0.29.1)
317
+ active_link_to (~> 1.0)
318
+ decidim-core (= 0.29.1)
319
+ devise (~> 4.7)
320
+ devise-i18n (~> 1.2)
321
+ devise_invitable (~> 2.0, >= 2.0.9)
322
+ decidim-verifications (0.29.1)
323
+ decidim-core (= 0.29.1)
324
+ declarative-builder (0.2.0)
325
+ trailblazer-option (~> 0.1.0)
326
+ declarative-option (0.1.0)
327
+ deface (1.9.0)
328
+ actionview (>= 5.2)
329
+ nokogiri (>= 1.6)
330
+ polyglot
331
+ railties (>= 5.2)
332
+ rainbow (>= 2.1.0)
333
+ devise (4.9.4)
334
+ bcrypt (~> 3.0)
335
+ orm_adapter (~> 0.1)
336
+ railties (>= 4.1.0)
337
+ responders
338
+ warden (~> 1.2.3)
339
+ devise-i18n (1.11.0)
340
+ devise (>= 4.9.0)
341
+ devise_invitable (2.0.11)
342
+ actionmailer (>= 5.0)
343
+ devise (>= 4.6)
344
+ diff-lcs (1.6.2)
345
+ diffy (3.4.4)
346
+ doc2text (0.4.8)
347
+ nokogiri (>= 1.18.2)
348
+ rubyzip (~> 2.3.0)
349
+ docile (1.4.1)
350
+ doorkeeper (5.9.0)
351
+ railties (>= 5)
352
+ doorkeeper-i18n (4.0.1)
353
+ drb (2.2.3)
354
+ erb_lint (0.4.0)
355
+ activesupport
356
+ better_html (>= 2.0.1)
357
+ parser (>= 2.7.1.4)
358
+ rainbow
359
+ rubocop
360
+ smart_properties
361
+ erbse (0.1.4)
362
+ temple
363
+ erubi (1.13.1)
364
+ escape_utils (1.3.0)
365
+ excon (1.4.2)
366
+ logger
367
+ extended-markdown-filter (0.7.0)
368
+ html-pipeline (~> 2.9)
369
+ factory_bot (6.5.6)
370
+ activesupport (>= 6.1.0)
371
+ factory_bot_rails (6.5.1)
372
+ factory_bot (~> 6.5)
373
+ railties (>= 6.1.0)
374
+ faker (3.6.0)
375
+ i18n (>= 1.8.11, < 2)
376
+ faraday (2.14.1)
377
+ faraday-net_http (>= 2.0, < 3.5)
378
+ json
379
+ logger
380
+ faraday-net_http (3.4.2)
381
+ net-http (~> 0.5)
382
+ ffi (1.17.3-x86_64-linux-gnu)
383
+ file_validators (3.0.0)
384
+ activemodel (>= 3.2)
385
+ mime-types (>= 1.0)
386
+ fog-core (2.6.0)
387
+ builder
388
+ excon (~> 1.0)
389
+ formatador (>= 0.2, < 2.0)
390
+ mime-types
391
+ fog-local (0.9.0)
392
+ fog-core (>= 1.27, < 3.0)
393
+ formatador (1.2.3)
394
+ reline
395
+ foundation_rails_helper (4.0.1)
396
+ actionpack (>= 4.1, < 7.1)
397
+ activemodel (>= 4.1, < 7.1)
398
+ activesupport (>= 4.1, < 7.1)
399
+ railties (>= 4.1, < 7.1)
400
+ gemoji (3.0.1)
401
+ geocoder (1.8.6)
402
+ base64 (>= 0.1.0)
403
+ csv (>= 3.0.0)
404
+ globalid (1.3.0)
405
+ activesupport (>= 6.1)
406
+ graphql (2.2.17)
407
+ base64
408
+ graphql-docs (4.0.0)
409
+ commonmarker (~> 0.23, >= 0.23.6)
410
+ dartsass (~> 1.49)
411
+ escape_utils (~> 1.2)
412
+ extended-markdown-filter (~> 0.4)
413
+ gemoji (~> 3.0)
414
+ graphql (~> 2.0)
415
+ html-pipeline (~> 2.14, >= 2.14.3)
416
+ hashdiff (1.2.1)
417
+ hashie (5.1.0)
418
+ logger
419
+ highline (3.1.2)
420
+ reline
421
+ html-pipeline (2.14.3)
422
+ activesupport (>= 2)
423
+ nokogiri (>= 1.4)
424
+ htmlentities (4.4.2)
425
+ i18n (1.14.8)
426
+ concurrent-ruby (~> 1.0)
427
+ i18n-tasks (1.1.2)
428
+ activesupport (>= 4.0.2)
429
+ ast (>= 2.1.0)
430
+ erubi
431
+ highline (>= 3.0.0)
432
+ i18n
433
+ parser (>= 3.2.2.1)
434
+ prism
435
+ rails-i18n
436
+ rainbow (>= 2.2.2, < 4.0)
437
+ ruby-progressbar (~> 1.8, >= 1.8.1)
438
+ terminal-table (>= 1.5.1)
439
+ icalendar (2.12.1)
440
+ base64
441
+ ice_cube (~> 0.16)
442
+ logger
443
+ ostruct
444
+ ice_cube (0.17.0)
445
+ image_processing (1.14.0)
446
+ mini_magick (>= 4.9.5, < 6)
447
+ ruby-vips (>= 2.0.17, < 3)
448
+ invisible_captcha (0.13.0)
449
+ rails (>= 3.2.0)
450
+ io-console (0.8.2)
451
+ json (2.19.2)
452
+ jwt (3.1.2)
453
+ base64
454
+ kaminari (1.2.2)
455
+ activesupport (>= 4.1.0)
456
+ kaminari-actionview (= 1.2.2)
457
+ kaminari-activerecord (= 1.2.2)
458
+ kaminari-core (= 1.2.2)
459
+ kaminari-actionview (1.2.2)
460
+ actionview
461
+ kaminari-core (= 1.2.2)
462
+ kaminari-activerecord (1.2.2)
463
+ activerecord
464
+ kaminari-core (= 1.2.2)
465
+ kaminari-core (1.2.2)
466
+ language_server-protocol (3.17.0.5)
467
+ launchy (3.1.1)
468
+ addressable (~> 2.8)
469
+ childprocess (~> 5.0)
470
+ logger (~> 1.6)
471
+ letter_opener (1.10.0)
472
+ launchy (>= 2.2, < 4)
473
+ letter_opener_web (2.0.0)
474
+ actionmailer (>= 5.2)
475
+ letter_opener (~> 1.7)
476
+ railties (>= 5.2)
477
+ rexml
478
+ listen (3.10.0)
479
+ logger
480
+ rb-fsevent (~> 0.10, >= 0.10.3)
481
+ rb-inotify (~> 0.9, >= 0.9.10)
482
+ logger (1.7.0)
483
+ loofah (2.25.1)
484
+ crass (~> 1.0.2)
485
+ nokogiri (>= 1.12.0)
486
+ mail (2.9.0)
487
+ logger
488
+ mini_mime (>= 0.1.1)
489
+ net-imap
490
+ net-pop
491
+ net-smtp
492
+ marcel (1.1.0)
493
+ matrix (0.4.3)
494
+ method_source (1.1.0)
495
+ mime-types (3.7.0)
496
+ logger
497
+ mime-types-data (~> 3.2025, >= 3.2025.0507)
498
+ mime-types-data (3.2026.0317)
499
+ mini_magick (4.13.2)
500
+ mini_mime (1.1.5)
501
+ minitest (6.0.2)
502
+ drb (~> 2.0)
503
+ prism (~> 1.5)
504
+ msgpack (1.8.0)
505
+ multi_xml (0.8.1)
506
+ bigdecimal (>= 3.1, < 5)
507
+ mutex_m (0.3.0)
508
+ net-http (0.9.1)
509
+ uri (>= 0.11.1)
510
+ net-imap (0.6.3)
511
+ date
512
+ net-protocol
513
+ net-pop (0.1.2)
514
+ net-protocol
515
+ net-protocol (0.2.2)
516
+ timeout
517
+ net-smtp (0.3.4)
518
+ net-protocol
519
+ nio4r (2.7.5)
520
+ nokogiri (1.19.2-x86_64-linux-gnu)
521
+ racc (~> 1.4)
522
+ oauth (1.1.3)
523
+ base64 (~> 0.1)
524
+ oauth-tty (~> 1.0, >= 1.0.6)
525
+ snaky_hash (~> 2.0)
526
+ version_gem (~> 1.1, >= 1.1.9)
527
+ oauth-tty (1.0.6)
528
+ version_gem (~> 1.1, >= 1.1.9)
529
+ oauth2 (2.0.18)
530
+ faraday (>= 0.17.3, < 4.0)
531
+ jwt (>= 1.0, < 4.0)
532
+ logger (~> 1.2)
533
+ multi_xml (~> 0.5)
534
+ rack (>= 1.2, < 4)
535
+ snaky_hash (~> 2.0, >= 2.0.3)
536
+ version_gem (~> 1.1, >= 1.1.9)
537
+ omniauth (2.1.4)
538
+ hashie (>= 3.4.6)
539
+ logger
540
+ rack (>= 2.2.3)
541
+ rack-protection
542
+ omniauth-facebook (5.0.0)
543
+ omniauth-oauth2 (~> 1.2)
544
+ omniauth-google-oauth2 (1.2.2)
545
+ jwt (>= 2.9.2)
546
+ oauth2 (~> 2.0)
547
+ omniauth (~> 2.0)
548
+ omniauth-oauth2 (~> 1.8)
549
+ omniauth-oauth (1.2.1)
550
+ oauth
551
+ omniauth (>= 1.0, < 3)
552
+ rack (>= 1.6.2, < 4)
553
+ omniauth-oauth2 (1.9.0)
554
+ oauth2 (>= 2.0.2, < 3)
555
+ omniauth (~> 2.0)
556
+ omniauth-rails_csrf_protection (1.0.2)
557
+ actionpack (>= 4.2)
558
+ omniauth (~> 2.0)
559
+ omniauth-twitter (1.4.0)
560
+ omniauth-oauth (~> 1.1)
561
+ rack
562
+ openssl (4.0.1)
563
+ orm_adapter (0.5.0)
564
+ ostruct (0.6.3)
565
+ paper_trail (12.3.0)
566
+ activerecord (>= 5.2)
567
+ request_store (~> 1.1)
568
+ parallel (1.27.0)
569
+ parallel_tests (4.10.1)
570
+ parallel
571
+ parser (3.3.10.2)
572
+ ast (~> 2.4.1)
573
+ racc
574
+ pg (1.4.6)
575
+ pg_search (2.3.7)
576
+ activerecord (>= 6.1)
577
+ activesupport (>= 6.1)
578
+ polyglot (0.3.5)
579
+ premailer (1.27.0)
580
+ addressable
581
+ css_parser (>= 1.19.0)
582
+ htmlentities (>= 4.0.0)
583
+ premailer-rails (1.12.0)
584
+ actionmailer (>= 3)
585
+ net-smtp
586
+ premailer (~> 1.7, >= 1.7.9)
587
+ prism (1.9.0)
588
+ psych (4.0.6)
589
+ stringio
590
+ public_suffix (7.0.5)
591
+ puma (6.6.1)
592
+ nio4r (~> 2.0)
593
+ racc (1.8.1)
594
+ rack (2.2.22)
595
+ rack-attack (6.8.0)
596
+ rack (>= 1.0, < 4)
597
+ rack-cors (1.1.1)
598
+ rack (>= 2.0.0)
599
+ rack-protection (3.2.0)
600
+ base64 (>= 0.1.0)
601
+ rack (~> 2.2, >= 2.2.4)
602
+ rack-proxy (0.7.7)
603
+ rack
604
+ rack-test (2.2.0)
605
+ rack (>= 1.3)
606
+ rails (7.0.10)
607
+ actioncable (= 7.0.10)
608
+ actionmailbox (= 7.0.10)
609
+ actionmailer (= 7.0.10)
610
+ actionpack (= 7.0.10)
611
+ actiontext (= 7.0.10)
612
+ actionview (= 7.0.10)
613
+ activejob (= 7.0.10)
614
+ activemodel (= 7.0.10)
615
+ activerecord (= 7.0.10)
616
+ activestorage (= 7.0.10)
617
+ activesupport (= 7.0.10)
618
+ bundler (>= 1.15.0)
619
+ railties (= 7.0.10)
620
+ rails-controller-testing (1.0.5)
621
+ actionpack (>= 5.0.1.rc1)
622
+ actionview (>= 5.0.1.rc1)
623
+ activesupport (>= 5.0.1.rc1)
624
+ rails-dom-testing (2.3.0)
625
+ activesupport (>= 5.0.0)
626
+ minitest
627
+ nokogiri (>= 1.6)
628
+ rails-html-sanitizer (1.7.0)
629
+ loofah (~> 2.25)
630
+ 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)
631
+ rails-i18n (7.0.10)
632
+ i18n (>= 0.7, < 2)
633
+ railties (>= 6.0.0, < 8)
634
+ railties (7.0.10)
635
+ actionpack (= 7.0.10)
636
+ activesupport (= 7.0.10)
637
+ method_source
638
+ rake (>= 12.2)
639
+ thor (~> 1.0)
640
+ zeitwerk (~> 2.5)
641
+ rainbow (3.1.1)
642
+ rake (13.3.1)
643
+ ransack (3.2.1)
644
+ activerecord (>= 6.1.5)
645
+ activesupport (>= 6.1.5)
646
+ i18n
647
+ rb-fsevent (0.11.2)
648
+ rb-inotify (0.11.1)
649
+ ffi (~> 1.0)
650
+ redcarpet (3.6.1)
651
+ redis (4.8.1)
652
+ regexp_parser (2.11.3)
653
+ reline (0.6.3)
654
+ io-console (~> 0.5)
655
+ request_store (1.5.1)
656
+ rack (>= 1.4)
657
+ responders (3.2.0)
658
+ actionpack (>= 7.0)
659
+ railties (>= 7.0)
660
+ rexml (3.4.4)
661
+ rspec (3.13.2)
662
+ rspec-core (~> 3.13.0)
663
+ rspec-expectations (~> 3.13.0)
664
+ rspec-mocks (~> 3.13.0)
665
+ rspec-cells (0.3.10)
666
+ cells (>= 4.0.0, < 6.0.0)
667
+ rspec-rails (>= 3.0.0)
668
+ rspec-core (3.13.6)
669
+ rspec-support (~> 3.13.0)
670
+ rspec-expectations (3.13.5)
671
+ diff-lcs (>= 1.2.0, < 2.0)
672
+ rspec-support (~> 3.13.0)
673
+ rspec-html-matchers (0.10.0)
674
+ nokogiri (~> 1)
675
+ rspec (>= 3.0.0.a)
676
+ rspec-mocks (3.13.7)
677
+ diff-lcs (>= 1.2.0, < 2.0)
678
+ rspec-support (~> 3.13.0)
679
+ rspec-rails (6.1.5)
680
+ actionpack (>= 6.1)
681
+ activesupport (>= 6.1)
682
+ railties (>= 6.1)
683
+ rspec-core (~> 3.13)
684
+ rspec-expectations (~> 3.13)
685
+ rspec-mocks (~> 3.13)
686
+ rspec-support (~> 3.13)
687
+ rspec-retry (0.6.2)
688
+ rspec-core (> 3.3)
689
+ rspec-support (3.13.7)
690
+ rspec_junit_formatter (0.6.0)
691
+ rspec-core (>= 2, < 4, != 2.12.0)
692
+ rubocop (1.65.1)
693
+ json (~> 2.3)
694
+ language_server-protocol (>= 3.17.0)
695
+ parallel (~> 1.10)
696
+ parser (>= 3.3.0.2)
697
+ rainbow (>= 2.2.2, < 4.0)
698
+ regexp_parser (>= 2.4, < 3.0)
699
+ rexml (>= 3.2.5, < 4.0)
700
+ rubocop-ast (>= 1.31.1, < 2.0)
701
+ ruby-progressbar (~> 1.7)
702
+ unicode-display_width (>= 2.4.0, < 3.0)
703
+ rubocop-ast (1.49.0)
704
+ parser (>= 3.3.7.2)
705
+ prism (~> 1.7)
706
+ rubocop-capybara (2.21.0)
707
+ rubocop (~> 1.41)
708
+ rubocop-factory_bot (2.26.1)
709
+ rubocop (~> 1.61)
710
+ rubocop-faker (1.2.0)
711
+ faker (>= 2.12.0)
712
+ rubocop (>= 1.13.0)
713
+ rubocop-performance (1.23.1)
714
+ rubocop (>= 1.48.1, < 2.0)
715
+ rubocop-ast (>= 1.31.1, < 2.0)
716
+ rubocop-rails (2.25.1)
717
+ activesupport (>= 4.2.0)
718
+ rack (>= 1.1)
719
+ rubocop (>= 1.33.0, < 2.0)
720
+ rubocop-ast (>= 1.31.1, < 2.0)
721
+ rubocop-rspec (3.4.0)
722
+ rubocop (~> 1.61)
723
+ rubocop-rspec_rails (2.30.0)
724
+ rubocop (~> 1.61)
725
+ rubocop-rspec (~> 3, >= 3.0.1)
726
+ rubocop-rubycw (0.1.6)
727
+ rubocop (~> 1.0)
728
+ ruby-progressbar (1.13.0)
729
+ ruby-vips (2.3.0)
730
+ ffi (~> 1.12)
731
+ logger
732
+ rubyXL (3.4.33)
733
+ nokogiri (>= 1.10.8)
734
+ rubyzip (>= 1.3.0)
735
+ rubyzip (2.3.2)
736
+ securerandom (0.4.1)
737
+ selenium-webdriver (4.41.0)
738
+ base64 (~> 0.2)
739
+ logger (~> 1.4)
740
+ rexml (~> 3.2, >= 3.2.5)
741
+ rubyzip (>= 1.2.2, < 4.0)
742
+ websocket (~> 1.0)
743
+ semantic_range (3.1.1)
744
+ shakapacker (7.1.0)
745
+ activesupport (>= 5.2)
746
+ rack-proxy (>= 0.6.1)
747
+ railties (>= 5.2)
748
+ semantic_range (>= 2.3.0)
749
+ simplecov (0.22.0)
750
+ docile (~> 1.1)
751
+ simplecov-html (~> 0.11)
752
+ simplecov_json_formatter (~> 0.1)
753
+ simplecov-cobertura (2.1.0)
754
+ rexml
755
+ simplecov (~> 0.19)
756
+ simplecov-html (0.13.2)
757
+ simplecov_json_formatter (0.1.4)
758
+ smart_properties (1.17.0)
759
+ snaky_hash (2.0.3)
760
+ hashie (>= 0.1.0, < 6)
761
+ version_gem (>= 1.1.8, < 3)
762
+ spring (4.4.2)
763
+ spring-watcher-listen (2.1.0)
764
+ listen (>= 2.7, < 4.0)
765
+ spring (>= 4)
766
+ stringio (3.2.0)
767
+ temple (0.10.4)
768
+ terminal-table (4.0.0)
769
+ unicode-display_width (>= 1.1.1, < 4)
770
+ thor (1.5.0)
771
+ tilt (2.7.0)
772
+ timeout (0.6.1)
773
+ trailblazer-option (0.1.2)
774
+ tzinfo (2.0.6)
775
+ concurrent-ruby (~> 1.0)
776
+ uber (0.1.0)
777
+ unicode-display_width (2.6.0)
778
+ uniform_notifier (1.18.0)
779
+ uri (1.1.1)
780
+ valid_email2 (4.0.6)
781
+ activemodel (>= 3.2)
782
+ mail (~> 2.5)
783
+ version_gem (1.1.9)
784
+ w3c_rspec_validators (0.3.0)
785
+ rails
786
+ rspec
787
+ w3c_validators
788
+ w3c_validators (1.3.7)
789
+ json (>= 1.8)
790
+ nokogiri (~> 1.6)
791
+ rexml (~> 3.2)
792
+ warden (1.2.9)
793
+ rack (>= 2.0.9)
794
+ web-console (4.2.1)
795
+ actionview (>= 6.0.0)
796
+ activemodel (>= 6.0.0)
797
+ bindex (>= 0.4.0)
798
+ railties (>= 6.0.0)
799
+ web-push (3.1.0)
800
+ jwt (~> 3.0)
801
+ openssl (>= 3.0)
802
+ webmock (3.26.1)
803
+ addressable (>= 2.8.0)
804
+ crack (>= 0.3.2)
805
+ hashdiff (>= 0.4.0, < 2.0.0)
806
+ websocket (1.2.11)
807
+ websocket-driver (0.8.0)
808
+ base64
809
+ websocket-extensions (>= 0.1.0)
810
+ websocket-extensions (0.1.5)
811
+ wicked_pdf (2.8.2)
812
+ activesupport
813
+ ostruct
814
+ wisper (2.0.1)
815
+ wisper-rspec (1.1.0)
816
+ wkhtmltopdf-binary (0.12.6.6)
817
+ xpath (3.2.0)
818
+ nokogiri (~> 1.8)
819
+ zeitwerk (2.7.5)
820
+
821
+ PLATFORMS
822
+ x86_64-linux
823
+
824
+ DEPENDENCIES
825
+ bootsnap (~> 1.4)
826
+ brakeman (~> 6.1)
827
+ byebug (~> 11.0)
828
+ decidim (~> 0.29)
829
+ decidim-dev (~> 0.29)
830
+ decidim-toggle!
831
+ faker (~> 3.6)
832
+ letter_opener_web (~> 2.0)
833
+ listen (~> 3.1)
834
+ parallel_tests (~> 4.2)
835
+ puma (>= 6.3.1)
836
+ rubocop-rails (~> 2.25.1)
837
+ web-console (~> 4.2)
838
+
839
+ RUBY VERSION
840
+ ruby 3.2.2p53
841
+
842
+ BUNDLED WITH
843
+ 2.4.6