printable_calendar 0.0.6 → 0.0.7
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/README.md +1 -1
- data/exe/printable_calendar +1 -1
- data/lib/printable_calendar/version.rb +1 -1
- 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: 4fcd039fd7f0aa4fd152aa92c48d0b1d7af4b861
|
|
4
|
+
data.tar.gz: fd8cbdab8e7a61f58a211fa92a346844313d1730
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7c16d52f84ee8331ef993c03e4eea3a1eb9710134b174926ee68a6c201fa3730f745bf8190847620cd836c733410eb5f98dc2008705433a98540868b473679d
|
|
7
|
+
data.tar.gz: 4fbda3e15969fd2a216d07a9dd2d5be20537f32a1039952261150299cc070c0f771c45e270151fa3e66981458eb5856c4f440bdc407b2bace56a724cd8145c32
|
data/README.md
CHANGED
|
@@ -32,7 +32,7 @@ usage: printable_calendar [options]
|
|
|
32
32
|
--client-id Google client id
|
|
33
33
|
--client-secret Google client secret
|
|
34
34
|
--refresh-token Google refresh token
|
|
35
|
-
-p, --period Time period to use. Accepts work_week, american_week, intl_week, month, day
|
|
35
|
+
-p, --period Time period to use. Accepts work_week, american_week, intl_week, month, day. Defaults to work_week
|
|
36
36
|
--title Title for this calendar
|
|
37
37
|
--starting-from Date to anchor on. Defaults to today. Format as YYYY-MM-DD
|
|
38
38
|
--calendar-ids Google calendar IDs
|
data/exe/printable_calendar
CHANGED
|
@@ -21,7 +21,7 @@ opts = Slop.parse do |o|
|
|
|
21
21
|
o.string "--client-id", "Google client id"
|
|
22
22
|
o.string "--client-secret", "Google client secret"
|
|
23
23
|
o.string "--refresh-token", "Google refresh token"
|
|
24
|
-
o.string "-p", "--period", "Time period to use. Accepts #{PrintableCalendar::Range.supported_periods.join(", ")}"
|
|
24
|
+
o.string "-p", "--period", "Time period to use. Accepts #{PrintableCalendar::Range.supported_periods.join(", ")}. Defaults to work_week"
|
|
25
25
|
o.string "--title", "Title for this calendar"
|
|
26
26
|
o.string "--starting-from", "Date to anchor on. Defaults to today. Format as YYYY-MM-DD"
|
|
27
27
|
o.array "--calendar-ids", "Google calendar IDs"
|