effective_classifieds 0.2.1 → 0.2.4

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: b86483009f7d9be8e80a451b7b957bbfe1ac9ec2d88d7a11e13f36a97a261a6e
4
- data.tar.gz: bd9cd48a34bd463f87c12cb3353f9a474f4de95645c4999f9188d10fd2f52d76
3
+ metadata.gz: 3800f94dc914a5451621ba31e2a791ceb1bfb0be11ccb27cfab08161368a84ab
4
+ data.tar.gz: d16ab09d94918e0a5133127bfcd6f62366081baf46918894a69369b45ca52b1b
5
5
  SHA512:
6
- metadata.gz: 820fd500352d1a4b20cc7ed71f0f9569a25d27ca3d2e6a91befc4d8ccfc3244d882e77dcdbb240e73634b419fb90b5b7abfe0ce5abf09d63c11945f90f690f57
7
- data.tar.gz: 5f2c5ea34d257e972c9f3f2e4e30216537a3f899a8c4778af8c578485653b0d134f6e7c4e44146c456efd2cd7cdde55f85e87f5f96b0c0c972ca37c75d6cb924
6
+ metadata.gz: bba4c7426535e984578c7649d026d757f1c49a7599020935449dd5d2f68aeec745b1e795b246a48e63b03156ef55eeff351d055940ceee27180f1320bd518890
7
+ data.tar.gz: 7f65ddfe36db6731bdc1d21e001a107ec7fd52d204a3c0c71f29bbea109e7d01719a57d0527b154ce7fdb2af5a1a1dda6a4b37fb9372b2576b84fec271c18cba
@@ -16,7 +16,7 @@ class Admin::EffectiveClassifiedWizardsDatatable < Effective::Datatable
16
16
  end
17
17
 
18
18
  collection do
19
- EffectiveSubmissions.ClassifiedWizard.all.deep.done.joins(:classified)
19
+ EffectiveClassifieds.ClassifiedWizard.all.deep.done.joins(:classified)
20
20
  end
21
21
 
22
22
  end
@@ -2,7 +2,7 @@ module Effective
2
2
  class ClassifiedsMailer < EffectiveClassifieds.parent_mailer_class
3
3
 
4
4
  default from: -> { EffectiveClassifieds.mailer_sender }
5
- layout -> { EffectiveClassifieds.mailer_layout || 'effective_classifieds_mailer_layout' }
5
+ layout -> { EffectiveClassifieds.mailer_layout }
6
6
 
7
7
  def classified_submitted(resource, opts = {})
8
8
  raise('expected an Effective::Classification') unless resource.kind_of?(Effective::Classified)
@@ -140,8 +140,8 @@ module Effective
140
140
  def published?
141
141
  return false unless approved?
142
142
  return false if archived?
143
- return false if start_on.blank? || (Time.zone.now < start_on)
144
- return false if end_on.present? && (Time.zone.now >= end_on)
143
+ return false if start_on.blank? || (Time.zone.now.to_date < start_on)
144
+ return false if end_on.present? && (Time.zone.now.to_date >= end_on)
145
145
  true
146
146
  end
147
147
 
@@ -12,7 +12,7 @@
12
12
 
13
13
  %hr
14
14
 
15
- - if !@classified.published?
15
+ - unless @classified.approved?
16
16
  %p= link_to('Approve Classified Ad', effective_classifieds.edit_admin_classified_path(@classified))
17
17
 
18
18
  %p= link_to('View Classified Ad', effective_classifieds.classified_path(@classified))
@@ -24,22 +24,18 @@ EffectiveClassifieds.setup do |config|
24
24
  # Automatically approve classified ad submissions, otherwise require admin approval
25
25
  config.auto_approve = false
26
26
 
27
- # Mailer Configuration
27
+ # Mailer Settings
28
+ # Please see config/initializers/effective_resources.rb for default effective_* gem mailer settings
29
+ #
28
30
  # Configure the class responsible to send e-mails.
29
31
  # config.mailer = 'Effective::ClassifiedsMailer'
