decidim-surveys 0.11.1 → 0.11.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ce506f420aa30a47e46811808972644589c87514bd497205cc7e3de5666b0b1
4
- data.tar.gz: c0c91cb5f3f96d38f67d5161c1edcca8afb233bf50658ee7a6118082972a527a
3
+ metadata.gz: 0be4875b9ab07672f1c189bfdebe08acba2767091c49b29d5bf3b5be1b5d42f8
4
+ data.tar.gz: 2009bad5150ee963366fadf976629d58cde2072ebf80adc2ccca0d83cb9c7d68
5
5
  SHA512:
6
- metadata.gz: 0155b16d09b3b3bf24e8ddb0aaa0e6f321805fbec55eaaa7a4c7977457d63f9e71ef6da579f83511f7c7d439f08af94d880293d95a357fa6398e6e2274db7b75
7
- data.tar.gz: 82487c4d16b94ae5bc881cef818b754d062be5f9752e3e6abdfad23d8064ca5e5a46adf869169e01e676398ddb8a50626056b911d1b89f649bc79ec5d20b95b2
6
+ metadata.gz: d1063014fa04c86e22c7c4c8f89f3cb79b8f7729b5cd4bce17740bdbde20d935cfc1a35ffd9657711b9fd2735e244cb8caa2555a1046b793186c779dec73a8a6
7
+ data.tar.gz: 75c02334404c53a3f5e04fa74054ed071b637eb703409174b589bc078bc61b06b2359fb030cb0eebdf3469151d4507c4d2065b9e426f3c3aea1400a77d565665
@@ -28,7 +28,7 @@ module Decidim
28
28
 
29
29
  def answer_survey
30
30
  SurveyAnswer.transaction do
