The project is in a healthy, maintained state
Users submit classified ads for job openings and equipment sales
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Effective Classifieds

Submit classified ads for job openings and equipment sales.

Getting Started

This requires Rails 6+ and Twitter Bootstrap 4 and just works with Devise.

Please first install the effective_datatables gem.

Please download and install the Twitter Bootstrap4

Add to your Gemfile:

gem 'haml-rails' # or try using gem 'hamlit-rails'
gem 'effective_classifieds'

Run the bundle command to install it:

bundle install

Then run the generator:

rails generate effective_classifieds:install

The generator will install an initializer which describes all configuration options and creates a database migration.

If you want to tweak the table names, manually adjust both the configuration file and the migration now.

Then migrate the database:

rake db:migrate

Please add the following to your user dashboard page:

.card.card-dashboard.mb-4
  .card-body= render 'effective/classifieds/dashboard'

.card.card-dashboard.mb-4
  .card-body= render 'effective/classified_wizards/dashboard'

and

Add a link to the admin menu:

- if can? :admin, :effective_classifieds
  - if can? :index, Effective::Classified
    = nav_link_to 'Classifieds', effective_classifieds.admin_classifieds_path

Configuration

Authorization

All authorization checks are handled via the effective_resources gem found in the config/initializers/effective_resources.rb file.

Effective Roles

This gem works with effective roles for the representative roles.

Configure your config/initializers/effective_roles.rb something like this:

Permissions

The permissions you actually want to define are as follows (using CanCan):

can([:index, :show], Effective::Classified) { |classified| classified.published? }
can([:show, :edit, :update], Effective::Classified) { |classified| classified.owner == user }

can(:new, EffectiveClassifieds.ClassifiedWizard)
can([:show, :index, :destroy], EffectiveClassifieds.ClassifiedWizard) { |submission| submission.owner == user }
can([:update], EffectiveClassifieds.ClassifiedWizard) { |submission| submission.owner == user && !submission.was_submitted? }

if user.admin?
  can :admin, :effective_classifieds

  can(crud - [:destroy], Classified)
  can(:approve, Classified) { |classified| classified.was_submitted? && !classified.approved? }
  can(:destroy, Classified) { |classified| !classified.draft? }

  can([:index, :show], EffectiveClassifieds.ClassifiedWizard)
end

License

MIT License. Copyright Code and Effect Inc.

Testing

Run tests by:

rails test

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Bonus points for test coverage
  6. Create new Pull Request