chronic_duration 0.10.3 → 0.10.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +2 -0
- data/README.md +3 -1
- data/lib/chronic_duration.rb +1 -1
- data/lib/chronic_duration/version.rb +1 -1
- data/spec/lib/chronic_duration_spec.rb +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40a29997ddf4fe0636444f8e053a10c2137d55e5
|
4
|
+
data.tar.gz: cbb93992254d3a890b33ad01341bb2f74b8697b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66b1da9426ab003d09237ee94b2bfc37e2ea0952ce19d9419f07670653fcb61b7eebf4c7f2df9d094669084360b282ac9ad81aa0a2697c36f1ede916f7922690
|
7
|
+
data.tar.gz: 4674fba51c9cd76b75f6c85d9fc15583cfb407483325ba56be3da89b59f564ff85cfd0b47abed097941e933c464bb93c413fd83ba8f3db8706d10434ace6f563
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -32,6 +32,8 @@ The reverse can also be accomplished with the output method. So pass in seconds
|
|
32
32
|
=> 2 wks 1 day 1 hr
|
33
33
|
>> ChronicDuration.output(1299600, :weeks => true, :units => 2)
|
34
34
|
=> 2 wks 1 day
|
35
|
+
>> ChronicDuration.output(1299600, :weeks => true, :units => 2, :joiner => ', ')
|
36
|
+
=> 2 wks, 1 day
|
35
37
|
>> ChronicDuration.output(1296000)
|
36
38
|
=> 15 days
|
37
39
|
|
@@ -65,7 +67,7 @@ Also looking for additional maintainers.
|
|
65
67
|
|
66
68
|
## Contributors
|
67
69
|
|
68
|
-
errm,pdf, brianjlandau, jduff, olauzon, roboman, ianlevesque
|
70
|
+
errm,pdf, brianjlandau, jduff, olauzon, roboman, ianlevesque, bolandrm
|
69
71
|
|
70
72
|
## TODO
|
71
73
|
|
data/lib/chronic_duration.rb
CHANGED