项目作者: gugat

项目描述 :
Human Resources Assistance Control - Api
高级语言: Ruby
项目地址: git://github.com/gugat/hrac.git
创建时间: 2019-03-05T23:24:46Z
项目社区:https://github.com/gugat/hrac

开源协议:

下载


HRAC

Human Resources Assistance Control is an API that allows management of employees and their daily assistances to the office.

See the API documentation live

What you can do

The HRAC API allows you to:

  • Control employees personal information.
  • Control assistances of your employees, entries and exits of the office.
  • Get reporting about daily worked hours and anomalies like:
    • Absentism
    • Missing registration of assistances
    • Arriving late to the office
    • Leaving the office before the expected time
    • Worked less than the expected hours

Employees roles

There are two roles for employees: admin and staff each one is able to do different things:

Feature Admin Staff
Create and list employees Yes No
See an employee info Yes Yes (Only her info)
Register assistances (entries and exits) Yes No
List assistances Yes Yes (Only her assistances)
See journey report* Yes Yes (Only her journeys)

* A 'Journey' is a summary of the daily activity of an employee, it includes assistances, anomalies and worked hours.

About the API

Once cloned:

  • To access documentation in the browser go to: /api-docs.
  • To generate Api documentation execute: rake rswag:specs:swaggerize.

Setup

Dependencies

  • Postgres 9.6
  • Rails 5.1.3
  • Ruby 2.3.5

Environment variables

SCHEMAS_HOST

Host for the schemas references. Set it with the value of the production host because swagger.json documention is generated before deployment with the rake task swagger:host. See deployment section to see when it is used.

Configuration variables

schedule.yml

Handles parameters for working hours.

  1. max_arrive_time: 08H00
  2. min_leave_time: 18H00
  3. min_worked_hours: 8

api.yml

Handles parameters for api documentation. For now json schemas information path and host.

  1. schemas_path: <%= "#{Rails.root}/spec/support/api/schemas/" %>
  2. schemas_host: 'http://localhost:3000'

Test Suite

bundle exec rspec

Deployment

You can use Heroku for deployment.

First deploy

  1. heroku login
  2. heroku create
  3. RAILS_ENV=production rake swagger:host
  4. git push heroku master
  5. heroku run rake db:migrate

Following deploys

  1. RAILS_ENV=production rake swagger:host
  2. git push heroku master
  3. heroku run rake db:migrate