0.08
No commit activity in last 3 years
No release in over 3 years
A parser and formatter for Golang's time.Duration
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0
 Project Readme

go-duration

go-duration is a gem which provides compatibility with Golang's time.Duration type strings.

Examples

From Golang's time.Duration:

d = GoDuration.parse("1m30s")
d.seconds
> 90

To Golang's time.Duration:

d = GoDuration::Duration.new(90)
d.to_s
> "1m30s"