printable_calendar 0.0.7 → 0.0.8
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 +3 -3
- 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: b6bd48a4d3646fb47fd67ff51722f4b782b8fa42
|
|
4
|
+
data.tar.gz: 256fab23b4f12b366e74e585c06be37adeb524a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f6c9c77abc04c3b8c5ba66cb5bf1f91843b4e4afad792c3b184f3bc7f66af29b063b6b538ef408173dd3ae7beb51062b2e5de22d6363645d7831db31b57cbd6
|
|
7
|
+
data.tar.gz: 067130717b84ff0040a3fd202058a87cc58c3968453eb38b57ebacf05b74fc8835c3b6f74d98de269042f03fd82930704b5617d8154327706bd71bd2ec7209a6
|
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Printable Calendar
|
|
2
2
|
|
|
3
3
|
Generate printable agendas from Google Calendars.
|
|
4
4
|
|
|
5
|
-
I got sick of Google Calendar's terrible print dialog and decided to code around it. This command line utility will download a week, work week, or month of agenda items and render them in your default browser so you can print them easily.
|
|
5
|
+
I got sick of Google Calendar's terrible print dialog and decided to code around it. This command line utility will download a day, week, work week, or month of agenda items and render them in your default browser so you can print them easily.
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
@@ -34,7 +34,7 @@ usage: printable_calendar [options]
|
|
|
34
34
|
--refresh-token Google refresh token
|
|
35
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
|
-
--starting-from Date to anchor on. Defaults to today. Format as YYYY-MM-DD
|
|
37
|
+
-s, --starting-from Date to anchor on. Defaults to today. Format as YYYY-MM-DD
|
|
38
38
|
--calendar-ids Google calendar IDs
|
|
39
39
|
```
|
|
40
40
|
|
data/exe/printable_calendar
CHANGED
|
@@ -23,7 +23,7 @@ opts = Slop.parse do |o|
|
|
|
23
23
|
o.string "--refresh-token", "Google refresh token"
|
|
24
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
|
-
o.string "--starting-from", "Date to anchor on. Defaults to today. Format as YYYY-MM-DD"
|
|
26
|
+
o.string "-s", "--starting-from", "Date to anchor on. Defaults to today. Format as YYYY-MM-DD"
|
|
27
27
|
o.array "--calendar-ids", "Google calendar IDs"
|
|
28
28
|
end
|
|
29
29
|
|