decidim-comments 0.25.0 → 0.25.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/views/decidim/comments/comments/update.js.erb +18 -4
- data/config/locales/de.yml +18 -0
- data/config/locales/eu.yml +1 -0
- data/config/locales/ro-RO.yml +60 -60
- data/lib/decidim/comments/engine.rb +4 -0
- data/lib/decidim/comments/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a5b6c36fa330c80091a3962638dc00b8053bfc94a9eccfbb8ed11074ddb1f63
|
|
4
|
+
data.tar.gz: ad533cc203a79d10f506f7181ef65a59eda8a8a666640d5cc54d3ea5d691964f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 817873be527ccc087a0ba059fcee7c47a73607dd8366ec2c10f22ff4fe2df01bb727badfa149c8541056680f0d3284441f6d73f092371f92aa8f60f03e564c64
|
|
7
|
+
data.tar.gz: 8be9c7a62a9da1b868a65aa8f38cd0a361ae1bf7095faac98fd9103450e5581498efa77b8ade6d93813279cc5d45a50a1cd4fc5485d841d6856f482ce1edc45e
|
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
$(() => {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
var rootCommentableId = <%== "comments-for-#{@comment.commentable.commentable_type.demodulize}-#{@comment.commentable.id}".to_json %>;
|
|
3
|
+
var $comments = $("#" + rootCommentableId);
|
|
4
|
+
var config = $comments.data("decidim-comments");
|
|
5
|
+
|
|
6
|
+
component = new Decidim.CommentsComponent($comments, config);
|
|
7
|
+
component.unmountComponent();
|
|
8
|
+
|
|
9
|
+
var commentHtml = '<%== j(render partial: "edited_comment", locals: { comment: @comment }).strip %>';
|
|
10
|
+
var commentId = <%= @comment.id.to_json %>;
|
|
11
|
+
var $comment = $("#comment_<%= @comment.id %>");
|
|
6
12
|
|
|
7
13
|
$comment.replaceWith(commentHtml);
|
|
14
|
+
|
|
15
|
+
$comments = $("#" + rootCommentableId);
|
|
16
|
+
$comments.foundation();
|
|
17
|
+
|
|
18
|
+
// Re-create the component
|
|
19
|
+
component = new Decidim.CommentsComponent($comments, $comments.data("decidim-comments"));
|
|
20
|
+
component.mountComponent();
|
|
21
|
+
$comments.data("comments", component);
|
|
8
22
|
});
|
data/config/locales/de.yml
CHANGED
|
@@ -19,6 +19,10 @@ de:
|
|
|
19
19
|
comments:
|
|
20
20
|
create:
|
|
21
21
|
error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
|
|
22
|
+
delete:
|
|
23
|
+
error: Die Sendung konnte nicht gelöscht werden.
|
|
24
|
+
update:
|
|
25
|
+
error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
|
|
22
26
|
comments_count: Kommentaranzahl
|
|
23
27
|
comments_title: Kommentare
|
|
24
28
|
last_activity:
|
|
@@ -53,7 +57,12 @@ de:
|
|
|
53
57
|
alignment:
|
|
54
58
|
against: Gegen
|
|
55
59
|
in_favor: Zugunsten
|
|
60
|
+
confirm_destroy: Bist du sicher, dass du diesen Kommentar löschen willst?
|
|
61
|
+
delete: Löschen
|
|
62
|
+
deleted_at: Kommentar gelöscht am %{date}
|
|
56
63
|
deleted_user: Gelöschter Benutzer
|
|
64
|
+
edit: Bearbeiten
|
|
65
|
+
edited: Bearbeitet
|
|
57
66
|
hide_replies: Antworten verbergen
|
|
58
67
|
reply: Antworten
|
|
59
68
|
report:
|
|
@@ -68,6 +77,7 @@ de:
|
|
|
68
77
|
spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
|
|
69
78
|
title: Ungeeigneten Inhalt melden
|
|
70
79
|
show_replies: '%{replies_count} Antworten anzeigen'
|
|
80
|
+
single_comment_link_title: Link erhalten
|
|
71
81
|
comment_order_selector:
|
|
72
82
|
order:
|
|
73
83
|
best_rated: Am besten bewertet
|
|
@@ -90,6 +100,14 @@ de:
|
|
|
90
100
|
other: "%{count} Kommentare"
|
|
91
101
|
down_vote_button:
|
|
92
102
|
text: Ich bin mit diesem Kommentar nicht einverstanden
|
|
103
|
+
edit_comment_modal_form:
|
|
104
|
+
close: Schliessen
|
|
105
|
+
form:
|
|
106
|
+
body:
|
|
107
|
+
label: Kommentar
|
|
108
|
+
placeholder: Was denken Sie darüber?
|
|
109
|
+
submit: Senden
|
|
110
|
+
title: Kommentar bearbeiten
|
|
93
111
|
up_vote_button:
|
|
94
112
|
text: Ich stimme diesem Kommentar zu
|
|
95
113
|
events:
|
data/config/locales/eu.yml
CHANGED
|
@@ -93,6 +93,7 @@ eu:
|
|
|
93
93
|
blocked_comments_warning: Iruzkinak desgaituta daude une honetan, baina aurrekoak irakur ditzakezu.
|
|
94
94
|
comment_details_title: Iruzkinaren xehetasunak
|
|
95
95
|
loading: Iruzkinak kargatzen...
|
|
96
|
+
single_comment_warning: Gainontzeko iruzkinak berrikusi ahal dituzu <a href="%{url}">hemen</a>.
|
|
96
97
|
single_comment_warning_title: Iruzkin bakar bat ikusten ari zara
|
|
97
98
|
down_vote_button:
|
|
98
99
|
text: Ez nago ados iruzkin honekin
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -2,8 +2,8 @@ ro:
|
|
|
2
2
|
activemodel:
|
|
3
3
|
models:
|
|
4
4
|
decidim/comments/comment_by_followed_user_event: Comentariu
|
|
5
|
-
decidim/comments/comment_created_event:
|
|
6
|
-
decidim/comments/reply_created_event: Răspuns comentariu
|
|
5
|
+
decidim/comments/comment_created_event: Comentează
|
|
6
|
+
decidim/comments/reply_created_event: Răspuns la comentariu
|
|
7
7
|
decidim/comments/user_group_mentioned_event: Menționează
|
|
8
8
|
decidim/comments/user_mentioned_event: Menționează
|
|
9
9
|
activerecord:
|
|
@@ -13,7 +13,7 @@ ro:
|
|
|
13
13
|
few: Comentarii
|
|
14
14
|
other: Comentarii
|
|
15
15
|
decidim/comments/comment_vote:
|
|
16
|
-
one:
|
|
16
|
+
one: Vot
|
|
17
17
|
few: Voturi
|
|
18
18
|
other: Voturi
|
|
19
19
|
decidim:
|
|
@@ -25,11 +25,11 @@ ro:
|
|
|
25
25
|
error: Comentariul nu a putut fi șters.
|
|
26
26
|
update:
|
|
27
27
|
error: A apărut o eroare la actualizarea comentariului.
|
|
28
|
-
comments_count:
|
|
28
|
+
comments_count: Număr de comentarii
|
|
29
29
|
comments_title: Comentarii
|
|
30
30
|
last_activity:
|
|
31
31
|
new_comment_at_html: "<span>Comentariu nou la %{link}</span>"
|
|
32
|
-
view:
|
|
32
|
+
view: Vizualizează
|
|
33
33
|
votes:
|
|
34
34
|
create:
|
|
35
35
|
error: A apărut o problemă la votarea comentariului.
|
|
@@ -39,64 +39,64 @@ ro:
|
|
|
39
39
|
form:
|
|
40
40
|
body:
|
|
41
41
|
label: Comentariu
|
|
42
|
-
placeholder: Ce părere
|
|
43
|
-
form_error: Textul este
|
|
42
|
+
placeholder: Ce părere ai despre asta?
|
|
43
|
+
form_error: Textul este obligatoriu și nu poate fi mai lung de %{length} caractere.
|
|
44
44
|
submit: Trimite
|
|
45
45
|
user_group_id:
|
|
46
|
-
label: Comentează
|
|
46
|
+
label: Comentează în calitate de
|
|
47
47
|
opinion:
|
|
48
|
-
label: Opinia
|
|
48
|
+
label: Opinia ta despre acest subiect
|
|
49
49
|
negative: Negativ
|
|
50
50
|
negative_selected: Opinia ta despre acest subiect este negativă
|
|
51
|
-
neutral:
|
|
52
|
-
neutral_selected: Opinia
|
|
51
|
+
neutral: Neutru
|
|
52
|
+
neutral_selected: Opinia ta despre acest subiect este neutră
|
|
53
53
|
positive: Pozitiv
|
|
54
|
-
positive_selected: Opinia
|
|
54
|
+
positive_selected: Opinia ta despre acest subiect este pozitivă
|
|
55
55
|
remaining_characters: "%{count} caractere rămase"
|
|
56
56
|
remaining_characters_1: "%{count} caracter rămas"
|
|
57
57
|
title: Adaugă comentariul tău
|
|
58
58
|
comment:
|
|
59
59
|
alignment:
|
|
60
|
-
against:
|
|
61
|
-
in_favor:
|
|
62
|
-
confirm_destroy:
|
|
60
|
+
against: Împotrivă
|
|
61
|
+
in_favor: Pentru
|
|
62
|
+
confirm_destroy: Ești sigur(ă) că vrei să ştergi acest comentariu?
|
|
63
63
|
delete: Șterge
|
|
64
|
-
deleted_at: Comentariu șters
|
|
64
|
+
deleted_at: Comentariu șters la %{date}
|
|
65
65
|
deleted_user: Participant șters
|
|
66
66
|
edit: Editează
|
|
67
67
|
edited: Editat
|
|
68
68
|
hide_replies: Ascunde răspunsurile
|
|
69
|
-
reply:
|
|
69
|
+
reply: Răspunde
|
|
70
70
|
report:
|
|
71
|
-
action:
|
|
71
|
+
action: Raportează
|
|
72
72
|
already_reported: Acest conținut este deja raportat și va fi revizuit de către un administrator.
|
|
73
|
-
close:
|
|
73
|
+
close: Închide
|
|
74
74
|
description: Este acest conținut neadecvat?
|
|
75
|
-
details:
|
|
75
|
+
details: Comentarii suplimentare
|
|
76
76
|
reasons:
|
|
77
|
-
does_not_belong: Conține activitate ilegală, amenințări
|
|
78
|
-
offensive: Conține rasism, sexism,
|
|
79
|
-
spam: Conține clickbait, publicitate, escrocherii sau roboți
|
|
77
|
+
does_not_belong: Conține activitate ilegală, amenințări cu sinuciderea, informații personale sau altceva ce consideri că nu aparține de %{organization_name}.
|
|
78
|
+
offensive: Conține rasism, sexism, insulte, atacuri personale, amenințări cu moartea, cereri de sinucidere sau orice formă de discurs de incitare la ură.
|
|
79
|
+
spam: Conține clickbait, publicitate, escrocherii sau script rulat de roboți.
|
|
80
80
|
title: Raportează conținut nepotrivit
|
|
81
81
|
show_replies: Arată %{replies_count} răspunsuri
|
|
82
|
-
single_comment_link_title: Obţine
|
|
82
|
+
single_comment_link_title: Obţine link
|
|
83
83
|
comment_order_selector:
|
|
84
84
|
order:
|
|
85
85
|
best_rated: Cele mai apreciate
|
|
86
86
|
most_discussed: Cele mai discutate
|
|
87
|
-
older:
|
|
87
|
+
older: Mai vechi
|
|
88
88
|
recent: Recente
|
|
89
89
|
title: 'Ordonare după:'
|
|
90
90
|
comment_thread:
|
|
91
91
|
title: Conversație cu %{authorName}
|
|
92
92
|
comments:
|
|
93
|
-
blocked_comments_for_unauthorized_user_warning: Trebuie să
|
|
93
|
+
blocked_comments_for_unauthorized_user_warning: Trebuie să fii verificat pentru a trimite comentarii în acest moment, dar le poți citi pe cele anterioare.
|
|
94
94
|
blocked_comments_for_user_warning: Nu poți comenta în acest moment, dar le poți citi pe cele anterioare.
|
|
95
|
-
blocked_comments_warning: Comentariile sunt dezactivate în acest moment, dar le
|
|
96
|
-
comment_details_title:
|
|
95
|
+
blocked_comments_warning: Comentariile sunt dezactivate în acest moment, dar le poți citi pe cele anterioare.
|
|
96
|
+
comment_details_title: Detaliile comentariului
|
|
97
97
|
loading: Se încarcă comentariile...
|
|
98
|
-
single_comment_warning:
|
|
99
|
-
single_comment_warning_title:
|
|
98
|
+
single_comment_warning: Poţi verifica restul comentariilor <a href="%{url}">aici</a>.
|
|
99
|
+
single_comment_warning_title: Poți vedea un singur comentariu
|
|
100
100
|
title:
|
|
101
101
|
one: "%{count} comentariu"
|
|
102
102
|
few: "%{count} comentarii"
|
|
@@ -108,7 +108,7 @@ ro:
|
|
|
108
108
|
form:
|
|
109
109
|
body:
|
|
110
110
|
label: Comentariu
|
|
111
|
-
placeholder: Ce părere
|
|
111
|
+
placeholder: Ce părere ai despre asta?
|
|
112
112
|
submit: Trimite
|
|
113
113
|
title: Editează comentariul tău
|
|
114
114
|
up_vote_button:
|
|
@@ -117,44 +117,44 @@ ro:
|
|
|
117
117
|
comments:
|
|
118
118
|
comment_by_followed_user:
|
|
119
119
|
email_intro: "%{author_name} a lăsat un comentariu în %{resource_title}. Îl poți citi în această pagină:"
|
|
120
|
-
email_outro:
|
|
121
|
-
email_subject: Există un nou comentariu
|
|
122
|
-
notification_title: Există un comentariu nou
|
|
120
|
+
email_outro: Ai primit această notificare deoarece urmărești pe „%{author_name}”. Poți anula abonarea de la acest utilizator de pe pagina sa de profil.
|
|
121
|
+
email_subject: Există un nou comentariu de la %{author_name} pentru %{resource_title}
|
|
122
|
+
notification_title: Există un comentariu nou de la <a href="%{author_path}">%{author_name} %{author_nickname}</a> pentru <a href="%{resource_path}">%{resource_title}</a>.
|
|
123
123
|
comment_by_followed_user_group:
|
|
124
|
-
email_intro: 'Grupul %{author_name} a lăsat un comentariu
|
|
125
|
-
email_outro:
|
|
126
|
-
email_subject: Există un nou comentariu
|
|
127
|
-
notification_title: Există un comentariu nou
|
|
124
|
+
email_intro: 'Grupul %{author_name} a lăsat un comentariu pentru %{resource_title}. Îl poți citi în această pagină:'
|
|
125
|
+
email_outro: Ai primit această notificare deoarece urmărești grupul „%{author_name}”. Poți anula abonarea de la acest grup de pe pagina sa de profil.
|
|
126
|
+
email_subject: Există un nou comentariu de la %{author_name} pentru %{resource_title}
|
|
127
|
+
notification_title: Există un comentariu nou de la <a href="%{author_path}">%{author_name} %{author_nickname}</a> pentru <a href="%{resource_path}">%{resource_title}</a>.
|
|
128
128
|
comment_created:
|
|
129
|
-
email_intro: "%{resource_title} a
|
|
130
|
-
email_outro:
|
|
131
|
-
email_subject: Există un nou comentariu de la %{author_name}
|
|
132
|
-
notification_title: Există un nou comentariu de la <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
|
129
|
+
email_intro: "%{resource_title} a primit un comentariu. Poți citi comentariul pe această pagină:"
|
|
130
|
+
email_outro: Ai primit această notificare deoarece urmărești „%{resource_title}” sau pe autorii săi. Poți anula abonarea de la link-ul anterior.
|
|
131
|
+
email_subject: Există un nou comentariu de la %{author_name} pentru %{resource_title}
|
|
132
|
+
notification_title: Există un nou comentariu de la <a href="%{author_path}">%{author_name} %{author_nickname}</a> pentru <a href="%{resource_path}">%{resource_title}</a>
|
|
133
133
|
comment_downvoted:
|
|
134
|
-
email_intro: Comentariul tău
|
|
135
|
-
email_outro:
|
|
136
|
-
email_subject: Comentariul tău
|
|
137
|
-
notification_title: Comentariul tău <a href="%{resource_path}"></a>
|
|
134
|
+
email_intro: Comentariul tău pentru "%{resource_title}" a primit un vot nefavorabil. Acesta are acum un total de %{upvotes} voturi favorabile şi %{downvotes} voturi nefaborabile.
|
|
135
|
+
email_outro: Ai primit această notificare deoarece ești autorul acestui comentariu.
|
|
136
|
+
email_subject: Comentariul tău pentru "%{resource_title}" a primit un vot nefavorabil.
|
|
137
|
+
notification_title: Comentariul tău <a href="%{resource_path}"></a> pentru "%{resource_title}" a primit un vot nefavorabil. Acum are un total de %{upvotes} voturi favorabile și %{downvotes} voturi nefavorabile.
|
|
138
138
|
comment_upvoted:
|
|
139
|
-
email_intro: Comentariul tău
|
|
140
|
-
email_outro:
|
|
141
|
-
email_subject: Comentariul tău
|
|
142
|
-
notification_title: Comentariul tău <a href="%{resource_path}"></a> în "%{resource_title}" a
|
|
139
|
+
email_intro: Comentariul tău pentru "%{resource_title}" a primit un vot favorabil. Acesta are acum un total de %{upvotes} voturi favorabile și %{downvotes} voturi nefavorabile.
|
|
140
|
+
email_outro: Ai primit această notificare deoarece ești autorul acestui comentariu.
|
|
141
|
+
email_subject: Comentariul tău pentru "%{resource_title}" a primit un vot favorabil.
|
|
142
|
+
notification_title: Comentariul tău <a href="%{resource_path}"></a> în "%{resource_title}" a primit un vot favorabil. Acum are un total de %{upvotes} voturi faborabile și %{downvotes} voturi nefavorabile.
|
|
143
143
|
reply_created:
|
|
144
|
-
email_intro: "%{author_name} a răspuns
|
|
145
|
-
email_outro:
|
|
146
|
-
email_subject: "%{author_name} a răspuns
|
|
147
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a răspuns comentariul tău
|
|
144
|
+
email_intro: "%{author_name} a răspuns la comentariul tău pentru %{resource_title}. Îl poți citi în această pagină:"
|
|
145
|
+
email_outro: Ai primit această notificare deoarece comentariul tău a primit un răspuns.
|
|
146
|
+
email_subject: "%{author_name} a răspuns la comentariul tău pentru %{resource_title}"
|
|
147
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a răspuns la comentariul tău pentru <a href="%{resource_path}">%{resource_title}</a>
|
|
148
148
|
user_group_mentioned:
|
|
149
|
-
email_intro: Un grup
|
|
150
|
-
email_outro:
|
|
149
|
+
email_intro: Un grup de care aparți a fost menționat
|
|
150
|
+
email_outro: Ai primit această notificare deoarece ești un membru al grupului %{group_name} care a fost menționat în %{resource_title}.
|
|
151
151
|
email_subject: Ai fost menționat în %{resource_title} ca membru al %{group_name}
|
|
152
152
|
notification_title: Ai fost menționat în <a href="%{resource_path}">%{resource_title}</a> de <a href="%{author_path}">%{author_name} %{author_nickname}</a> ca membru al <a href="%{group_path}">%{group_name} %{group_nickname}</a>
|
|
153
153
|
user_mentioned:
|
|
154
|
-
email_intro:
|
|
155
|
-
email_outro:
|
|
154
|
+
email_intro: Ai fost menționat(ă)
|
|
155
|
+
email_outro: Ai primit această notificare deoarece ai fost menționat în %{resource_title}.
|
|
156
156
|
email_subject: Ai fost menționat în %{resource_title}
|
|
157
|
-
notification_title: Ai fost menționat în <a href="%{resource_path}">%{resource_title}</a> de <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
|
157
|
+
notification_title: Ai fost menționat în <a href="%{resource_path}">%{resource_title}</a> de către <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
|
158
158
|
metrics:
|
|
159
159
|
comments:
|
|
160
160
|
description: Numărul de comentarii generate de participanți
|
|
@@ -162,4 +162,4 @@ ro:
|
|
|
162
162
|
title: Comentarii
|
|
163
163
|
errors:
|
|
164
164
|
messages:
|
|
165
|
-
cannot_have_comments: nu
|
|
165
|
+
cannot_have_comments: nu poate fi comentat
|
|
@@ -66,6 +66,10 @@ module Decidim
|
|
|
66
66
|
Cell::ViewModel.view_paths << File.expand_path("#{Decidim::Comments::Engine.root}/app/cells")
|
|
67
67
|
Cell::ViewModel.view_paths << File.expand_path("#{Decidim::Comments::Engine.root}/app/views") # for partials
|
|
68
68
|
end
|
|
69
|
+
|
|
70
|
+
initializer "decidim_comments.webpacker.assets_path" do
|
|
71
|
+
Decidim.register_assets_path File.expand_path("app/packs", root)
|
|
72
|
+
end
|
|
69
73
|
end
|
|
70
74
|
end
|
|
71
75
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-comments
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.25.
|
|
4
|
+
version: 0.25.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: 2021-
|
|
13
|
+
date: 2021-11-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: decidim-core
|
|
@@ -18,14 +18,14 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.25.
|
|
21
|
+
version: 0.25.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.25.
|
|
28
|
+
version: 0.25.1
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: redcarpet
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -52,28 +52,28 @@ dependencies:
|
|
|
52
52
|
requirements:
|
|
53
53
|
- - '='
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: 0.25.
|
|
55
|
+
version: 0.25.1
|
|
56
56
|
type: :development
|
|
57
57
|
prerelease: false
|
|
58
58
|
version_requirements: !ruby/object:Gem::Requirement
|
|
59
59
|
requirements:
|
|
60
60
|
- - '='
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
|
-
version: 0.25.
|
|
62
|
+
version: 0.25.1
|
|
63
63
|
- !ruby/object:Gem::Dependency
|
|
64
64
|
name: decidim-dev
|
|
65
65
|
requirement: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
67
|
- - '='
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 0.25.
|
|
69
|
+
version: 0.25.1
|
|
70
70
|
type: :development
|
|
71
71
|
prerelease: false
|
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - '='
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: 0.25.
|
|
76
|
+
version: 0.25.1
|
|
77
77
|
description: Pluggable comments system for some components.
|
|
78
78
|
email:
|
|
79
79
|
- josepjaume@gmail.com
|