decidim-dev 0.23.1.rc1 → 0.23.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: baf053b0ff051de0cdcbb8a812ca521949c4fe65df4d88edafd89b2000f3cb65
4
- data.tar.gz: 13a6b7027bd01518ef219961b9c5f5094c4062fd56216c1824be11de4681a13e
3
+ metadata.gz: 5fbd26077da7efacb3f0dd2aa55254b3a2dd47a482f4f9e00aa768f013fef632
4
+ data.tar.gz: faf0c649266135e2a7707eb651d082301a1327b4810b6468840bee278e5139ff
5
5
  SHA512:
6
- metadata.gz: da6f833af1c441c4678d6961a171f4473b9ca3e3066489a967475c48a85b9bfe0ae5f4c3718e22acc532b4804335bbc70c24cc6f9a5e488ecb07ad35e9012e60
7
- data.tar.gz: a912dec046d50b61df9a415c9a637effd1870f79e5ed54b2795292273c68de725cac0b77e77b859e1809f626acb81795b98975607ef3f3f66d501e0535330d0f
6
+ metadata.gz: 3c26657eea148605e5ad7320cb04f8912d4f05b9190e70d1355a490b92b33ad4bddf91e6ad62f4efcf923aca3183851d1d32a9dbfb99befdda86dc1a901a9c3d
7
+ data.tar.gz: fe5363c47601eb43bed882587900f69d9793b61b17d6edb94c141dbe22dba4dc6341657a86f03cd0149b13f1a1da5b3101f11e4fa37811fbafec8bb3ef45b9f1
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module DummyResources
5
+ class DummyResourceMailer < ApplicationMailer
6
+ def send_email(user, organization)
7
+ @user = user
8
+ @organization = organization
9
+
10
+ mail(to: "#{user.name} <#{user.email}>") do |format|
11
+ format.text { "This is the test" }
12
+ format.html { "<p>This is a mail </p>" }
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -5,7 +5,7 @@ de:
5
5
  created_at: Hergestellt in
6
6
  decidim_scope_id: Umfang
7
7
  field: Mein Feld
8
- start_date: Anfangsdatum
8
+ start_date: Startdatum
9
9
  title: Titel
10
10
  translatable_text: Übersetzbarer Text
11
11
  updated_at: Aktualisiert am
@@ -3,11 +3,27 @@ gl:
3
3
  attributes:
4
4
  dummy_resource:
5
5
  created_at: Creado en
6
+ decidim_scope_id: Ámbito
6
7
  field: O meu campo
7
8
  start_date: Data de inicio
8
9
  title: Título
10
+ translatable_text: Texto traducíbel
9
11
  updated_at: Actualizado en
10
12
  decidim:
13
+ components:
14
+ dummy:
15
+ settings:
16
+ global:
17
+ readonly_attribute: Atributo de só lectura
18
+ test: Unha proba
19
+ test_choices:
20
+ a: Opción A
21
+ b: Opción B
22
+ c: Opción C
23
+ step:
24
+ endorsements_blocked: Adhesións bloqueadas
25
+ endorsements_enabled: Adhesións habilitadas
26
+ readonly_step_attribute: Atributo de paso de só lectura
11
27
  dummy:
12
28
  admin:
13
29
  exports:
@@ -0,0 +1 @@
1
+ si:
@@ -0,0 +1 @@
1
+ sw:
@@ -2,12 +2,28 @@ tr:
2
2
  activemodel:
3
3
  attributes:
4
4
  dummy_resource:
5
- created_at: Adresinde düzenlendi
5
+ created_at: Oluşturuldu
6
+ decidim_scope_id: Kapsam
6
7
  field: Benim alanım
7
8
  start_date: Başlangıç tarihi
8
9
  title: Başlık
9
- updated_at: Adresinde güncellendi
10
+ translatable_text: Çeviri metni
11
+ updated_at: Güncellendi
10
12
  decidim:
13
+ components:
14
+ dummy:
15
+ settings:
16
+ global:
17
+ readonly_attribute: Salt okunur özniteliği
18
+ test: Test
19
+ test_choices:
20
+ a: Seçenek
21
+ b: Seçim
22
+ c: Seçenek
23
+ step:
24
+ endorsements_blocked: Onaylar engellendi
25
+ endorsements_enabled: Onaylar etkinleştirildi
26
+ readonly_step_attribute: Salt okunur özniteliği
11
27
  dummy:
12
28
  admin:
13
29
  exports:
@@ -27,14 +43,14 @@ tr:
27
43
  pages:
28
44
  home:
29
45
  statistics:
30
- bar: Bar
31
- dummies_count_high: Aptallar yüksek
32
- dummies_count_medium: Aptallar orta
33
- foo: foo
46
+ bar: Çubuk
47
+ dummies_count_high: Çok sahte
48
+ dummies_count_medium: Orta sahte
49
+ foo: Sahte değişken
34
50
  participatory_processes:
