printable_calendar 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b3dcce62800d249dace8dcebc8ad6d5e9f5eb482
4
- data.tar.gz: b452a354825167c2102f3062ab33f0a2405c87fd
3
+ metadata.gz: 4fcd039fd7f0aa4fd152aa92c48d0b1d7af4b861
4
+ data.tar.gz: fd8cbdab8e7a61f58a211fa92a346844313d1730
5
5
  SHA512:
6
- metadata.gz: 8b4d03b250c4cecc7be95c9dcb299e220b670352bee79a40329544e8a191efbc473b8087c1abef7046540f44b0fab595ca4d73639327b3b9f582381286b2ceab
7
- data.tar.gz: 3ee3ff91f36ad87a77449111fd424c485c8cc29b5cbd0ccdf595c4e31d936a611c76b2fb02dace6cba6029f1f3d66942dd1eb175404bd5a1ad395643d8186b8b
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
@@ -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"
@@ -1,3 +1,3 @@
1
1
  module PrintableCalendar
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
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.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Isaac Cambron