Project

recruiter

0.01
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Recruiter is a Rails Engine for adding job posting functionality to a Rails APP. Users should be able to post articles
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Recruiter

Recruiter is a Rails Engine for adding job posting functionality to a Rails APP. It is intended to be reusable code for websites such as Ruby Jobs Brazil

Build Status Coverage Status Code Climate Dependency Status Gem Version

Notice

This project is under development and most of the information in this guide is only a specification rather than functional configuration.

Instalation

Add this line to your application's Gemfile:

gem 'recruiter'

And then execute:

$ bundle
$ rails g recruiter:install
$ rake recruiter:install:migrations
$ rake recruiter:install:views # optional. Copy erb files
$ rake db:migrate

This will create the following files:

  • app/initializers/recruiter.rb
  • config/locales/recruiter.en.yml
  • config/locales/recruiter.pt-BR.yml

Configuration

You can customize recruiter behavior by editing the config/initializer/recruiter.rb

Mounting the engine

mount Recruiter::Engine, at: 'human-resources'

Now all you need is to go to /human-resources path in your application.

TODO

Authors

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. Create new Pull Request

** Do not forget to write tests**