TabataTimer 
Tabata Workout Timer(타바타 훈련 타이머)
Installation
Add this line to your application's Gemfile:
gem 'tabata_timer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tabata_timer
Usage
Basic (Exercise: 20sec, Break: 10sec, Iteration: 20times)
require 'tabata_timer'
Tabata.start
Custom (Exercise: 40sec, Break: 20sec, Iteration: 10times)
require 'tabata_timer'
Tabata.new(Timer.new(40), Timer.new(20), 10).start
Contributing
- Fork it ( https://github.com/[my-github-username]/tabata_timer/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request