decidim-assemblies 0.26.0.rc1 → 0.26.1
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 +4 -4
- data/app/permissions/decidim/assemblies/permissions.rb +0 -8
- data/app/views/decidim/assemblies/assemblies/show.html.erb +2 -1
- data/app/views/layouts/decidim/_assembly_header.html.erb +3 -3
- data/config/locales/ar.yml +6 -0
- data/config/locales/ca.yml +2 -0
- data/config/locales/cs.yml +3 -0
- data/config/locales/en.yml +3 -0
- data/config/locales/es-MX.yml +7 -0
- data/config/locales/es-PY.yml +7 -0
- data/config/locales/eu.yml +1 -1
- data/config/locales/fi-plain.yml +3 -0
- data/config/locales/fi.yml +3 -0
- data/config/locales/fr-CA.yml +3 -0
- data/config/locales/fr.yml +7 -4
- data/config/locales/gl.yml +3 -0
- data/config/locales/it.yml +3 -0
- data/config/locales/ja.yml +8 -5
- data/config/locales/no.yml +15 -0
- data/lib/decidim/assemblies/version.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fbd3f2ca6611455f240ca82fb5e3dc0fcd309074f44f526787ed5f3331814562
|
|
4
|
+
data.tar.gz: 0c61728b36ce0a869f7e90f99c18ca7f39d0c273f444a5576c5c6731011ca119
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab13951de03be92ac8a048746f378488418703c72338c2c4b6bfe660d7d43386fef8929a8a332c118ef9ad31e3199cef57cce9e4a3686b8fc7976f928210e0ab
|
|
7
|
+
data.tar.gz: cbf210fbf9c5a30338f59df17ea9bd3f2c2108fdbfc293f36fcf7bcfe07195dd77525caee35cf64aa20004bf89621074b0596ab54942b2b2a07fc2506d99c04e
|
|
@@ -17,7 +17,6 @@ module Decidim
|
|
|
17
17
|
public_list_assemblies_action?
|
|
18
18
|
public_read_assembly_action?
|
|
19
19
|
public_list_members_action?
|
|
20
|
-
public_report_content_action?
|
|
21
20
|
return permission_action
|
|
22
21
|
end
|
|
23
22
|
|
|
@@ -125,13 +124,6 @@ module Decidim
|
|
|
125
124
|
allow!
|
|
126
125
|
end
|
|
127
126
|
|
|
128
|
-
def public_report_content_action?
|
|
129
|
-
return unless permission_action.action == :create &&
|
|
130
|
-
permission_action.subject == :moderation
|
|
131
|
-
|
|
132
|
-
allow!
|
|
133
|
-
end
|
|
134
|
-
|
|
135
127
|
# All users with a relation to a assembly and organization admins can enter
|
|
136
128
|
# the space area. The sapce area is considered to be the assemblies zone,
|
|
137
129
|
# not the assembly groups one.
|
|
@@ -35,6 +35,7 @@ edit_link(
|
|
|
35
35
|
<div class="row">
|
|
36
36
|
<div class="columns medium-7 mediumlarge-8">
|
|
37
37
|
<div class="section">
|
|
38
|
+
<h2 class="show-for-sr"><%= t(".title") %></h2>
|
|
38
39
|
<div class="lead">
|
|
39
40
|
<%= decidim_sanitize_editor translated_attribute(current_participatory_space.short_description) %>
|
|
40
41
|
</div>
|
|
@@ -85,7 +86,7 @@ edit_link(
|
|
|
85
86
|
|
|
86
87
|
<%= render_hook(:participatory_space_highlighted_elements) %>
|
|
87
88
|
|
|
88
|
-
<% if current_participatory_space.children.visible_for(current_user).count.positive? %>
|
|
89
|
+
<% if current_participatory_space.children.visible_for(current_user).published.count.positive? %>
|
|
89
90
|
<section id="assemblies-grid" class="section row collapse">
|
|
90
91
|
<h3 class="section-heading"><%= t("children", scope: "decidim.assemblies.show") %></h3>
|
|
91
92
|
<div class="row small-up-1 medium-up-2 large-up-2 card-grid">
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
</h1>
|
|
12
12
|
</div>
|
|
13
13
|
<div>
|
|
14
|
-
<
|
|
14
|
+
<p class="text-highlight heading-small">
|
|
15
15
|
<% if current_participatory_space.hashtag.present? %>
|
|
16
16
|
<span class="process-header__hashtag">
|
|
17
|
-
<%= link_to "##{current_participatory_space.hashtag}",
|
|
17
|
+
<%= link_to "##{current_participatory_space.hashtag}", twitter_hashtag_url(current_participatory_space.hashtag), target: "_blank" %>
|
|
18
18
|
</span>
|
|
19
19
|
<% end %>
|
|
20
20
|
<%= translated_attribute(current_participatory_space.subtitle) %>
|
|
21
|
-
</
|
|
21
|
+
</p>
|
|
22
22
|
</div>
|
|
23
23
|
</div>
|
|
24
24
|
</div>
|
data/config/locales/ar.yml
CHANGED
|
@@ -58,7 +58,9 @@ ar:
|
|
|
58
58
|
designation_date: تاريخ التعيين
|
|
59
59
|
full_name: الاسم الكامل
|
|
60
60
|
gender: الجنس
|
|
61
|
+
non_user_avatar: الصورة الرمزية
|
|
61
62
|
position: الموقع
|
|
63
|
+
user_id: مستخدم أو مجموعة
|
|
62
64
|
assembly_user_role:
|
|
63
65
|
email: البريد الإلكتروني
|
|
64
66
|
name: الاسم
|
|
@@ -89,6 +91,7 @@ ar:
|
|
|
89
91
|
decidim:
|
|
90
92
|
admin:
|
|
91
93
|
actions:
|
|
94
|
+
import_assembly: استيراد
|
|
92
95
|
new_assembly: جمعية جديدة
|
|
93
96
|
new_assembly_type: نوع جديد للجمعية
|
|
94
97
|
assemblies:
|
|
@@ -128,6 +131,9 @@ ar:
|
|
|
128
131
|
copy: نسخ
|
|
129
132
|
select: حدد البيانات التي ترغب في تكرارها
|
|
130
133
|
title: نسخ الجمعية
|
|
134
|
+
assembly_imports:
|
|
135
|
+
new:
|
|
136
|
+
import: استيراد
|
|
131
137
|
assembly_members:
|
|
132
138
|
create:
|
|
133
139
|
error: حدثت مشكلة أثناء إضافة عضو لهذا التجميع.
|
data/config/locales/ca.yml
CHANGED
|
@@ -300,7 +300,9 @@ ca:
|
|
|
300
300
|
form:
|
|
301
301
|
existing_user: Participant existent
|
|
302
302
|
explanation: 'Instruccions per a la imatge:'
|
|
303
|
+
image_guide: Preferiblement una imatge apaïsada que no tingui cap text.
|
|
303
304
|
non_user: No participant
|
|
305
|
+
non_user_avatar_help: Cal tenir el consentiment de la persona abans publicar-la com a membre.
|
|
304
306
|
select_a_position: Selecciona una posició
|
|
305
307
|
select_user: Selecciona una participant
|
|
306
308
|
user_type: Tipus de participant
|
data/config/locales/cs.yml
CHANGED
data/config/locales/en.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
|
@@ -61,6 +61,7 @@ es-MX:
|
|
|
61
61
|
designation_date: Fecha de designación
|
|
62
62
|
full_name: Nombre completo
|
|
63
63
|
gender: Género
|
|
64
|
+
non_user_avatar: Avatar
|
|
64
65
|
position: Posición
|
|
65
66
|
user_id: Usuaria
|
|
66
67
|
assembly_user_role:
|
|
@@ -181,6 +182,9 @@ es-MX:
|
|
|
181
182
|
update:
|
|
182
183
|
error: Ha habido un error al actualizar un usuario para esta asamblea.
|
|
183
184
|
success: Usuario actualizado con éxito para esta asamblea.
|
|
185
|
+
filters:
|
|
186
|
+
decidim_assemblies_type_id_eq:
|
|
187
|
+
label: Tipo de asamblea
|
|
184
188
|
menu:
|
|
185
189
|
assemblies: Asambleas
|
|
186
190
|
assemblies_settings: Configuración
|
|
@@ -295,7 +299,10 @@ es-MX:
|
|
|
295
299
|
assembly_members:
|
|
296
300
|
form:
|
|
297
301
|
existing_user: Usuario existente
|
|
302
|
+
explanation: 'Instrucciones para la imagen:'
|
|
303
|
+
image_guide: Preferiblemente una imagen apaisada que no tenga ningún texto.
|
|
298
304
|
non_user: No usuario
|
|
305
|
+
non_user_avatar_help: Debes obtener el consentimiento de las personas antes de publicarlas como miembros.
|
|
299
306
|
select_a_position: Selecciona una posición
|
|
300
307
|
select_user: Selecciona un usuario
|
|
301
308
|
user_type: Tipo de usuario
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -61,6 +61,7 @@ es-PY:
|
|
|
61
61
|
designation_date: Fecha de designación
|
|
62
62
|
full_name: Nombre completo
|
|
63
63
|
gender: Género
|
|
64
|
+
non_user_avatar: Avatar
|
|
64
65
|
position: Posición
|
|
65
66
|
user_id: Usuaria
|
|
66
67
|
assembly_user_role:
|
|
@@ -181,6 +182,9 @@ es-PY:
|
|
|
181
182
|
update:
|
|
182
183
|
error: Ha habido un error al actualizar un usuario para esta asamblea.
|
|
183
184
|
success: Usuario actualizado con éxito para esta asamblea.
|
|
185
|
+
filters:
|
|
186
|
+
decidim_assemblies_type_id_eq:
|
|
187
|
+
label: Tipo de asamblea
|
|
184
188
|
menu:
|
|
185
189
|
assemblies: Asambleas
|
|
186
190
|
assemblies_settings: Configuración
|
|
@@ -295,7 +299,10 @@ es-PY:
|
|
|
295
299
|
assembly_members:
|
|
296
300
|
form:
|
|
297
301
|
existing_user: Usuario existente
|
|
302
|
+
explanation: 'Instrucciones para la imagen:'
|
|
303
|
+
image_guide: Preferiblemente una imagen apaisada que no tenga ningún texto.
|
|
298
304
|
non_user: No usuario
|
|
305
|
+
non_user_avatar_help: Debes obtener el consentimiento de las personas antes de publicarlas como miembros.
|
|
299
306
|
select_a_position: Selecciona una posición
|
|
300
307
|
select_user: Selecciona un usuario
|
|
301
308
|
user_type: Tipo de usuario
|
data/config/locales/eu.yml
CHANGED
|
@@ -356,7 +356,7 @@ eu:
|
|
|
356
356
|
highlighted_assemblies:
|
|
357
357
|
active_assemblies: Batzar aktiboak
|
|
358
358
|
assemblies_button_title: Lotura batzar guztiak erakusten dituen Batzarren orrialdera
|
|
359
|
-
see_all_assemblies: Ikusi
|
|
359
|
+
see_all_assemblies: Ikusi biltzar guztiak
|
|
360
360
|
user_profile:
|
|
361
361
|
member_of:
|
|
362
362
|
member_of: Kidea
|
data/config/locales/fi-plain.yml
CHANGED
data/config/locales/fi.yml
CHANGED
data/config/locales/fr-CA.yml
CHANGED
data/config/locales/fr.yml
CHANGED
|
@@ -52,7 +52,7 @@ fr:
|
|
|
52
52
|
target: Participants
|
|
53
53
|
title: Titre
|
|
54
54
|
twitter: Twitter
|
|
55
|
-
weight: Rang
|
|
55
|
+
weight: Rang d'affichage
|
|
56
56
|
youtube: Youtube
|
|
57
57
|
assembly_member:
|
|
58
58
|
birthday: Date de naissance
|
|
@@ -63,7 +63,7 @@ fr:
|
|
|
63
63
|
gender: Genre
|
|
64
64
|
non_user_avatar: Avatar
|
|
65
65
|
position: Statut
|
|
66
|
-
user_id: Utilisateur
|
|
66
|
+
user_id: Utilisateur ou groupe
|
|
67
67
|
assembly_user_role:
|
|
68
68
|
email: E-mail
|
|
69
69
|
name: "Nom\n"
|
|
@@ -299,10 +299,10 @@ fr:
|
|
|
299
299
|
assembly_members:
|
|
300
300
|
form:
|
|
301
301
|
existing_user: Utilisateur existant
|
|
302
|
-
explanation: 'Instruction concernant l’image:'
|
|
302
|
+
explanation: 'Instruction concernant l’image :'
|
|
303
303
|
image_guide: De préférence une image en format portrait sans texte.
|
|
304
304
|
non_user: Utilisateur inconnu
|
|
305
|
-
non_user_avatar_help: Vous devriez obtenir le consentement
|
|
305
|
+
non_user_avatar_help: Vous devriez obtenir le consentement de l'utilisateur avant d'ajouter une image à son profil.
|
|
306
306
|
select_a_position: Sélectionnez un statut
|
|
307
307
|
select_user: Sélectionnez un utilisateur
|
|
308
308
|
user_type: Type d'utilisateur
|
|
@@ -319,6 +319,9 @@ fr:
|
|
|
319
319
|
new_import:
|
|
320
320
|
accepted_types:
|
|
321
321
|
json: JSON
|
|
322
|
+
assemblies:
|
|
323
|
+
show:
|
|
324
|
+
title: À propos de cette assemblée
|
|
322
325
|
assembly_members:
|
|
323
326
|
index:
|
|
324
327
|
members: Membres
|
data/config/locales/gl.yml
CHANGED
data/config/locales/it.yml
CHANGED
data/config/locales/ja.yml
CHANGED
|
@@ -96,7 +96,7 @@ ja:
|
|
|
96
96
|
update: 更新
|
|
97
97
|
index:
|
|
98
98
|
not_published: 未公開
|
|
99
|
-
private:
|
|
99
|
+
private: プライベート
|
|
100
100
|
public: 公開
|
|
101
101
|
published: 公開済み
|
|
102
102
|
new:
|
|
@@ -195,7 +195,7 @@ ja:
|
|
|
195
195
|
components: コンポーネント
|
|
196
196
|
info: 情報
|
|
197
197
|
moderations: モデレーション
|
|
198
|
-
private_users:
|
|
198
|
+
private_users: プライベートユーザー
|
|
199
199
|
assemblies_types: 参加スペース種別
|
|
200
200
|
models:
|
|
201
201
|
assemblies_types:
|
|
@@ -205,7 +205,7 @@ ja:
|
|
|
205
205
|
assembly:
|
|
206
206
|
fields:
|
|
207
207
|
created_at: 作成日時
|
|
208
|
-
private:
|
|
208
|
+
private: プライベート
|
|
209
209
|
promoted: 強調表示
|
|
210
210
|
published: 公開済み
|
|
211
211
|
title: タイトル
|
|
@@ -316,6 +316,9 @@ ja:
|
|
|
316
316
|
new_import:
|
|
317
317
|
accepted_types:
|
|
318
318
|
json: JSON
|
|
319
|
+
assemblies:
|
|
320
|
+
show:
|
|
321
|
+
title: この参加スペースについて
|
|
319
322
|
assembly_members:
|
|
320
323
|
index:
|
|
321
324
|
members: メンバー
|
|
@@ -406,8 +409,8 @@ ja:
|
|
|
406
409
|
help:
|
|
407
410
|
participatory_spaces:
|
|
408
411
|
assemblies:
|
|
409
|
-
contextual: "<p> <strong>参加スペース</strong>とは、組織の特定の領域や範囲について決定を下すために定期的に会合を開く組織のメンバーのグループです。</p> <p
|
|
410
|
-
page: "<p> <strong>参加型スペース</strong>とは、組織の特定の領域や範囲について決定を下すために定期的に会合を開く組織のメンバーのグループです。</p> <p
|
|
412
|
+
contextual: "<p> <strong>参加スペース</strong>とは、組織の特定の領域や範囲について決定を下すために定期的に会合を開く組織のメンバーのグループです。</p> <p>会議体はプライベートのものもあれば、公開されているものもあります。公開されている場合は、その集会に参加することができます (例えば、定員に余裕があれば出席したり、議題にポイントを追加したり、この組織の提案や決定に対してコメントしたりすることができます)。</p> <p>例:総会(年に一度開催され、組織の主要な活動方針と執行機関を投票で決定する)、平等諮問評議会(組織内の男女比率等を改善する方法についての提案を行うために2ヶ月ごとに開催される)、評価委員会(プロセスを監視するために毎月開催される)、保証機関(意思決定手続きを改善するために事件や虐待、提案を収集する)などは、すべて会議体の例です。</p>\n"
|
|
413
|
+
page: "<p> <strong>参加型スペース</strong>とは、組織の特定の領域や範囲について決定を下すために定期的に会合を開く組織のメンバーのグループです。</p> <p>会議体はプライベートのものもあれば、公開されているものもあります。公開されている場合は、その集会に参加することができます (例えば、定員に余裕があれば出席したり、議題にポイントを追加したり、この組織の提案や決定に対してコメントしたりすることができます)。</p> <p>例:総会(年に一度開催され、組織の主要な活動方針と執行機関を投票で決定する)、平等諮問評議会(組織内の男女比率等を改善する方法についての提案を行うために2ヶ月ごとに開催される)、評価委員会(プロセスを監視するために毎月開催される)、保証機関(意思決定手続きを改善するために事件や虐待、提案を収集する)などは、すべて会議体の例です。</p>\n"
|
|
411
414
|
title: 参加スペースとは?
|
|
412
415
|
log:
|
|
413
416
|
value_types:
|
data/config/locales/no.yml
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"no":
|
|
2
2
|
activemodel:
|
|
3
3
|
attributes:
|
|
4
|
+
assemblies_setting:
|
|
5
|
+
enable_organization_chart: Aktiver organisasjonskart
|
|
4
6
|
assembly:
|
|
5
7
|
area_id: Område
|
|
6
8
|
assembly_type: Forsamlingstype
|
|
@@ -50,6 +52,7 @@
|
|
|
50
52
|
target: Hvem deltar
|
|
51
53
|
title: Tittel
|
|
52
54
|
twitter: Twitter
|
|
55
|
+
weight: Prioritert rekkefølge
|
|
53
56
|
youtube: YouTube
|
|
54
57
|
assembly_member:
|
|
55
58
|
birthday: Fødselsdag
|
|
@@ -58,7 +61,9 @@
|
|
|
58
61
|
designation_date: Valgdato
|
|
59
62
|
full_name: Fullt navn
|
|
60
63
|
gender: Kjønn
|
|
64
|
+
non_user_avatar: Profilbilde
|
|
61
65
|
position: Stilling
|
|
66
|
+
user_id: Bruker eller gruppe
|
|
62
67
|
assembly_user_role:
|
|
63
68
|
email: Epost
|
|
64
69
|
name: Navn
|
|
@@ -177,6 +182,9 @@
|
|
|
177
182
|
update:
|
|
178
183
|
error: Det oppstod et problem med å oppdatere en administrator for denne forsamlingen.
|
|
179
184
|
success: Admin ble oppdatert for denne forsamlingen.
|
|
185
|
+
filters:
|
|
186
|
+
decidim_assemblies_type_id_eq:
|
|
187
|
+
label: Forsamlingstype
|
|
180
188
|
menu:
|
|
181
189
|
assemblies: Forsamlinger
|
|
182
190
|
assemblies_settings: Innstillinger
|
|
@@ -245,6 +253,7 @@
|
|
|
245
253
|
update: "%{user_name} oppdaterte forsamlingens innstillinger"
|
|
246
254
|
assembly_type:
|
|
247
255
|
create: "%{user_name} opprettet %{resource_name} forsamlingstypen"
|
|
256
|
+
delete: "%{user_name} fjernet forsamlingstypen %{resource_name}"
|
|
248
257
|
publish: "%{user_name} publiserte %{resource_name} forsamlingstypen"
|
|
249
258
|
unpublish: "%{user_name} avpubliserte %{resource_name} forsamlingstypen"
|
|
250
259
|
update: "%{user_name} oppdaterte %{resource_name} forsamlingstypen"
|
|
@@ -256,6 +265,7 @@
|
|
|
256
265
|
admin:
|
|
257
266
|
assemblies:
|
|
258
267
|
form:
|
|
268
|
+
announcement_help: Teksten du skriver her vil bli vist til brukeren rett under forsamlingsinformasjonen.
|
|
259
269
|
duration: Varighet
|
|
260
270
|
duration_help: Hvis varigheten av denne forsamlingen er limitert, velg en sluttdato. Hvis ikke, vil den vises som ubestemt.
|
|
261
271
|
filters: Filter
|
|
@@ -289,7 +299,10 @@
|
|
|
289
299
|
assembly_members:
|
|
290
300
|
form:
|
|
291
301
|
existing_user: Eksisterende deltaker
|
|
302
|
+
explanation: 'Veiledning for bilde:'
|
|
303
|
+
image_guide: Helst et portrettbilde uten tekst.
|
|
292
304
|
non_user: Ingen deltakende
|
|
305
|
+
non_user_avatar_help: Du bør få samtykke fra personene før du offentliggjør dem som medlem.
|
|
293
306
|
select_a_position: Velg en posisjon
|
|
294
307
|
select_user: Velg en deltaker
|
|
295
308
|
user_type: Deltakertype
|
|
@@ -415,6 +428,8 @@
|
|
|
415
428
|
participatory_processes:
|
|
416
429
|
show:
|
|
417
430
|
related_assemblies: Relaterte forsamlinger
|
|
431
|
+
statistics:
|
|
432
|
+
assemblies_count: Forsamlinger
|
|
418
433
|
errors:
|
|
419
434
|
messages:
|
|
420
435
|
cannot_be_blank: kan ikke være blank
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-assemblies
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.26.
|
|
4
|
+
version: 0.26.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-
|
|
13
|
+
date: 2022-03-25 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: decidim-core
|
|
@@ -18,42 +18,42 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.26.
|
|
21
|
+
version: 0.26.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - '='
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 0.26.
|
|
28
|
+
version: 0.26.1
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: decidim-admin
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
33
|
- - '='
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: 0.26.
|
|
35
|
+
version: 0.26.1
|
|
36
36
|
type: :development
|
|
37
37
|
prerelease: false
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
39
|
requirements:
|
|
40
40
|
- - '='
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.26.
|
|
42
|
+
version: 0.26.1
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: decidim-dev
|
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
47
|
- - '='
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: 0.26.
|
|
49
|
+
version: 0.26.1
|
|
50
50
|
type: :development
|
|
51
51
|
prerelease: false
|
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
54
|
- - '='
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: 0.26.
|
|
56
|
+
version: 0.26.1
|
|
57
57
|
description: Assemblies component for decidim.
|
|
58
58
|
email:
|
|
59
59
|
- josepjaume@gmail.com
|
|
@@ -345,9 +345,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
345
345
|
version: '2.7'
|
|
346
346
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
347
347
|
requirements:
|
|
348
|
-
- - "
|
|
348
|
+
- - ">="
|
|
349
349
|
- !ruby/object:Gem::Version
|
|
350
|
-
version:
|
|
350
|
+
version: '0'
|
|
351
351
|
requirements: []
|
|
352
352
|
rubygems_version: 3.1.6
|
|
353
353
|
signing_key:
|