An open API service indexing awesome lists of open source software.

https://github.com/cloudwalk/business-days

Checks if a given date is a business day and performs computations based on Business days.
https://github.com/cloudwalk/business-days

Last synced: 10 months ago
JSON representation

Checks if a given date is a business day and performs computations based on Business days.

Awesome Lists containing this project

README

          

# Business Days

Methods to check if a given date is a business days and to perform computations based on Business days.

## Installation

Add to your Gemfile:

```
gem 'business-days'
```

## Example

To add 2 business days to current time:
```
BusinessDays::business_days_from_utc_time(2, Time.now.utc)
```

## Limitations

- Hard coded to work with Brazilian times.
- Can only add business days to a given date, not subtract.

## Development

To generate a new build:

```
gem build business-days.gemspec
```

To publish a new version:
```
gem push business-days-$VERSION.gem
```

## License

This project is released under the [MIT License](https://opensource.org/licenses/MIT).