31
- @form.answers.each do |form_answer|
31
+ @form.survey_answers.each do |form_answer|
32
32
  answer = SurveyAnswer.new(
33
33
  user: @current_user,
34
34
  survey: @survey,
@@ -32,7 +32,7 @@ module Decidim
32
32
  private
33
33
 
34
34
  def survey
35
- @survey ||= Survey.find_by(component: current_component)
35
+ @survey ||= Survey.includes(questions: :answer_options).find_by(component: current_component)
36
36
  end
37
37
  end
38
38
  end
@@ -18,8 +18,10 @@ module Decidim
18
18
 
19
19
  delegate :mandatory_body?, :mandatory_choices?, to: :question
20
20
 
21
+ attr_writer :question
22
+
21
23
  def question
22
- @question ||= survey.questions.find(question_id)
24
+ @question ||= Decidim::Surveys::SurveyQuestion.find(question_id)
23
25
  end
24
26
 
25
27
  def label(idx)
@@ -34,6 +36,7 @@ module Decidim
34
36
  # Returns nothing.
35
37
  def map_model(model)
36
38
  self.question_id = model.decidim_survey_question_id
39
+ self.question = model.question
37
40
 
38
41
  self.choices = model.choices.map do |choice|
39
42
  SurveyAnswerChoiceForm.from_model(choice)
@@ -46,10 +49,6 @@ module Decidim
46
49
 
47
50
  private
48
51
 
49
- def survey
50
- @survey ||= Survey.find_by(component: current_component)
51
- end
52
-
53
52
  def max_choices
54
53
  errors.add(:choices, :too_many) if selected_choices.size > question.max_choices
55
54
  end
@@ -4,7 +4,7 @@ module Decidim
4
4
  module Surveys
5
5
  # This class holds a Form to answer a surveys from Decidim's public page.
6
6
  class SurveyForm < Decidim::Form
7
- attribute :answers, Array[SurveyAnswerForm]
7
+ attribute :survey_answers, Array[SurveyAnswerForm]
8
8
 
9
9
  attribute :tos_agreement, Boolean
10
10
  validates :tos_agreement, allow_nil: false, acceptance: true
@@ -13,7 +13,7 @@ module Decidim
13
13
  #
14
14
  # Returns nothing.
15
15
  def map_model(model)
16
- self.answers = model.questions.map do |question|
16
+ self.survey_answers = model.questions.map do |question|
17
17
  SurveyAnswerForm.from_model(SurveyAnswer.new(question: question))
18
18
  end
19
19
  end
@@ -20,7 +20,7 @@
20
20
  <% choice_id = "#{field_id}_choices_#{idx}" %>
21
21
 
22
22
  <%= label_tag "#{choice_id}_body" do %>
23
- <%= radio_button_tag "survey[answers][#{answer_idx}][choices][][body]",
23
+ <%= radio_button_tag "survey[survey_answers][#{answer_idx}][choices][][body]",
24
24
  translated_attribute(answer_option.body),
25
25
  choice.try(:body),
26
26
  id: "#{choice_id}_body" %>
@@ -28,13 +28,13 @@
28
28
  <%= translated_attribute(answer_option.body) %>
29
29
 
30
30
  <% if answer_option.free_text %>
31
- <%= text_field_tag "survey[answers][#{answer_idx}][choices][][custom_body]",
31
+ <%= text_field_tag "survey[survey_answers][#{answer_idx}][choices][][custom_body]",
32
32
  choice.try(:custom_body),
33
33
  id: "#{choice_id}_custom_body",
34
34
  disabled: true %>
35
35
  <% end %>
36
36
 
37
- <%= hidden_field_tag "survey[answers][#{answer_idx}][choices][][answer_option_id]",
37
+ <%= hidden_field_tag "survey[survey_answers][#{answer_idx}][choices][][answer_option_id]",
38
38
  answer_option.id,
39
39
  id: "#{choice_id}_answer_option",
40
40
  disabled: true %>
@@ -47,19 +47,19 @@
47
47
  <% choice = answer.selected_choices.find { |choice| choice.answer_option_id == answer_option.id } %>
48
48
 
49
49
  <%= label_tag do %>
50
- <%= check_box_tag "survey[answers][#{answer_idx}][choices][#{idx}][body]",
50
+ <%= check_box_tag "survey[survey_answers][#{answer_idx}][choices][#{idx}][body]",
51
51
  translated_attribute(answer_option.body),
52
52
  choice.present? %>
53
53
 
54
54
  <%= translated_attribute(answer_option.body) %>
55
55
 
56
56
  <% if answer_option.free_text %>
57
- <%= text_field_tag "survey[answers][#{answer_idx}][choices][#{idx}][custom_body]",
57
+ <%= text_field_tag "survey[survey_answers][#{answer_idx}][choices][#{idx}][custom_body]",
58
58
  choice.try(:custom_body),
59
59
  disabled: true %>
60
60
  <% end %>
61
61
 
62
- <%= hidden_field_tag "survey[answers][#{answer_idx}][choices][#{idx}][answer_option_id]", answer_option.id %>
62
+ <%= hidden_field_tag "survey[survey_answers][#{answer_idx}][choices][#{idx}][answer_option_id]", answer_option.id %>
63
63
  <% end %>
64
64
  <% end %>
65
65
  </div>
@@ -69,7 +69,7 @@
69
69
  <% choice = answer.selected_choices.find { |choice| choice.answer_option_id == answer_option.id } %>
70
70
 
71
71
  <%= label_tag do %>
72
- <%= check_box_tag "survey[answers][#{answer_idx}][choices][#{idx}][body]",
72
+ <%= check_box_tag "survey[survey_answers][#{answer_idx}][choices][#{idx}][body]",
73
73
  translated_attribute(answer_option.body),
74
74
  choice.present? %>
75
75
 
@@ -77,11 +77,11 @@
77
77
 
78
78
  <%= translated_attribute(answer_option.body) %>
79
79
 
80
- <%= hidden_field_tag "survey[answers][#{answer_idx}][choices][#{idx}][position]",
80
+ <%= hidden_field_tag "survey[survey_answers][#{answer_idx}][choices][#{idx}][position]",
81
81
  choice.try(:position),
82
82
  disabled: true %>
83
83
 
84
- <%= hidden_field_tag "survey[answers][#{answer_idx}][choices][#{idx}][answer_option_id]", answer_option.id %>
84
+ <%= hidden_field_tag "survey[survey_answers][#{answer_idx}][choices][#{idx}][answer_option_id]", answer_option.id %>
85
85
  <% end %>
86
86
  <% end %>
87
87
  </div>
@@ -30,9 +30,9 @@
30
30
  <% else %>
31
31
  <div class="answer-survey">
32
32
  <%= decidim_form_for(@form, url: answer_survey_path(survey), method: :post, html: { class: "form answer-survey" }) do |form| %>
33
- <% @form.answers.each_with_index do |answer, answer_idx| %>
33
+ <% @form.survey_answers.each_with_index do |answer, answer_idx| %>
34
34
  <div class="row column">
35
- <%= fields_for "survey[answers][#{answer_idx}]", answer do |answer_form| %>
35
+ <%= fields_for "survey[survey_answers][#{answer_idx}]", answer do |answer_form| %>
36
36
  <%= render "answer", answer_form: answer_form, answer: answer, answer_idx: answer_idx %>
37
37
  <% end %>
38
38
  </div>
@@ -18,7 +18,7 @@ fr:
18
18
  components:
19
19
  surveys:
20
20
  actions:
21
- answer: Répondre
21
+ answer: Réponse
22
22
  name: Enquête
23
23
  settings:
24
24
  global:
@@ -29,19 +29,19 @@ fr:
29
29
  events:
30
30
  surveys:
31
31
  survey_closed:
32
- email_intro: Le sondage %{resource_title} proposé dans %{participatory_space_title} est maintenant terminé.
33
- email_outro: Vous venez de recevoir une notification venant de %{participatory_space_title}. Vous pouvez à tout moment arrêter de recevoir des notifications en suivant le lien précédent.
32
+ email_intro: L'enquête %{resource_title} proposée dans %{participatory_space_title} est maintenant terminée.
33
+ email_outro: Vous avez reçu une notification venant de %{participatory_space_title}. Vous pouvez arrêter de recevoir ces notifications à partir du lien précédent.
34
34
  email_subject: L'enquête du processus participatif %{participatory_space_title} est terminée
35
- notification_title: Le sondage <a href="%{resource_path}">%{resource_title}</a> dans <a href="%{participatory_space_url}">%{participatory_space_title}</a> est terminé.
35
+ notification_title: L'enquête <a href="%{resource_path}">%{resource_title}</a> lancée dans <a href="%{participatory_space_url}">%{participatory_space_title}</a> est terminée.
36
36
  survey_opened:
37
37
  email_intro: 'L''enquête %{resource_title} est désormais ouverte sur le processus participatif %{participatory_space_title}. Vous pouvez y participer depuis la page suivante :'
38
- email_outro: Vous venez de recevoir cette notification car vous suivez le processus %{participatory_space_title}. Vous pouvez à tout moment arrêter de recevoir des notifications en suivant le lien précédent.
39
- email_subject: Une nouvelle enquête vient d'être créée depuis %{participatory_space_title}
38
+ email_outro: Vous avez reçu cette notification car vous suivez le processus %{participatory_space_title}. Vous pouvez arrêter de recevoir ces notifications à partir du lien précédent.
39
+ email_subject: Une nouvelle enquête a été créée dans %{participatory_space_title}
40
40
  notification_title: 'L''enquête <a href="%{resource_path}">%{resource_title}</a> est ouverte. Vous pouvez y participer en vous rendant sur le lien suivant : <a href="%{participatory_space_url}">%{participatory_space_title}</a>.'
41
41
  forms:
42
42
  errors:
43
43
  survey_answer:
44
- body: Cet espace ne peut pas être vide
44
+ body: Ce champ ne peut pas être vide
45
45
  surveys:
46
46
  admin:
47
47
  exports:
@@ -61,7 +61,7 @@ fr:
61
61
  title: Titre
62
62
  form:
63
63
  add_question: Ajouter une question
64
- already_answered_warning: Votre enquête a déjà reçu des réponses, vous ne pouvez donc pas modifier ses questions.
64
+ already_answered_warning: L'enquête ayant déjà reçu des réponses, vous ne pouvez plus modifier les questions.
65
65
  question:
66
66
  add_answer_option: Ajouter une option de réponse
67
67
  any: Tout
@@ -72,7 +72,7 @@ fr:
72
72
  statement: Déclaration
73
73
  up: Monter
74
74
  update:
75
- invalid: Il y a eu des erreurs lors de la sauvegarde de l'enquête.
75
+ invalid: Erreurs lors de la sauvegarde de l'enquête.
76
76
  success: Enquête enregistrée avec succès.
77
77
  question_types:
78
78
  long_answer: Réponse longue
@@ -90,12 +90,12 @@ fr:
90
90
  answer_survey:
91
91
  anonymous_user_message: Pour répondre à l'enquête<a href="%{sign_in_link}"> identifiez-vous avec votre compte</a> ou <a href="%{sign_up_link}">inscrivez-vous.</a> .
92
92
  title: Participer à l'enquête
93
- are_you_sure: Cette action ne peut pas être annulée et vous ne pourrez pas modifier vos réponses. Êtes-vous sûr?
93
+ are_you_sure: Cette action ne peut pas être annulée et vous ne pourrez plus modifier vos réponses. Êtes-vous prêt à valider votre participation ?
94
94
  submit: Envoyer
95
95
  survey_answered:
96
96
  body: Vous avez déjà participé à cette enquête.
97
97
  title: Enquête complétée
98
98
  survey_closed:
99
- body: L'enquête est fermée et n'accepte plus de réponse.
100
- title: Enquête fermée
101
- tos_agreement: En participant à ce sondage, vous acceptez ses conditions d'utilisation
99
+ body: L'enquête est terminée et n'accepte plus de réponse.
100
+ title: Enquête terminée
101
+ tos_agreement: En participant à cette enquête, vous acceptez ses conditions d'utilisation
@@ -5,8 +5,43 @@ ru:
5
5
  body: Ответить
6
6
  survey_question:
7
7
  mandatory: Обязательно
8
- question_type: Тип
8
+ max_choices: Максимальное количество вариантов
9
+ question_type: Вид
10
+ errors:
11
+ models:
12
+ survey_answer:
13
+ attributes:
14
+ choices:
15
+ missing: приведены не все
16
+ too_many: слишком много
9
17
  decidim:
18
+ components:
19
+ surveys:
20
+ actions:
21
+ answer: Ответ
22
+ name: Опрос
23
+ settings:
24
+ global:
25
+ announcement: Объявление
26
+ step:
27
+ allow_answers: Разрешить ответы
28
+ announcement: Объявление
29
+ events:
30
+ surveys:
31
+ survey_closed:
32
+ email_intro: Опрос %{resource_title} в %{participatory_space_title} был закрыт.
33
+ email_outro: Вы получили это уведомление, потому что вы следите за «%{participatory_space_title}». Вы можете отписаться от уведомлений, перейдя по приведенной выше ссылке.
34
+ email_subject: В %{participatory_space_title} завершился опрос
35
+ notification_title: Опрос <a href="%{resource_path}">%{resource_title}</a> в <a href="%{participatory_space_url}">%{participatory_space_title}</a> завершен.
36
+ survey_opened:
37
+ email_intro: 'В %{participatory_space_title} начался опрос %{resource_title}. Вы можете принять в нем участие на странице:'
38
+ email_outro: Вы получили это уведомление, потому что вы следите за «%{participatory_space_title}». Вы можете отписаться от уведомлений, перейдя по приведенной выше ссылке.
39
+ email_subject: Новый опрос в %{participatory_space_title}
40
+ notification_title: Опрос <a href="%{resource_path}">%{resource_title}</a> в <a href="%{participatory_space_url}">%{participatory_space_title}</a> теперь открыт.
41
+ forms:
42
+ errors:
43
+ survey_answer:
44
+ body: Основной текст не может быть пустым
10
45
  surveys:
11
46
  admin:
12
47
  exports:
@@ -14,10 +49,12 @@ ru:
14
49
  models:
15
50
  components:
16
51
  description: Описание
17
- tos: Условия использования
52
+ tos: Условия участия
18
53
  surveys:
19
54
  answer_option:
20
55
  answer_option: Вариант ответа
56
+ free_text: Произвольный текст
57
+ remove: Удалить
21
58
  statement: Высказывание
22
59
  edit:
23
60
  save: Сохранить
@@ -27,8 +64,13 @@ ru:
27
64
  already_answered_warning: Некоторые участники уже прошли этот опрос, поэтому вы не можете менять вопросы в нем.
28
65
  question:
29
66
  add_answer_option: Добавить вариант ответа
67
+ any: Любой
68
+ description: Описание
69
+ down: Вниз
30
70
  question: Вопрос
71
+ remove: Удалить
31
72
  statement: Высказывание
73
+ up: Вверх
32
74
  update:
33
75
  invalid: При сохранении опроса произошли ошибки.
34
76
  success: Опрос успешно сохранен.
@@ -37,10 +79,13 @@ ru:
37
79
  multiple_option: Несколько вариантов
38
80
  short_answer: Краткий ответ
39
81
  single_option: Единственный вариант
82
+ sorting: Упорядочивание
40
83
  surveys:
41
84
  answer:
42
85
  invalid: При прохождении опроса произошли ошибки.
43
86
  success: Опрос успешно пройден.
87
+ question:
88
+ max_choices: 'Предельное количество вариантов: %{n}'
44
89
  show:
45
90
  answer_survey:
46
91
  anonymous_user_message: <a href="%{sign_in_link}">Войдите в систему через свою учетную запись</a> или <a href="%{sign_up_link}">зарегистрируйтесь</a>, чтобы пройти опрос.
@@ -5,8 +5,43 @@ uk:
5
5
  body: Відповісти
6
6
  survey_question:
7
7
  mandatory: Обов’язкове поле
8
+ max_choices: Гранична кількість варіантів
8
9
  question_type: Різновид
10
+ errors:
11
+ models:
12
+ survey_answer:
13
+ attributes:
14
+ choices:
15
+ missing: наведені не всі
16
+ too_many: занадто багато
9
17
  decidim:
18
+ components:
19
+ surveys:
20
+ actions:
21
+ answer: Відповідь
22
+ name: Опитування
23
+ settings:
24
+ global:
25
+ announcement: Оголошення
26
+ step:
27
+ allow_answers: Дозволити відповіді
28
+ announcement: Оголошення
29
+ events:
30
+ surveys:
31
+ survey_closed:
32
+ email_intro: Опитування %{resource_title} в %{participatory_space_title} закрите.
33
+ email_outro: Ви отримали це сповіщення, тому що ви стежите за %{participatory_space_title}. Ви можете відписатися від цих сповіщень, перейшовши за наведеним вище посиланням.
34
+ email_subject: В %{participatory_space_title} завершилось опитування
35
+ notification_title: Опитування <a href="%{resource_path}">%{resource_title}</a> в <a href="%{participatory_space_url}">%{participatory_space_title}</a> закінчилося.
36
+ survey_opened:
37
+ email_intro: 'В %{participatory_space_title} почалось опитування %{resource_title}. Ви можете взяти участь в ньому на сторінці:'
38
+ email_outro: Ви отримали це сповіщення, тому що ви стежите за %{participatory_space_title}. Ви можете відписатися від цих сповіщень, перейшовши за наведеним вище посиланням.
39
+ email_subject: Нове опитування в %{participatory_space_title}
40
+ notification_title: В <a href="%{participatory_space_url}">%{participatory_space_title}</a> почалось опитування <a href="%{resource_path}">%{resource_title}</a>.
41
+ forms:
42
+ errors:
43
+ survey_answer:
44
+ body: Основний текст не може бути порожнім
10
45
  surveys:
11
46
  admin:
12
47
  exports:
@@ -14,21 +49,28 @@ uk:
14
49
  models:
15
50
  components:
16
51
  description: Опис
17
- tos: Умови використання
52
+ tos: Умови участі
18
53
  surveys:
19
54
  answer_option:
20
55
  answer_option: Варіант відповіді
56
+ free_text: Довільний текст
57
+ remove: Видалити
21
58
  statement: Висловлювання
22
59
  edit:
23
60
  save: Зберегти
24
- title: Заголовок
61
+ title: Назва
25
62
  form:
26
63
  add_question: Додати питання
27
64
  already_answered_warning: Деякі учасники вже відповіли на це опитування, тому ви не можете змінювати його питання.
28
65
  question:
29
66
  add_answer_option: Додати варіант відповіді
67
+ any: Будь-який
68
+ description: Опис
69
+ down: Донизу
30
70
  question: Питання
71
+ remove: Видалити
31
72
  statement: Висловлювання
73
+ up: Догори
32
74
  update:
33
75
  invalid: При збереженні цього опитування сталися помилки.
34
76
  success: Опитування успішно збережено.
@@ -37,10 +79,13 @@ uk:
37
79
  multiple_option: Кілька варіантів
38
80
  short_answer: Коротка відповідь
39
81
  single_option: Єдиний варіант
82
+ sorting: Впорядкування
40
83
  surveys:
41
84
  answer:
42
85
  invalid: При відповідях на опитування сталися помилки.
43
86
  success: Опитування успішно пройдено.
87
+ question:
88
+ max_choices: 'Гранична кількість варантів: %{n}'
44
89
  show:
45
90
  answer_survey:
46
91
  anonymous_user_message: <a href="%{sign_in_link}">Увійдіть за допомогою свого облікового запису</a> або <a href="%{sign_up_link}">зареєструйтесь</a>, щоб відповісти на опитування.
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-surveys version.
5
5
  module Surveys
6
6
  def self.version
7
- "0.11.1"
7
+ "0.11.2"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-surveys
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.1
4
+ version: 0.11.2
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: 2018-05-14 00:00:00.000000000 Z
13
+ date: 2018-06-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: decidim-core
@@ -18,56 +18,56 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.11.1
21
+ version: 0.11.2
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.11.1
28
+ version: 0.11.2
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.11.1
35
+ version: 0.11.2
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.11.1
42
+ version: 0.11.2
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.11.1
49
+ version: 0.11.2
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.11.1
56
+ version: 0.11.2
57
57
  - !ruby/object:Gem::Dependency
58
58
  name: decidim-participatory_processes
59
59
  requirement: !ruby/object:Gem::Requirement
60
60
  requirements:
61
61
  - - '='
62
62
  - !ruby/object:Gem::Version
63
- version: 0.11.1
63
+ version: 0.11.2
64
64
  type: :development
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - '='
69
69
  - !ruby/object:Gem::Version
70
- version: 0.11.1
70
+ version: 0.11.2
71
71
  description: A surveys component for decidim's participatory spaces.
72
72
  email:
73
73
  - josepjaume@gmail.com
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
181
181
  version: '0'
182
182
  requirements: []
183
183
  rubyforge_project:
184
- rubygems_version: 2.7.3
184
+ rubygems_version: 2.7.6
185
185
  signing_key:
186
186
  specification_version: 4
187
187
  summary: Decidim surveys module