Sha256: 54a5f37822cc5ff33f2693ced2435d821eff5452910d08680acbfda6fec70e40
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 KB
Contents
# TimeDuration ## Installation Add this line to your application's Gemfile: ```ruby gem 'time-duration' ``` And then execute: $ bundle Or install it yourself as: $ gem install time-duration ## Usage ### Parser ```ruby duration = TimeDuration.parse('1:10') duration.to_s # => "1:10" duration = TimeDuration.parse('1:70') duration.to_s # => "2:10" ``` ### Initializer ```ruby TimeDuration::Duration.new # => 0:00 TimeDuration::Duration.new(minute: 10) # => 0:10 TimeDuration::Duration.new(hour: 1) # => 1:00 TimeDuration::Duration.new(hour: 1, minute: 10) # => 1:10 ``` ### Operations ```ruby duration = TimeDuration.parse('0:40') + TimeDuration.parse('0:30') duration.to_s # => "1:10" duration = TimeDuration.parse('0:40') - TimeDuration.parse('0:30') duration.to_s # => "0:10" ``` ### Comparisons ```ruby TimeDuration.parse('0:40') > TimeDuration.parse('0:30') # => true TimeDuration.parse('0:60') == TimeDuration.parse('1:00') # => true ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/time_duration.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
time-duration-0.1.2 | README.md |