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**