TabataTimer Gem Version

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

  1. Fork it ( https://github.com/[my-github-username]/tabata_timer/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request