This code is no longer being actively maintained. It should not be used in production. It may or may not work for your particular use case.
Schedule is a library for scheduling a set of tasks with complex dependencies that require a set of resources to complete. Takes advantage of Later schedules to provide incredible flexibility on when tasks are scheduled and when resources can be reserved.
Types of schedules supported by Schedule:
- Schedule a set of work items across developers with different schedules
- Manage elevator reservations for an apartment building
- Schedule the company ping pong tournment
####For complete documentation visit http://bunkat.github.io/schedule/.
Using npm:
$ npm install schedulejs
Using bower:
$ bower install later
$ bower install schedule
To build the minified javascript files for schedule, run npm install
to install dependencies and then:
$ make build
To run the tests for schedule, run npm install
to install dependencies and then:
$ make test
Releases will be numbered with the following format:
<major>.<minor>.<patch>
And constructed with the following guidelines:
- Breaking backward compatibility bumps the major (and resets the minor and patch)
- New additions without breaking backward compatibility bumps the minor (and resets the patch)
- Bug fixes and misc changes bumps the patch
For more information on SemVer, please visit http://semver.org/.
Have a bug or a feature request? Please open a new issue.
- First documented release.