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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4fcd039fd7f0aa4fd152aa92c48d0b1d7af4b861
4
- data.tar.gz: fd8cbdab8e7a61f58a211fa92a346844313d1730
3
+ metadata.gz: b6bd48a4d3646fb47fd67ff51722f4b782b8fa42
4
+ data.tar.gz: 256fab23b4f12b366e74e585c06be37adeb524a6
5
5
  SHA512:
6
- metadata.gz: f7c16d52f84ee8331ef993c03e4eea3a1eb9710134b174926ee68a6c201fa3730f745bf8190847620cd836c733410eb5f98dc2008705433a98540868b473679d
7
- data.tar.gz: 4fbda3e15969fd2a216d07a9dd2d5be20537f32a1039952261150299cc070c0f771c45e270151fa3e66981458eb5856c4f440bdc407b2bace56a724cd8145c32
6
+ metadata.gz: 0f6c9c77abc04c3b8c5ba66cb5bf1f91843b4e4afad792c3b184f3bc7f66af29b063b6b538ef408173dd3ae7beb51062b2e5de22d6363645d7831db31b57cbd6
7
+ data.tar.gz: 067130717b84ff0040a3fd202058a87cc58c3968453eb38b57ebacf05b74fc8835c3b6f74d98de269042f03fd82930704b5617d8154327706bd71bd2ec7209a6
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # PrintableCalendar
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
  ![Screenshot](docs/screenshot.png)
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
 
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module PrintableCalendar
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: printable_calendar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Isaac Cambron