decidim-dev 0.23.0 → 0.23.4

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: 795996d08cb22418d687b387dc37ece2467e7ef1c1e3622cecd6fe45d3b21b64
4
- data.tar.gz: 32569a0907237cc7968fa55a5f52e34e7ff4bc51e633536610f084d762829fc1
3
+ metadata.gz: ecb3261f5bfbdf2b3ae8f2eeccff8ce069700f93a3b89cf9b98f9359ae2df57d
4
+ data.tar.gz: 3c516f95733314f61cfb17c944097bfe1efb09ba46015b6b14b9cb77fb47386a
5
5
  SHA512:
6
- metadata.gz: 232a3cbb592947ec8c4ae6621dea626d446984e16879269f1cc929ebda1fd65d46e0e0f6fb06835b5e15772fe53938a7a890ad1e2247f767f922de8e49905c3a
7
- data.tar.gz: 0261ef334106c2082caa4449801caf0cc9594c4ec5f86963656a6f3501ff3dbc8fabd43b56bf5dca75b363f121de522e46cb85f801958512c5e3f474e759fb08
6
+ metadata.gz: 99d70a8dbbdaf600c39d490ad65c22e119677de01e7f5d97739c1118fc7624d2ea5d984e430c4892dba336bc05c1e3f1a1abe7fe25ddfdc03614bb8d91641a46
7
+ data.tar.gz: 2c54dd86c62a9e9acc749fa844b1b319ea141f481411c9c30c2f990d7b144917db791dec782dfa244990d0ed25f0172363acbbb7f448868b81552a17859f9919
@@ -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
@@ -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.0"
7
+ "0.23.4"
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.0
4
+ version: 0.23.4
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-05 00:00:00.000000000 Z
13
+ date: 2021-03-10 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.0
35
+ version: 0.23.4
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.0
42
+ version: 0.23.4
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
@@ -533,7 +537,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
533
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: []