countdown

Version, currently 0.1.03 versions

github.com/mamantoha/countdown-crystal

A simple Crystal library for calculating and producing an accurate, intuitive description of the timespan between two Time instances.

2 stars
1 dependent
License: MIT

Nothing has been indexed for 0.1.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.

Installation

# Add this to your shard.yml
dependencies:
  countdown:
    github: mamantoha/countdown-crystal
    version: ~> 0.1.0

Then run:

shards install

shard.yml

No shard.yml has been indexed for 0.1.0. You can read it on the repository.

Dependencies

Unknown: the shard.yml for this version has not been read yet.

README

This README is the one indexed from the repository at its latest ref, not from the tag for this version.

Countdown

Crystal CI GitHub release License

A simple Crystal library for calculating and producing an accurate, intuitive description of the timespan between two Time instances.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      countdown:
        github: mamantoha/countdown-crystal
  2. Run shards install

Features

  • Handles leap years, varying month lengths, timezone differences.
  • Generates human-readable strings representing the timespan.
  • Provides easy access to individual components (years, months, days, hours, minutes, seconds) of the timespan.

Usage

require "countdown"

start_time = Time.local(2023, 12, 31, 23, 59)
end_time = Time.local(2024, 2, 29, 12, 30)

countdown = Countdown.new(start_time, end_time)
puts countdown.components  # => {years: 0, months: 1, days: 28, hours: 12, minutes: 31, seconds: 0}
puts countdown.to_s        # => "1 month, 28 days, 12 hours and 31 minutes"
require "countdown"

Time::Location.local = Time::Location.load("Europe/Kyiv")

start_time = Time.local(2022, 3, 27, 2, 59)
# => 2022-03-27 02:59:00.0 +02:00 Local

end_time = Time.local(2022, 3, 28, 3, 0)
# => 2022-03-28 03:00:00.0 +03:00 Local

countdown = Countdown.new(start_time, end_time)

countdown.components
# => {years: 0, months: 0, days: 1, hours: 1, minutes: 1, seconds: 0}

countdown.to_s
# => "1 day, 1 hour and 1 minute"

countdown.to_s(oxford_comma: true)
# => "1 day, 1 hour, and 1 minute"

The Algorithm

The Countdown library calculates the difference between two dates in a way that feels natural and consistent. It treats "a month from now" as "the same date next month," ensuring smooth, predictable countdowns without sudden jumps.

The library works like basic subtraction, adjusting for time units (seconds, minutes, hours, days, months, years) as needed. Since months have different numbers of days, Countdown carefully tracks each month to provide accurate results.

Time Zones & Daylight Saving Time

Countdown also handles time zone differences and daylight saving time changes, ensuring that your countdowns are accurate regardless of the time zone or DST shifts between the start and end dates.

Inspiration

This library was inspired by Countdown.js. While the idea was taken from Countdown.js, no code was reused, and this implementation was developed entirely from scratch.

Contributing

  1. Fork it (https://github.com/mamantoha/countdown-crystal/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

Contributors