35
51
  statistics:
36
- dummies_count_high: Aptallar yüksek
37
- dummies_count_medium: Aptallar orta
52
+ dummies_count_high: Çok sahte
53
+ dummies_count_medium: Orta sahte
38
54
  resource_links:
39
55
  test_link:
40
- dummy_resource_dummy: İlgili kukla
56
+ dummy_resource_dummy: İlgili sahte konu
@@ -106,10 +106,13 @@ module Decidim
106
106
  end
107
107
 
108
108
  def self.newsletter_participant_ids(component)
109
- Decidim::DummyResources::DummyResource.where(component: component).joins(:component)
110
- .where(decidim_author_type: Decidim::UserBaseEntity.name)
111
- .where.not(author: nil)
112
- .pluck(:decidim_author_id).flatten.compact.uniq
109
+ authors_ids = Decidim::DummyResources::DummyResource.where(component: component)
110
+ .where(decidim_author_type: Decidim::UserBaseEntity.name)
111
+ .where.not(author: nil)
112
+ .group(:decidim_author_id)
113
+ .pluck(:decidim_author_id)
114
+ commentators_ids = Decidim::Comments::Comment.user_commentators_ids_in(Decidim::DummyResources::DummyResource.where(component: component))
115
+ (authors_ids + commentators_ids).flatten.compact.uniq
113
116
  end
114
117
  end
115
118
 
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-dev version.
5
5
  module Dev
6
6
  def self.version
7
- "0.23.1.rc1"
7
+ "0.23.5"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.1.rc1
4
+ version: 0.23.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
8
8
  - Marc Riera Casals
9
9
  - Oriol Gual Oliva
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-11-06 00:00:00.000000000 Z
13
+ date: 2021-04-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: capybara
@@ -32,14 +32,14 @@ dependencies:
32
32
  requirements:
33
33
  - - '='
34
34
  - !ruby/object:Gem::Version
35
- version: 0.23.1.rc1
35
+ version: 0.23.5
36
36
  type: :runtime
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.23.1.rc1
42
+ version: 0.23.5
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: factory_bot_rails
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -378,6 +378,7 @@ files:
378
378
  - app/commands/decidim/dummy_resources/create_dummy_resource.rb
379
379
  - app/controllers/decidim/dummy_resources/dummy_resources_controller.rb
380
380
  - app/forms/decidim/dummy_resources/dummy_resource_form.rb
381
+ - app/mailers/decidim/dummy_resources/dummy_resource_mailer.rb
381
382
  - app/views/decidim/dummy_resource/_linked_dummys.html.erb
382
383
  - app/views/decidim/dummy_resources/dummy_resources/foo.html.erb
383
384
  - app/views/decidim/dummy_resources/dummy_resources/show.html.erb
@@ -434,12 +435,14 @@ files:
434
435
  - config/locales/pt.yml
435
436
  - config/locales/ro-RO.yml
436
437
  - config/locales/ru.yml
438
+ - config/locales/si-LK.yml
437
439
  - config/locales/sk-SK.yml
438
440
  - config/locales/sk.yml
439
441
  - config/locales/sl.yml
440
442
  - config/locales/so-SO.yml
441
443
  - config/locales/sr-CS.yml
442
444
  - config/locales/sv.yml
445
+ - config/locales/sw-KE.yml
443
446
  - config/locales/ti-ER.yml
444
447
  - config/locales/tr-TR.yml
445
448
  - config/locales/uk.yml
@@ -448,6 +451,7 @@ files:
448
451
  - config/locales/zh-CN.yml
449
452
  - config/locales/zh-TW.yml
450
453
  - lib/decidim/dev.rb
454
+ - lib/decidim/dev/assets/5000x5000.png
451
455
  - lib/decidim/dev/assets/Exampledocument.pdf
452
456
  - lib/decidim/dev/assets/assemblies.json
453
457
  - lib/decidim/dev/assets/assemblies_with_null.json
@@ -517,7 +521,7 @@ homepage: https://github.com/decidim/decidim
517
521
  licenses:
518
522
  - AGPL-3.0
519
523
  metadata: {}
520
- post_install_message:
524
+ post_install_message:
521
525
  rdoc_options: []
522
526
  require_paths:
523
527
  - lib
@@ -528,12 +532,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
528
532
  version: '2.6'
529
533
  required_rubygems_version: !ruby/object:Gem::Requirement
530
534
  requirements:
531
- - - ">"
535
+ - - ">="
532
536
  - !ruby/object:Gem::Version
533
- version: 1.3.1
537
+ version: '0'
534
538
  requirements: []
535
539
  rubygems_version: 3.0.3
536
- signing_key:
540
+ signing_key:
537
541
  specification_version: 4
538
542
  summary: Decidim dev tools
539
543
  test_files: []