Skip to content
Masanori Ohgita edited this page Nov 6, 2015 · 39 revisions

jquery-simple-datatimepicker Wiki

A documents for development of jquery-simple-datatimepicker.

Get started

  • For user: (Stable version)
  • For developers: (Development version)
    • Git: $ git clone https://github.com/mugifly/jquery-simple-datetimepicker.git

Version and Example page

Versioning and Branch / Tag name rule

Version

  • Format: major.minor.revision
    • revision: such as bug fix
  • Example: 1.0.0

Tag and Branch

  • Branch: X.X.x (example: 1.0.x). However, mainstream (will released at next) development version has committed to the master branch.
  • Tag: X.X.X (example: 1.0.0) - It's just a released version.

Testing

Automated test on Travis-CI

Automated testing on Travis-CI: Build Status (master branch)

Local test

To run a test in your local, you must install Node.js (that includes the npm command). Then please run the following commands:

$ sudo npm install -g grunt-cli
$ npm install
$ grunt test

The test scripts which based on QUnit testing framework has included in t/ directory.

Thank you.