effective_classifieds 0.0.3 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -9
- data/app/controllers/effective/classified_submissions_controller.rb +1 -1
- data/app/controllers/effective/classifieds_controller.rb +0 -15
- data/app/datatables/admin/effective_classifieds_datatable.rb +1 -1
- data/app/datatables/effective_classified_submissions_datatable.rb +4 -5
- data/app/datatables/effective_classifieds_datatable.rb +11 -6
- data/app/models/concerns/effective_classifieds_classified_submission.rb +1 -1
- data/app/models/effective/classified.rb +2 -2
- data/app/views/effective/classified_submissions/_classified.haml +11 -10
- data/app/views/effective/classified_submissions/_dashboard.html.haml +23 -21
- data/app/views/effective/classified_submissions/_summary.html.haml +1 -1
- data/app/views/effective/classified_submissions/classified.html.haml +11 -12
- data/app/views/effective/classified_submissions/start.html.haml +6 -2
- data/app/views/effective/classified_submissions/summary.html.haml +1 -1
- data/app/views/effective/classifieds/_classified.html.haml +30 -34
- data/app/views/effective/classifieds/_dashboard.html.haml +5 -2
- data/app/views/effective/classifieds/_fields.html.haml +18 -12
- data/app/views/effective/classifieds/edit.html.haml +5 -0
- data/app/views/effective/classifieds/index.html.haml +7 -7
- data/app/views/effective/classifieds/show.html.haml +7 -7
- data/app/views/effective/classifieds_mailer/classified_submitted.html.haml +8 -4
- data/config/effective_classifieds.rb +3 -3
- data/lib/effective_classifieds/version.rb +1 -1
- metadata +3 -4
- data/app/views/effective/classifieds/_layout.html.haml +0 -1
- data/app/views/effective/classifieds/_spacer.html.haml +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c63e81e0e5192044916433851a3611a6dd378fab65da8a5371375b310737bc9f
|
4
|
+
data.tar.gz: cf7fea6948d57d2ed13a82e3f5e90bc6eb922aa1e61e4071deec4e770c0b3ff1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b432d9428538383229d8c71f0b15489081ba9028a807e13066fa3cc1850b03eca22962bc713d0a995afd2f4616df0e05e8773ae2c19a48986ec0c22662765d8c
|
7
|
+
data.tar.gz: 9721963c16dbab88c25303f923ffb440532663085a9d48722e6616e8465bb36d46afe59ea305aa2f1994ae11f44842756ec428bef1d523919506c09d3b70ab35
|
data/README.md
CHANGED
@@ -39,21 +39,18 @@ Then migrate the database:
|
|
39
39
|
rake db:migrate
|
40
40
|
```
|
41
41
|
|
42
|
-
Please add the following to your
|
43
|
-
|
44
|
-
```
|
45
|
-
effective_classifieds_user
|
46
|
-
|
47
|
-
Use the following datatables to display to your user their applicants dues:
|
42
|
+
Please add the following to your user dashboard page:
|
48
43
|
|
49
44
|
```haml
|
50
|
-
|
51
|
-
-
|
45
|
+
.card.card-dashboard.mb-4
|
46
|
+
.card-body= render 'effective/classifieds/dashboard'
|
47
|
+
|
48
|
+
.card.card-dashboard.mb-4
|
49
|
+
.card-body= render 'effective/classified_submissions/dashboard'
|
52
50
|
```
|
53
51
|
|
54
52
|
and
|
55
53
|
|
56
|
-
```
|
57
54
|
Add a link to the admin menu:
|
58
55
|
|
59
56
|
```haml
|
@@ -11,7 +11,7 @@ module Effective
|
|
11
11
|
existing = resource_scope.in_progress.where.not(id: resource).first
|
12
12
|
|
13
13
|
if existing.present?
|
14
|
-
flash[:success] = "You have been redirected to your
|
14
|
+
flash[:success] = "You have been redirected to your in-progress classified ad submission"
|
15
15
|
redirect_to effective_classifieds.classified_submission_build_path(existing, existing.next_step)
|
16
16
|
end
|
17
17
|
end
|
@@ -2,21 +2,6 @@ module Effective
|
|
2
2
|
class ClassifiedsController < ApplicationController
|
3
3
|
include Effective::CrudController
|
4
4
|
|
5
|
-
def index
|
6
|
-
@classifieds ||= Effective::Classified.classifieds(user: current_user)
|
7
|
-
|
8
|
-
@classifieds = @classifieds.paginate(page: params[:page])
|
9
|
-
|
10
|
-
# if params[:search].present?
|
11
|
-
# search = params[:search].permit(EffectiveClassifieds.permitted_params).delete_if { |k, v| v.blank? }
|
12
|
-
# @classifieds = @classifieds.where(search) if search.present?
|
13
|
-
# end
|
14
|
-
|
15
|
-
EffectiveResources.authorize!(self, :index, Effective::Classified)
|
16
|
-
|
17
|
-
@page_title ||= ['Classifieds', (" - Page #{params[:page]}" if params[:page])].compact.join
|
18
|
-
end
|
19
|
-
|
20
5
|
def show
|
21
6
|
@classified = resource_scope.find(params[:id])
|
22
7
|
|
@@ -6,15 +6,15 @@ class EffectiveClassifiedSubmissionsDatatable < Effective::Datatable
|
|
6
6
|
col :token, visible: false
|
7
7
|
col :created_at, visible: false
|
8
8
|
|
9
|
-
col :submitted_at do |submission|
|
9
|
+
col :submitted_at, label: 'Submitted' do |submission|
|
10
10
|
submission.submitted_at&.strftime('%F') || 'Incomplete'
|
11
11
|
end
|
12
12
|
|
13
|
-
col :classified, search: :string
|
13
|
+
col :classified, search: :string, label: 'Title'
|
14
14
|
|
15
15
|
col :owner, visible: false, search: :string
|
16
16
|
|
17
|
-
col :status do |submission|
|
17
|
+
col :status, visible: false do |submission|
|
18
18
|
submission.classified&.status || submission.status
|
19
19
|
end
|
20
20
|
|
@@ -22,8 +22,7 @@ class EffectiveClassifiedSubmissionsDatatable < Effective::Datatable
|
|
22
22
|
if submission.draft?
|
23
23
|
dropdown_link_to('Continue', effective_classifieds.classified_submission_build_path(submission, submission.next_step), 'data-turbolinks' => false)
|
24
24
|
else
|
25
|
-
dropdown_link_to('
|
26
|
-
dropdown_link_to('Edit', effective_classifieds.edit_classified_path(submission.classified)) if submission.classified
|
25
|
+
dropdown_link_to('Edit', effective_classifieds.edit_classified_path(submission.classified))
|
27
26
|
end
|
28
27
|
|
29
28
|
dropdown_link_to('Delete', effective_classifieds.classified_submission_path(submission), 'data-confirm': "Really delete #{submission}?", 'data-method': :delete)
|
@@ -1,21 +1,26 @@
|
|
1
1
|
# Dashboard Classifieds
|
2
2
|
class EffectiveClassifiedsDatatable < Effective::Datatable
|
3
3
|
datatable do
|
4
|
+
length :all
|
4
5
|
order :start_on
|
5
6
|
|
6
|
-
col :start_on, as: :date, label: '
|
7
|
-
col :end_on, as: :date, label: 'Ends'
|
7
|
+
col :start_on, as: :date, label: 'Posted'
|
8
8
|
|
9
|
-
col :title
|
10
|
-
|
11
|
-
|
9
|
+
col :title do |classified|
|
10
|
+
link_to classified, effective_classifieds.classified_path(classified)
|
11
|
+
end
|
12
|
+
|
13
|
+
col :end_on, as: :date, label: 'Expires', visible: false
|
14
|
+
|
15
|
+
col :organization, visible: false
|
16
|
+
col :location, visible: false
|
12
17
|
|
13
18
|
col :body, visible: false
|
14
19
|
col :website, visible: false
|
15
20
|
col :email, visible: false
|
16
21
|
col :phone, visible: false
|
17
22
|
|
18
|
-
actions_col(edit: false)
|
23
|
+
# actions_col(edit: false)
|
19
24
|
end
|
20
25
|
|
21
26
|
collection do
|
@@ -10,7 +10,7 @@ module Effective
|
|
10
10
|
log_changes if respond_to?(:log_changes)
|
11
11
|
acts_as_role_restricted if respond_to?(:acts_as_role_restricted)
|
12
12
|
|
13
|
-
# This will be the owner of the classified submission
|
13
|
+
# This will be the owner of the classified ad submission
|
14
14
|
# Or the admin user that created it
|
15
15
|
belongs_to :owner, polymorphic: true
|
16
16
|
|
@@ -21,7 +21,7 @@ module Effective
|
|
21
21
|
|
22
22
|
acts_as_statused(
|
23
23
|
:draft, # Initial state
|
24
|
-
:submitted, # Once submitted by the classified submission.
|
24
|
+
:submitted, # Once submitted by the classified ad submission.
|
25
25
|
:approved # Exit state. Classified was approved.
|
26
26
|
)
|
27
27
|
|
@@ -1,12 +1,13 @@
|
|
1
|
-
|
2
|
-
.
|
3
|
-
.
|
4
|
-
|
5
|
-
|
6
|
-
|
1
|
+
.card
|
2
|
+
.card-body
|
3
|
+
.row
|
4
|
+
.col-sm
|
5
|
+
%h5.card-title= classified_submission.wizard_step_title(:classified)
|
6
|
+
.col-sm-auto.text-right
|
7
|
+
= link_to('Edit', wizard_path(:classified)) if edit_effective_classified_submissions_wizard?
|
7
8
|
|
8
|
-
|
9
|
+
- classified = classified_submission.classified
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
11
|
+
- if classified.present?
|
12
|
+
= render('effective/classifieds/classified', classified: classified) do
|
13
|
+
= classified.body
|
@@ -1,28 +1,30 @@
|
|
1
|
-
|
2
|
-
- submission = EffectiveClassifieds.ClassifiedSubmission.in_progress.for(current_user).first
|
3
|
-
- datatable = EffectiveResources.best('EffectiveClassifiedSubmissionsDatatable').new(self, namespace: :effective)
|
1
|
+
- if can?(:new, EffectiveClassifieds.ClassifiedSubmission)
|
4
2
|
|
5
|
-
-
|
6
|
-
|
3
|
+
-# In-progress submission
|
4
|
+
- submission = EffectiveClassifieds.ClassifiedSubmission.in_progress.for(current_user).first
|
5
|
+
- datatable = EffectiveResources.best('EffectiveClassifiedSubmissionsDatatable').new(self, namespace: :effective)
|
7
6
|
|
8
|
-
|
9
|
-
|
7
|
+
- if submission.present?
|
8
|
+
%h2 In-progress Classified Ads
|
10
9
|
|
11
|
-
|
12
|
-
|
13
|
-
= link_to("Continue submission for #{submission.classified.presence || 'a classified'}", effective_classifieds.classified_submission_build_path(submission, submission.next_step), 'data-turbolinks' => false, class: 'btn btn-primary')
|
14
|
-
or you can
|
15
|
-
= link_to('Abandon submission', effective_classifieds.classified_submission_path(submission), 'data-confirm': "Really delete #{submission}?", 'data-method': :delete, class: 'btn btn-danger')
|
16
|
-
to submit another.
|
10
|
+
%p
|
11
|
+
Your submission for #{submission.classified.presence || 'a classified'} is incomplete.
|
17
12
|
|
18
|
-
|
13
|
+
%p
|
14
|
+
Please
|
15
|
+
= link_to("Continue submission for #{submission.classified.presence || 'a classified'}", effective_classifieds.classified_submission_build_path(submission, submission.next_step), 'data-turbolinks' => false, class: 'btn btn-primary')
|
16
|
+
or you can
|
17
|
+
= link_to('Abandon submission', effective_classifieds.classified_submission_path(submission), 'data-confirm': "Really delete #{submission}?", 'data-method': :delete, class: 'btn btn-danger')
|
18
|
+
to submit another.
|
19
19
|
|
20
|
-
%
|
20
|
+
%hr
|
21
21
|
|
22
|
-
|
23
|
-
= render_simple_datatable(datatable)
|
24
|
-
- else
|
25
|
-
%p You have no past classified submissions. When you do, we'll show them here.
|
22
|
+
%h2 Classified Ads
|
26
23
|
|
27
|
-
- if
|
28
|
-
|
24
|
+
- if datatable.present?
|
25
|
+
= render_simple_datatable(datatable)
|
26
|
+
- else
|
27
|
+
%p You don't have any classified ads. When you do, we'll show them here.
|
28
|
+
|
29
|
+
- if submission.blank?
|
30
|
+
%p= link_to 'Submit New Classified Ad', effective_classifieds.new_classified_submission_path, class: 'btn btn-primary'
|
@@ -1,17 +1,16 @@
|
|
1
|
-
= render '
|
2
|
-
= render 'effective/classified_submissions/content', resource: resource
|
1
|
+
= render 'effective/classified_submissions/content', resource: resource
|
3
2
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
.card
|
4
|
+
.card-body
|
5
|
+
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
6
|
+
= f.hidden_field :id
|
8
7
|
|
9
|
-
|
10
|
-
|
8
|
+
= f.fields_for :classified, (f.object.classified || f.object.build_classified) do |fc|
|
9
|
+
= fc.hidden_field :id
|
11
10
|
|
12
|
-
|
13
|
-
|
11
|
+
= fc.hidden_field :owner_id, value: f.object.owner_id
|
12
|
+
= fc.hidden_field :owner_type, value: f.object.owner_type
|
14
13
|
|
15
|
-
|
14
|
+
= render('effective/classifieds/fields', f: fc, classified: fc.object)
|
16
15
|
|
17
|
-
|
16
|
+
= f.save 'Save and Continue'
|
@@ -3,9 +3,13 @@
|
|
3
3
|
|
4
4
|
.card
|
5
5
|
.card-body
|
6
|
-
%p
|
6
|
+
%p
|
7
|
+
Welcome #{current_user}!
|
7
8
|
|
8
|
-
%p
|
9
|
+
%p
|
10
|
+
You can use this wizard to post a new classified ad.
|
11
|
+
Your progress will be saved as you move through the wizard.
|
12
|
+
Once the ad published you will be able to come back and edit/change the details.
|
9
13
|
|
10
14
|
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
11
15
|
= f.hidden_field :id
|
@@ -1,50 +1,46 @@
|
|
1
|
-
.card
|
1
|
+
.card
|
2
2
|
.card-body
|
3
|
-
%h5.card-title= classified.title
|
4
|
-
|
5
3
|
%table.table.effective-classified-table
|
6
4
|
%tbody
|
7
5
|
%tr
|
8
|
-
%
|
6
|
+
%th Category
|
9
7
|
%td= classified.category
|
10
8
|
|
11
9
|
%tr
|
12
|
-
%
|
13
|
-
%td
|
10
|
+
%th Title
|
11
|
+
%td= classified.title
|
14
12
|
|
15
13
|
%tr
|
16
|
-
%
|
17
|
-
%td
|
14
|
+
%th Available
|
15
|
+
%td
|
16
|
+
#{classified.start_on&.strftime('%F')}
|
17
|
+
to
|
18
|
+
#{classified.end_on&.strftime('%F')}
|
19
|
+
|
20
|
+
- if classified.website.present?
|
21
|
+
%tr
|
22
|
+
%th Location
|
23
|
+
%td= classified.location
|
18
24
|
|
19
25
|
%tr
|
20
|
-
%
|
21
|
-
%td
|
22
|
-
- if classified.website.present?
|
23
|
-
= link_to(classified.website, classified.website, target: '_blank')
|
24
|
-
- else
|
25
|
-
= '-'
|
26
|
+
%th Description
|
27
|
+
%td= classified.body
|
26
28
|
|
27
29
|
%tr
|
28
|
-
%
|
30
|
+
%th Company
|
29
31
|
%td= classified.organization
|
30
32
|
|
31
|
-
|
32
|
-
%
|
33
|
-
|
34
|
-
|
35
|
-
= mail_to(classified.email)
|
36
|
-
- else
|
37
|
-
= '-'
|
33
|
+
- if classified.website.present?
|
34
|
+
%tr
|
35
|
+
%th Website
|
36
|
+
%td= link_to(classified.website, classified.website, target: '_blank')
|
38
37
|
|
39
|
-
|
40
|
-
%
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
= yield
|
49
|
-
- else
|
50
|
-
%p= link_to('View Classified', effective_classifieds.classified_path(classified), class: 'btn btn-primary')
|
38
|
+
- if classified.email.present?
|
39
|
+
%tr
|
40
|
+
%th Email
|
41
|
+
%td= mail_to(classified.email)
|
42
|
+
|
43
|
+
- if classified.phone.present?
|
44
|
+
%tr
|
45
|
+
%th Phone
|
46
|
+
%td= classified.phone
|
@@ -2,7 +2,10 @@
|
|
2
2
|
|
3
3
|
- published = Effective::Classified.classifieds(user: current_user).count
|
4
4
|
|
5
|
-
-
|
6
|
-
=
|
5
|
+
- if published > 0
|
6
|
+
- datatable = EffectiveClassifiedsDatatable.new(self, namespace: :effective)
|
7
|
+
= render_datatable(datatable, simple: true)
|
8
|
+
- else
|
9
|
+
%p There are no active classified ads. When there are, we'll show them here.
|
7
10
|
|
8
11
|
%p= link_to 'View All Classifieds', effective_classifieds.classifieds_path, class: 'btn btn-primary'
|
@@ -1,5 +1,6 @@
|
|
1
|
-
= f.text_field :title
|
2
1
|
= f.select :category, EffectiveClassifieds.categories, required: true
|
2
|
+
= f.text_field :title
|
3
|
+
= f.text_field :location
|
3
4
|
|
4
5
|
- if f.object.persisted? || f.object.errors.include?(:slug)
|
5
6
|
- current_url = (effective_classifieds.classified_url(f.object) rescue nil)
|
@@ -7,22 +8,27 @@
|
|
7
8
|
|
8
9
|
- minDate = [Time.zone.now, f.object.created_at].compact.min
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
11
|
+
.row
|
12
|
+
.col-lg-6
|
13
|
+
= f.date_field :start_on, label: "Start",
|
14
|
+
hint: 'The classified ad will be displayed starting after this date.',
|
15
|
+
input_js: { minDate: minDate.strftime('%F') }
|
13
16
|
|
14
|
-
|
15
|
-
|
17
|
+
.col-lg-6
|
18
|
+
= f.date_field :end_on, label: "Expire",
|
19
|
+
hint: 'The classified ad will no longer be displayed after this date.'
|
16
20
|
|
17
21
|
- if f.object.persisted? && !f.object.draft?
|
18
22
|
= f.check_box :archived, label: 'Yes, this classified is archived and will not be displayed'
|
19
23
|
|
20
|
-
|
21
|
-
|
22
|
-
= f.text_field :location
|
23
|
-
= f.url_field :website
|
24
|
+
= f.rich_text_area :body, label: 'Body content', hint: 'The main body content of your classified ad. Be sure to include all relevant information!'
|
25
|
+
|
24
26
|
|
25
|
-
%h2 Contact Information
|
26
|
-
|
27
|
+
%h2.mt-5.mb-0 Contact Information
|
28
|
+
%p
|
29
|
+
%small.text-muted Contact information will be displayed on the classified ad.
|
30
|
+
|
31
|
+
= f.text_field :organization, label: 'Company or Organization'
|
32
|
+
= f.url_field :website
|
27
33
|
= f.email_field :email
|
28
34
|
= f.tel_field :phone
|
@@ -1,8 +1,8 @@
|
|
1
|
-
|
1
|
+
.resource-buttons
|
2
|
+
= link_to 'Submit New Classified Ad', effective_classifieds.new_classified_submission_path, class: 'btn btn-primary'
|
2
3
|
|
3
|
-
=
|
4
|
-
|
5
|
-
=
|
6
|
-
|
7
|
-
|
8
|
-
= bootstrap_paginate(@classifieds, per_page: EffectiveClassifieds.per_page)
|
4
|
+
= card do
|
5
|
+
- if @datatable
|
6
|
+
= render_datatable(@datatable, simple: true)
|
7
|
+
- else
|
8
|
+
%p There are no active classified ads. When there are, we'll show them here.
|
@@ -1,8 +1,8 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
-
|
4
|
-
.alert.alert-warning This classified is currently unavailable.
|
1
|
+
.effective-classified
|
2
|
+
- unless @classified.published?
|
3
|
+
.alert.alert-warning.mb-4 This classified is currently unavailable.
|
5
4
|
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
= render 'effective/classifieds/classified', classified: @classified
|
6
|
+
|
7
|
+
.resource-buttons.text-left
|
8
|
+
= link_to 'View All Classifieds', effective_classifieds.classifieds_path, class: 'btn btn-primary'
|
@@ -1,16 +1,20 @@
|
|
1
1
|
%p Hello Admin!
|
2
2
|
|
3
3
|
- if @classified.published?
|
4
|
-
%p The following classified has been submitted and is published online:
|
4
|
+
%p The following classified ad has been submitted and is published online:
|
5
5
|
- else
|
6
|
-
%p The following classified has been submitted and is awaiting your approval:
|
7
|
-
|
6
|
+
%p The following classified ad has been submitted and is awaiting your approval:
|
7
|
+
|
8
|
+
%hr
|
8
9
|
|
9
10
|
= render('effective/classifieds/classified', classified: @classified) do
|
10
11
|
%p= @classified.body
|
11
12
|
|
12
13
|
%hr
|
13
14
|
|
14
|
-
|
15
|
+
- if !@classified.published?
|
16
|
+
%p= link_to('Approve Classified Ad', effective_classifieds.edit_admin_classified_path(@classified))
|
17
|
+
|
18
|
+
%p= link_to('View Classified Ad', effective_classifieds.classified_path(@classified))
|
15
19
|
|
16
20
|
%p Have a great day!
|
@@ -3,7 +3,7 @@ EffectiveClassifieds.setup do |config|
|
|
3
3
|
config.classified_submissions_table_name = :classified_submissions
|
4
4
|
|
5
5
|
# Every classified must have a category.
|
6
|
-
config.categories = ['Job
|
6
|
+
config.categories = ['Job', 'Equipment Sales', 'Other']
|
7
7
|
|
8
8
|
# Layout Settings
|
9
9
|
# Configure the Layout per controller, or all at once
|
@@ -13,7 +13,7 @@ EffectiveClassifieds.setup do |config|
|
|
13
13
|
# config.classified_submission_class_name = 'Effective::ClassifiedSubmission'
|
14
14
|
|
15
15
|
# Pagination length on the Classified#index page
|
16
|
-
config.per_page =
|
16
|
+
config.per_page = :all
|
17
17
|
|
18
18
|
# Classified can be restricted by role
|
19
19
|
config.use_effective_roles = true
|
@@ -21,7 +21,7 @@ EffectiveClassifieds.setup do |config|
|
|
21
21
|
# Automatically end classifieds after this duration
|
22
22
|
config.max_duration = 3.months
|
23
23
|
|
24
|
-
# Automatically approve classified submissions, otherwise require admin approval
|
24
|
+
# Automatically approve classified ad submissions, otherwise require admin approval
|
25
25
|
config.auto_approve = false
|
26
26
|
|
27
27
|
# Mailer Configuration
|
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.0
|
4
|
+
version: 0.1.0
|
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-
|
11
|
+
date: 2022-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -209,8 +209,7 @@ files:
|
|
209
209
|
- app/views/effective/classifieds/_dashboard.html.haml
|
210
210
|
- app/views/effective/classifieds/_fields.html.haml
|
211
211
|
- app/views/effective/classifieds/_form.html.haml
|
212
|
-
- app/views/effective/classifieds/
|
213
|
-
- app/views/effective/classifieds/_spacer.html.haml
|
212
|
+
- app/views/effective/classifieds/edit.html.haml
|
214
213
|
- app/views/effective/classifieds/index.html.haml
|
215
214
|
- app/views/effective/classifieds/show.html.haml
|
216
215
|
- app/views/effective/classifieds_mailer/classified_submitted.html.haml
|
@@ -1 +0,0 @@
|
|
1
|
-
= yield
|
@@ -1 +0,0 @@
|
|
1
|
-
%hr
|