effective_classifieds 0.4.0 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/effective/classifieds_controller.rb +4 -3
- data/app/datatables/effective_classifieds_datatable.rb +4 -5
- data/app/models/concerns/effective_classifieds_classified_wizard.rb +2 -2
- data/app/views/admin/classifieds/_form.html.haml +1 -1
- data/app/views/admin/classifieds/_form_access.html.haml +2 -2
- data/app/views/effective/classified_wizards/_classified.html.haml +1 -1
- data/app/views/effective/classified_wizards/_dashboard.html.haml +5 -6
- data/app/views/effective/classified_wizards/_layout.html.haml +1 -1
- data/app/views/effective/classified_wizards/_summary.html.haml +25 -26
- data/app/views/effective/classified_wizards/billing.html.haml +1 -1
- data/app/views/effective/classified_wizards/start.html.haml +3 -4
- data/app/views/effective/classified_wizards/submitted.html.haml +3 -3
- data/app/views/effective/classified_wizards/summary.html.haml +1 -1
- data/app/views/effective/classifieds/_classified.html.haml +51 -51
- data/app/views/effective/classifieds/_dashboard.html.haml +3 -3
- data/app/views/effective/classifieds/_fields.html.haml +6 -6
- data/app/views/effective/classifieds/_layout.html.haml +2 -0
- data/app/views/effective/classifieds/_summary.html.haml +49 -0
- data/app/views/effective/classifieds/index.html.haml +8 -7
- data/app/views/effective/classifieds/show.html.haml +48 -6
- data/app/views/effective/classifieds_mailer/classified_submitted.html.haml +4 -4
- data/config/effective_classifieds.rb +3 -0
- data/lib/effective_classifieds/version.rb +1 -1
- data/lib/effective_classifieds.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df39e5bbe0e896642cdc96ad0c9cdbdc57212336c65525fbf2043d1dc28ff388
|
4
|
+
data.tar.gz: 59ebf626938ba7ce8e1b36ccb93ecee56a716bf82f976cc93bfde44d9a9b9292
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e88a56f3e13df16ff3f9c1d61b876ad2af12e0d063e51ffa8a5e48fb8867d8e0f5854da72a277e543c1a8fe32a550a856ac8685c5ad73ea4ae75e9e2993693d8
|
7
|
+
data.tar.gz: 915e64ffa124a81dd8ae883e324538069fdbfb145b04f359524c495e794fdb821861d854c1ef11a70b82a525b98d96a73e0ae38ede67b9570608aa738fbe77d2
|
@@ -2,6 +2,8 @@ module Effective
|
|
2
2
|
class ClassifiedsController < ApplicationController
|
3
3
|
include Effective::CrudController
|
4
4
|
|
5
|
+
page_title EffectiveClassifieds.classifieds_label, only: :index
|
6
|
+
|
5
7
|
def show
|
6
8
|
@classified = resource_scope.find(params[:id])
|
7
9
|
|
@@ -14,9 +16,8 @@ module Effective
|
|
14
16
|
if EffectiveResources.authorized?(self, :admin, :effective_classifieds)
|
15
17
|
flash.now[:warning] = [
|
16
18
|
'Hi Admin!',
|
17
|
-
('You are viewing a hidden
|
18
|
-
'Click here to
|
19
|
-
("<a href='#{effective_classifieds.edit_admin_classified_path(@classified)}' class='alert-link'>edit classified settings</a>.")
|
19
|
+
('You are viewing a hidden posting.' unless @classified.published?),
|
20
|
+
("<a href='#{effective_classifieds.edit_admin_classified_path(@classified)}' class='alert-link'>Click here to edit settings</a>.")
|
20
21
|
].compact.join(' ')
|
21
22
|
end
|
22
23
|
|
@@ -4,16 +4,15 @@ class EffectiveClassifiedsDatatable < Effective::Datatable
|
|
4
4
|
length :all
|
5
5
|
order :start_on
|
6
6
|
|
7
|
-
col :start_on, as: :date, label: '
|
7
|
+
col :start_on, as: :date, label: 'Published'
|
8
|
+
col :end_on, as: :date, label: 'Closing'
|
8
9
|
|
9
10
|
col :title do |classified|
|
10
11
|
link_to classified, effective_classifieds.classified_path(classified)
|
11
12
|
end
|
12
13
|
|
13
|
-
col :
|
14
|
-
|
15
|
-
col :organization, visible: false
|
16
|
-
col :location, visible: false
|
14
|
+
col :organization
|
15
|
+
col :location
|
17
16
|
|
18
17
|
col :body, visible: false
|
19
18
|
col :website, visible: false
|
@@ -28,7 +28,7 @@ module EffectiveClassifiedsClassifiedWizard
|
|
28
28
|
|
29
29
|
acts_as_wizard(
|
30
30
|
start: 'Start',
|
31
|
-
classified: '
|
31
|
+
classified: 'Posting',
|
32
32
|
summary: 'Review',
|
33
33
|
billing: 'Billing Address',
|
34
34
|
checkout: 'Checkout',
|
@@ -107,7 +107,7 @@ module EffectiveClassifiedsClassifiedWizard
|
|
107
107
|
|
108
108
|
# Instance Methods
|
109
109
|
def to_s
|
110
|
-
'
|
110
|
+
'posting submission'
|
111
111
|
end
|
112
112
|
|
113
113
|
def in_progress?
|
@@ -1,10 +1,10 @@
|
|
1
1
|
= effective_form_with(model: classified, url: classified.persisted? ? effective_classifieds.admin_classified_path(classified.id) : effective_classifieds.admin_classifieds_path) do |f|
|
2
|
-
= f.check_box :authenticate_user, label: 'Yes, the user must be be signed in to view
|
2
|
+
= f.check_box :authenticate_user, label: 'Yes, the user must be be signed in to view', hint: 'Sign up is required to register for any classified'
|
3
3
|
|
4
4
|
- if EffectiveClassifieds.use_effective_roles
|
5
5
|
= f.checks :roles, EffectiveRoles.roles_collection(f.object)
|
6
6
|
|
7
7
|
%p.text-hint
|
8
|
-
*
|
8
|
+
* Do not select a role to allow anyone with an account to view
|
9
9
|
|
10
10
|
= f.submit
|
@@ -5,10 +5,9 @@
|
|
5
5
|
- datatable = EffectiveResources.best('EffectiveClassifiedWizardsDatatable').new(self, namespace: :effective)
|
6
6
|
|
7
7
|
- if submission.present?
|
8
|
-
%h2 In-progress
|
8
|
+
%h2 In-progress Postings
|
9
9
|
|
10
|
-
%p
|
11
|
-
Your submission for #{submission.classified.presence || 'a classified'} is incomplete.
|
10
|
+
%p Your posting submission is incomplete:
|
12
11
|
|
13
12
|
%p
|
14
13
|
Please
|
@@ -19,12 +18,12 @@
|
|
19
18
|
|
20
19
|
%hr
|
21
20
|
|
22
|
-
%h2
|
21
|
+
%h2= EffectiveClassifieds.classifieds_label
|
23
22
|
|
24
23
|
- if datatable.present?
|
25
24
|
= render_simple_datatable(datatable)
|
26
25
|
- else
|
27
|
-
%p You don't have any
|
26
|
+
%p You don't have any postings. When you do, we'll show them here.
|
28
27
|
|
29
28
|
- if submission.blank?
|
30
|
-
%p= link_to
|
29
|
+
%p= link_to "Submit New #{EffectiveClassifieds.classifieds_label} Posting", effective_classifieds.new_classified_wizard_path, class: 'btn btn-primary'
|
@@ -1,30 +1,29 @@
|
|
1
|
-
|
2
|
-
- classified = classified_wizard.classified
|
1
|
+
- classified = classified_wizard.classified
|
3
2
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
3
|
+
%table.table.table-sm
|
4
|
+
%tbody
|
5
|
+
%tr
|
6
|
+
%th.border-0 Posting
|
7
|
+
%td.border-0
|
9
8
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
9
|
+
- if classified&.published?
|
10
|
+
= link_to(classified, effective_classifieds.classified_path(classified), target: '_blank')
|
11
|
+
- else
|
12
|
+
= classified.presence || 'Posting was deleted'
|
14
13
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
14
|
+
- if request.path.start_with?('/admin')
|
15
|
+
%tr
|
16
|
+
%th Owner
|
17
|
+
%td
|
18
|
+
- url = (polymorphic_admin_path(classified_wizard.owner) rescue "/admin/users/#{classified_wizard.owner.to_param}/edit")
|
19
|
+
= link_to(classified_wizard.owner, url)
|
20
|
+
- else
|
21
|
+
%tr
|
22
|
+
%th Owner
|
23
|
+
%td= classified_wizard.owner
|
25
24
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
25
|
+
- if classified&.was_submitted?
|
26
|
+
%tr
|
27
|
+
%th Status
|
28
|
+
%td
|
29
|
+
%span.badge.badge-secondary= classified.status
|
@@ -10,6 +10,6 @@
|
|
10
10
|
= f.fields_for(:owner, f.object.owner) do |fo|
|
11
11
|
= effective_address_fields(fo, :billing)
|
12
12
|
|
13
|
-
%p.text-muted * Not all
|
13
|
+
%p.text-muted * Not all postings require a fee and we ask for a billing address for future use.
|
14
14
|
|
15
15
|
= f.save 'Save and Continue'
|
@@ -3,13 +3,12 @@
|
|
3
3
|
|
4
4
|
.card
|
5
5
|
.card-body
|
6
|
-
%p
|
7
|
-
Welcome #{current_user}!
|
6
|
+
%p Welcome #{current_user}!
|
8
7
|
|
9
8
|
%p
|
10
|
-
You can use this wizard to
|
9
|
+
You can use this wizard to submit a new #{EffectiveClassifieds.classifieds_label} posting.
|
11
10
|
Your progress will be saved as you move through the wizard.
|
12
|
-
Once
|
11
|
+
Once your posting is published you are able to come back and edit the details.
|
13
12
|
|
14
13
|
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
15
14
|
= f.hidden_field :id
|
@@ -10,11 +10,11 @@
|
|
10
10
|
- raise('expected a purchased classified submit_order') unless resource.submit_order&.purchased?
|
11
11
|
|
12
12
|
.alert.alert-warning.mb-4
|
13
|
-
This
|
13
|
+
This posting was submitted on #{classified.submitted_at.strftime('%F')}.
|
14
14
|
|
15
15
|
- unless classified.approved?
|
16
|
-
|
17
|
-
|
16
|
+
.alert.alert-danger.mb-4
|
17
|
+
Your posting must still be approved before it will be displayed.
|
18
18
|
|
19
19
|
= link_to "Return to Dashboard", root_path, class: 'btn btn-lg btn-primary mb-4'
|
20
20
|
|
@@ -1,51 +1,51 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
1
|
+
-# TODO turn this into a partial that is rendered on index
|
2
|
+
|
3
|
+
%table.table.effective-classified-table
|
4
|
+
%tbody
|
5
|
+
%tr
|
6
|
+
%th Category
|
7
|
+
%td= classified.category
|
8
|
+
|
9
|
+
%tr
|
10
|
+
%th Title
|
11
|
+
%td= classified.title
|
12
|
+
|
13
|
+
%tr
|
14
|
+
%th Available
|
15
|
+
%td
|
16
|
+
#{classified.start_on&.strftime('%F')}
|
17
|
+
to
|
18
|
+
#{classified.end_on&.strftime('%F')}
|
19
|
+
|
20
|
+
- if classified.location.present?
|
21
|
+
%tr
|
22
|
+
%th Location
|
23
|
+
%td= classified.location
|
24
|
+
|
25
|
+
%tr
|
26
|
+
%th Description
|
27
|
+
%td= classified.body.to_s
|
28
|
+
|
29
|
+
- if classified.file.attached?
|
30
|
+
%tr
|
31
|
+
%th Attachment
|
32
|
+
%td= link_to(classified.file.filename, main_app.url_for(classified.file), target: '_blank')
|
33
|
+
|
34
|
+
%tr
|
35
|
+
%th Company
|
36
|
+
%td= classified.organization
|
37
|
+
|
38
|
+
- if classified.website.present?
|
39
|
+
%tr
|
40
|
+
%th Website
|
41
|
+
%td= link_to(classified.website, classified.website, target: '_blank')
|
42
|
+
|
43
|
+
- if classified.email.present?
|
44
|
+
%tr
|
45
|
+
%th Email
|
46
|
+
%td= mail_to(classified.email)
|
47
|
+
|
48
|
+
- if classified.phone.present?
|
49
|
+
%tr
|
50
|
+
%th Phone
|
51
|
+
%td= classified.phone
|
@@ -1,4 +1,4 @@
|
|
1
|
-
%h2
|
1
|
+
%h2= EffectiveClassifieds.classifieds_label
|
2
2
|
|
3
3
|
- published = Effective::Classified.classifieds(user: current_user).count
|
4
4
|
|
@@ -6,6 +6,6 @@
|
|
6
6
|
- datatable = EffectiveClassifiedsDatatable.new(self, namespace: :effective)
|
7
7
|
= render_datatable(datatable, simple: true)
|
8
8
|
- else
|
9
|
-
%p There are no active
|
9
|
+
%p There are no active postings. When there are, we'll show them here.
|
10
10
|
|
11
|
-
%p= link_to 'View All
|
11
|
+
%p= link_to 'View All', effective_classifieds.classifieds_path, class: 'btn btn-primary'
|
@@ -1,5 +1,5 @@
|
|
1
1
|
= f.select :category, EffectiveClassifieds.categories, required: true
|
2
|
-
= f.text_field :title
|
2
|
+
= f.text_field :title, label: "#{EffectiveClassifieds.classifieds_label} Posting Title"
|
3
3
|
= f.text_field :location
|
4
4
|
|
5
5
|
- if f.object.persisted? || f.object.errors.include?(:slug)
|
@@ -11,20 +11,20 @@
|
|
11
11
|
.row
|
12
12
|
.col-lg-6
|
13
13
|
= f.date_field :start_on, label: "Start",
|
14
|
-
hint: 'The
|
14
|
+
hint: 'The posting will be displayed starting after this date.',
|
15
15
|
input_js: { minDate: minDate.strftime('%F') }
|
16
16
|
|
17
17
|
.col-lg-6
|
18
18
|
= f.date_field :end_on, label: "Expire",
|
19
|
-
hint: 'The
|
19
|
+
hint: 'The posting will no longer be displayed after this date.'
|
20
20
|
|
21
21
|
- if f.object.persisted? && !f.object.draft?
|
22
|
-
= f.check_box :archived, label: 'Yes, this
|
22
|
+
= f.check_box :archived, label: 'Yes, this posting is archived. It will not be displayed.'
|
23
23
|
|
24
24
|
- if defined?(EffectiveArticleEditor)
|
25
|
-
= f.article_editor :body, label: '
|
25
|
+
= f.article_editor :body, label: 'Description', hint: 'The content of your posting. Be sure to include all relevant information!'
|
26
26
|
- else
|
27
|
-
= f.rich_text_area :body, label: '
|
27
|
+
= f.rich_text_area :body, label: 'Description', hint: 'The content of your posting. Be sure to include all relevant information!'
|
28
28
|
|
29
29
|
= f.file_field :file, label: 'Attach PDF'
|
30
30
|
|
@@ -0,0 +1,49 @@
|
|
1
|
+
%table.table.effective-classified-table
|
2
|
+
%tbody
|
3
|
+
%tr
|
4
|
+
%th Category
|
5
|
+
%td= classified.category
|
6
|
+
|
7
|
+
%tr
|
8
|
+
%th Title
|
9
|
+
%td= classified.title
|
10
|
+
|
11
|
+
%tr
|
12
|
+
%th Available
|
13
|
+
%td
|
14
|
+
#{classified.start_on&.strftime('%F')}
|
15
|
+
to
|
16
|
+
#{classified.end_on&.strftime('%F')}
|
17
|
+
|
18
|
+
- if classified.location.present?
|
19
|
+
%tr
|
20
|
+
%th Location
|
21
|
+
%td= classified.location
|
22
|
+
|
23
|
+
%tr
|
24
|
+
%th Description
|
25
|
+
%td= classified.body.to_s
|
26
|
+
|
27
|
+
- if classified.file.attached?
|
28
|
+
%tr
|
29
|
+
%th Attachment
|
30
|
+
%td= link_to(classified.file.filename, main_app.url_for(classified.file), target: '_blank')
|
31
|
+
|
32
|
+
%tr
|
33
|
+
%th Company
|
34
|
+
%td= classified.organization
|
35
|
+
|
36
|
+
- if classified.website.present?
|
37
|
+
%tr
|
38
|
+
%th Website
|
39
|
+
%td= link_to(classified.website, classified.website, target: '_blank')
|
40
|
+
|
41
|
+
- if classified.email.present?
|
42
|
+
%tr
|
43
|
+
%th Email
|
44
|
+
%td= mail_to(classified.email)
|
45
|
+
|
46
|
+
- if classified.phone.present?
|
47
|
+
%tr
|
48
|
+
%th Phone
|
49
|
+
%td= classified.phone
|
@@ -1,8 +1,9 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
= render 'layout' do
|
2
|
+
.resource-buttons
|
3
|
+
= link_to "Submit New #{EffectiveClassifieds.classifieds_label} Posting", effective_classifieds.new_classified_wizard_path, class: 'btn btn-primary'
|
3
4
|
|
4
|
-
= card do
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
= card do
|
6
|
+
- if @datatable.present?(self)
|
7
|
+
= render_datatable(@datatable, simple: true)
|
8
|
+
- else
|
9
|
+
%p There are no active postings. When there are, we'll show them here.
|
@@ -1,8 +1,50 @@
|
|
1
|
-
|
2
|
-
-
|
3
|
-
|
1
|
+
= render 'layout' do
|
2
|
+
.effective-classified
|
3
|
+
- unless @classified.published?
|
4
|
+
.alert.alert-warning.mb-4 This posting is not published.
|
4
5
|
|
5
|
-
|
6
|
+
.row
|
7
|
+
.col-md-4
|
8
|
+
%ul.list-unstyled
|
9
|
+
%li
|
10
|
+
%strong Company
|
11
|
+
= @classified.organization
|
6
12
|
|
7
|
-
|
8
|
-
|
13
|
+
- if @classified.location.present?
|
14
|
+
%li
|
15
|
+
%strong Location
|
16
|
+
= @classified.location
|
17
|
+
|
18
|
+
%li
|
19
|
+
%strong Published
|
20
|
+
#{@classified.start_on&.strftime("%b %d, %Y")}
|
21
|
+
|
22
|
+
%li
|
23
|
+
%strong Closing
|
24
|
+
#{@classified.end_on&.strftime("%b %d, %Y")}
|
25
|
+
|
26
|
+
|
27
|
+
- if @classified.file.attached?
|
28
|
+
%li
|
29
|
+
%strong Attachment
|
30
|
+
= link_to(@classified.file.filename, main_app.url_for(@classified.file), target: '_blank')
|
31
|
+
|
32
|
+
|
33
|
+
%ul.list-unstyled
|
34
|
+
- if @classified.website.present?
|
35
|
+
%li
|
36
|
+
%strong Website
|
37
|
+
= link_to(@classified.website, @classified.website, target: '_blank')
|
38
|
+
|
39
|
+
- if @classified.email.present?
|
40
|
+
%li
|
41
|
+
%strong Email
|
42
|
+
= mail_to(@classified.email)
|
43
|
+
|
44
|
+
- if @classified.phone.present?
|
45
|
+
%li
|
46
|
+
%strong Phone
|
47
|
+
= @classified.phone
|
48
|
+
|
49
|
+
.col-md-8
|
50
|
+
= @classified.body.to_s
|
@@ -1,9 +1,9 @@
|
|
1
1
|
%p Hello Admin!
|
2
2
|
|
3
3
|
- if @classified.published?
|
4
|
-
%p The following
|
4
|
+
%p The following posting has been submitted and is published online:
|
5
5
|
- else
|
6
|
-
%p The following
|
6
|
+
%p The following posting has been submitted and is awaiting your approval:
|
7
7
|
|
8
8
|
%hr
|
9
9
|
|
@@ -13,8 +13,8 @@
|
|
13
13
|
%hr
|
14
14
|
|
15
15
|
- unless @classified.approved?
|
16
|
-
%p= link_to('Approve
|
16
|
+
%p= link_to('Approve Posting', effective_classifieds.edit_admin_classified_path(@classified))
|
17
17
|
|
18
|
-
%p= link_to('View
|
18
|
+
%p= link_to('View Posting', effective_classifieds.classified_path(@classified))
|
19
19
|
|
20
20
|
%p Have a great day!
|
@@ -12,6 +12,9 @@ EffectiveClassifieds.setup do |config|
|
|
12
12
|
# Classified Settings
|
13
13
|
# config.classified_wizard_class_name = 'Effective::ClassifiedWizard'
|
14
14
|
|
15
|
+
# Page title like Classifieds or Job Board
|
16
|
+
config.classifieds_label = 'Classifieds'
|
17
|
+
|
15
18
|
# Pagination length on the Classified#index page
|
16
19
|
config.per_page = :all
|
17
20
|
|
@@ -10,7 +10,7 @@ module EffectiveClassifieds
|
|
10
10
|
:classifieds_table_name, :classified_wizards_table_name,
|
11
11
|
:mailer, :parent_mailer, :deliver_method, :mailer_layout, :mailer_sender, :mailer_admin, :mailer_subject,
|
12
12
|
:layout, :categories, :per_page, :use_effective_roles, :max_duration, :auto_approve,
|
13
|
-
:classified_wizard_class_name
|
13
|
+
:classified_wizard_class_name, :classifieds_label
|
14
14
|
]
|
15
15
|
end
|
16
16
|
|
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.4.
|
4
|
+
version: 0.4.2
|
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-
|
11
|
+
date: 2022-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -227,6 +227,8 @@ files:
|
|
227
227
|
- app/views/effective/classifieds/_dashboard.html.haml
|
228
228
|
- app/views/effective/classifieds/_fields.html.haml
|
229
229
|
- app/views/effective/classifieds/_form.html.haml
|
230
|
+
- app/views/effective/classifieds/_layout.html.haml
|
231
|
+
- app/views/effective/classifieds/_summary.html.haml
|
230
232
|
- app/views/effective/classifieds/edit.html.haml
|
231
233
|
- app/views/effective/classifieds/index.html.haml
|
232
234
|
- app/views/effective/classifieds/show.html.haml
|
@@ -260,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
260
262
|
- !ruby/object:Gem::Version
|
261
263
|
version: '0'
|
262
264
|
requirements: []
|
263
|
-
rubygems_version: 3.
|
265
|
+
rubygems_version: 3.3.7
|
264
266
|
signing_key:
|
265
267
|
specification_version: 4
|
266
268
|
summary: Users submit classified ads for job openings and equipment sales
|