32
+ #
33
+ # Override effective_resource mailer defaults
34
+ #
35
+ # config.parent_mailer = nil # The parent class responsible for sending emails
36
+ # config.deliver_method = nil # The deliver method, deliver_later or deliver_now
37
+ # config.mailer_layout = nil # Default mailer layout
38
+ # config.mailer_sender = nil # Default From value
39
+ # config.mailer_admin = nil # Default To value for Admin correspondence
30
40
 
31
- # Configure the parent class responsible to send e-mails.
32
- # config.parent_mailer = 'ActionMailer::Base'
33
-
34
- # Default deliver method
35
- # config.deliver_method = :deliver_later
36
-
37
- # Default layout
38
- # config.mailer_layout = 'effective_classifieds_mailer_layout'
39
-
40
- # Default From
41
- config.mailer_sender = "no-reply@example.com"
42
-
43
- # Send Admin correspondence To
44
- config.mailer_admin = "admin@example.com"
45
41
  end
@@ -33,8 +33,8 @@ class CreateEffectiveClassifieds < ActiveRecord::Migration[6.1]
33
33
  t.timestamps
34
34
  end
35
35
 
36
- add_index :classifieds, [:owner_id, :owner_type]
37
- add_index :classifieds, :slug
36
+ add_index <%= @classifieds_table_name %>, [:owner_id, :owner_type]
37
+ add_index <%= @classifieds_table_name %>, :slug
38
38
 
39
39
  create_table <%= @classified_wizards_table_name %> do |t|
40
40
  t.string :token
@@ -56,7 +56,7 @@ class CreateEffectiveClassifieds < ActiveRecord::Migration[6.1]
56
56
  t.datetime :created_at
57
57
  end
58
58
 
59
- add_index :classified_wizards, [:owner_id, :owner_type]
60
- add_index :classified_wizards, :token
59
+ add_index <%= @classified_wizards_table_name %>, [:owner_id, :owner_type]
60
+ add_index <%= @classified_wizards_table_name %>, :token
61
61
  end
62
62
  end
@@ -1,3 +1,3 @@
1
1
  module EffectiveClassifieds
2
- VERSION = '0.2.1'.freeze
2
+ VERSION = '0.2.4'.freeze
3
3
  end
@@ -24,22 +24,4 @@ module EffectiveClassifieds
24
24
  mailer&.constantize || Effective::ClassifiedsMailer
25
25
  end
26
26
 
27
- def self.parent_mailer_class
28
- return parent_mailer.constantize if parent_mailer.present?
29
- ActionMailer::Base
30
- end
31
-
32
- def self.send_email(email, *args)
33
- raise('expected args to be an Array') unless args.kind_of?(Array)
34
-
35
- if defined?(Tenant)
36
- tenant = Tenant.current || raise('expected a current tenant')
37
- args.last.kind_of?(Hash) ? args.last.merge!(tenant: tenant) : args << { tenant: tenant }
38
- end
39
-
40
- deliver_method = EffectiveClassifieds.deliver_method || EffectiveResources.deliver_method
41
-
42
- EffectiveClassifieds.mailer_class.send(email, *args).send(deliver_method)
43
- end
44
-
45
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_classifieds
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.4
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-01-31 00:00:00.000000000 Z
11
+ date: 2022-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -213,7 +213,6 @@ files:
213
213
  - app/views/effective/classifieds/index.html.haml
214
214
  - app/views/effective/classifieds/show.html.haml
215
215
  - app/views/effective/classifieds_mailer/classified_submitted.html.haml
216
- - app/views/layouts/effective_classifieds_mailer_layout.html.haml
217
216
  - config/effective_classifieds.rb
218
217
  - config/routes.rb
219
218
  - db/migrate/01_create_effective_classifieds.rb.erb
@@ -1,7 +0,0 @@
1
- !!!
2
- %html{style: 'background: #fff;'}
3
- %head
4
- %meta{:content => 'text/html; charset=UTF-8', 'http-equiv' => 'Content-Type'}
5
-
6
- %body{style: 'background: #fff;'}
7
- = yield