effective_memberships 0.7.5 → 0.7.7

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: 4cdabd18c745a7596a4d7d39fb50436a4f6464e88399c8ca4e4b77d58abaddeb
4
- data.tar.gz: 42df553cb0e753d4259f90a3358c4c3118ca847b5a8128d387de9a2b130a49a5
3
+ metadata.gz: 504773afcda5b7dcae14e65e794047b836bf36cee856712def292310318b69e5
4
+ data.tar.gz: 197949c35571956f3062f41de8096c9affea15bf086288f3173f403d2b13b772
5
5
  SHA512:
6
- metadata.gz: 2daa5ad4a3d3f8287b611d3482c32ef07a974bc5488c5adc08884e3f1ca58a7e44fb195ca22d31c4a1c57b8830865036238a584260f3633047f0f382caefcfe9
7
- data.tar.gz: c904772304719fc3a34b472cb1b4b917909bf94185bc320c60ec691c2ad742bf98a78cb073516011c9669885844072b10ba2ac97ccd4b37987d46342c751e61c
6
+ metadata.gz: 40a854be5c36060fc00699df969ec482037b62688f6be2976b5c362fe1d6e3fd1a597de32f6074d4e66f2495e875d4ea21c121a72ad8c88cae636ca1e3d07f7e
7
+ data.tar.gz: 6596da1652d19c7a436917cd05390ddbb9d233c0109fd1efd91c046e165791faf22dbe4fddf1d8ce0b56c1c0e1d931cca6c37eb934b44d47acc269f9d30646e5
@@ -2,7 +2,7 @@
2
2
  - step_content = resource.applicant&.category&.send("rich_text_applicant_review_#{step}_content")
3
3
 
4
4
  - if all_steps_content.present?
5
- .mb-2= all_steps_content
5
+ .mb-2= all_steps_content.to_s
6
6
 
7
7
  - if step_content.present?
8
- .mb-2= step_content
8
+ .mb-2= step_content.to_s
@@ -3,8 +3,8 @@
3
3
 
4
4
  - if all_steps_content.present?
5
5
  .card
6
- .card-body= all_steps_content
6
+ .card-body= all_steps_content.to_s
7
7
 
8
8
  - if step_content.present?
9
9
  .card
10
- .card-body= step_content
10
+ .card-body= step_content.to_s
@@ -10,4 +10,6 @@
10
10
  = f.fields_for(f.object.owner_symbol, f.object.owner) do |fo|
11
11
  = effective_address_fields(fo, :billing)
12
12
 
13
+ %p.text-muted * Not all applications require a fee and we ask for a billing address for future use
14
+
13
15
  = f.save 'Save and Continue'
@@ -21,12 +21,13 @@
21
21
  = aef.select :endorser_id, endorders_collection, required: false,
22
22
  ajax_url: (effective_memberships.select2_ajax_endorser_applicant_endorsement_path(applicant_id: resource) unless Rails.env.test?)
23
23
 
24
- = aef.check_box :unknown_member, label: 'I cant find my endorser in the above list'
24
+ .effective-applicant-endorsement-unknown-member
25
+ = aef.check_box :unknown_member, label: 'I cant find my endorser in the above list'
25
26
 
26
- = aef.show_if(:unknown_member, true) do
27
- = aef.text_field :name, label: 'Endorser name', required: true
28
- = aef.email_field :endorser_email, label: 'Email', required: true
29
- = aef.phone_field :phone, required: true
27
+ = aef.show_if(:unknown_member, true) do
28
+ = aef.text_field :name, label: 'Endorser name', required: true
29
+ = aef.email_field :endorser_email, label: 'Email', required: true
30
+ = aef.phone_field :phone, required: true
30
31
 
31
32
  = render_if_exists("effective/applicants/endorsements_fields", f: f)
32
33
 
@@ -16,7 +16,7 @@
16
16
  - if organization_categories.present?
17
17
  %small.text-muted #{mc.category} #{mc.category_type} Membership
18
18
 
19
- = mc.rich_text_body
19
+ = mc.rich_text_body.to_s
20
20
 
21
21
  = render_if_exists("effective/applicants/select/#{mc.to_s.parameterize.underscore}", f: f, category: mc)
22
22
 
@@ -2,7 +2,7 @@
2
2
  - step_content = resource.category&.send("rich_text_fee_payment_#{step}_content")
3
3
 
4
4
  - if all_steps_content.present?
5
- .mb-2= all_steps_content
5
+ .mb-2= all_steps_content.to_s
6
6
 
7
7
  - if step_content.present?
8
- .mb-2= step_content
8
+ .mb-2= step_content.to_s
@@ -1,3 +1,3 @@
1
1
  module EffectiveMemberships
2
- VERSION = '0.7.5'
2
+ VERSION = '0.7.7'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_memberships
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5
4
+ version: 0.7.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-20 00:00:00.000000000 Z
11
+ date: 2022-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails