schedule-cli 0.1.3 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 639560b9143fd939dd209d25cb0cfeccf082409b184fca2c9113706c3e52dfd6
4
- data.tar.gz: f5fd5acf3eeb15e850d43126f13aa77f6f4f7f9e14187b7443502ae66703ca4d
3
+ metadata.gz: 229fb547c2673e60933c174064a99b01b4a4592c265920dbecb2f67d3ba60a6d
4
+ data.tar.gz: 6d04d8db1981e37c72d86647ccd9fdbe1cfa6c1a653f88d63514a92087dbf5aa
5
5
  SHA512:
6
- metadata.gz: 460746f66daa4e96106bf2a0cc549a9289b2e844eea0817eb7d8705b75a2a55211c0dca43dbc0908ea3c05378770506d7024d1207f93bb394f0794ba5b695bbf
7
- data.tar.gz: 81b71502db26f47e20720b450ed58f1b494775e4422564ce6029c86882c2d964b8fdc18d90b3b1fd43b70a402788868182d61eb863b06df80716bf2cc8a01887
6
+ metadata.gz: 7dcbd461db604163bcafed325129b93e6526c5978910d0716a811d2d73d9bfa5087d32757ed5260c46b159ea39f9986773cf3c87d521e67ac79183bc4c3f825a
7
+ data.tar.gz: bef955cc87f03fdc0fa9c9908367e3451a111973e4aca4efebff9d35ef6ae64c8e3a3d4562c35a02923c7f8a3edc69230390f2fb4b17eb210a60a9c7f7c22d08
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- schedule-cli (0.1.3)
4
+ schedule-cli (0.1.4)
5
5
  activesupport (~> 5.2)
6
6
  chronic
7
7
  google-api-client (~> 0.11)
data/README.md CHANGED
@@ -5,11 +5,20 @@ This gem allows you to quickly insert your calendar availability to any plain (o
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- $ gem install schedule
8
+ $ gem install schedule-cli
9
9
  ```
10
10
 
11
11
  ## Usage
12
12
 
13
+ ```bash
14
+ $ schedule -h
15
+ Schedule commands:
16
+ schedule availability type|duration offset # print availability table
17
+ schedule config # open config file in default editor
18
+ schedule help [COMMAND] # Describe available commands or one specific command
19
+ schedule reset
20
+ ```
21
+
13
22
  Run `schedule availability` to get your default availability table, which shows slots for a 30 minute meeting in a 3-day span centered on the weekday following today. Weekends are not considered as open slots unless the center date (`offset`) is a weekend.
14
23
 
15
24
  The command can optionally be passed two arguments. The first is either the name of a named event (see below), or a number of minutes to specify a duration. The second is a string (such as "next wednesday") which specifies the center of the range to be scheduled over.
@@ -40,4 +49,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
40
49
 
41
50
  ## Contributing
42
51
 
43
- Bug reports and pull requests are welcome on GitHub at https://github.com/karuna-health/schedule.
52
+ Bug reports and pull requests are welcome on GitHub at https://github.com/yasyf/schedule-cli.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Schedule
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.4'
5
5
  end
data/schedule-cli.gemspec CHANGED
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
10
10
  spec.authors = ['Yasyf Mohamedali']
11
11
  spec.email = ['yasyf@meetkaruna.com']
12
12
 
13
- spec.summary = 'CLI to generare summary of calendar openings.'
14
- spec.homepage = 'https://github.com/karuna-health/schedule-cli'
13
+ spec.summary = 'CLI to generate summary of Google Calendar openings.'
14
+ spec.homepage = 'https://github.com/yasyf/schedule-cli'
15
15
 
16
16
  # Specify which files should be added to the gem when it is released.
17
17
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schedule-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yasyf Mohamedali
@@ -175,7 +175,7 @@ files:
175
175
  - lib/schedule/config.rb
176
176
  - lib/schedule/version.rb
177
177
  - schedule-cli.gemspec
178
- homepage: https://github.com/karuna-health/schedule-cli
178
+ homepage: https://github.com/yasyf/schedule-cli
179
179
  licenses: []
180
180
  metadata: {}
181
181
  post_install_message:
@@ -197,5 +197,5 @@ rubyforge_project:
197
197
  rubygems_version: 2.7.6
198
198
  signing_key:
199
199
  specification_version: 4
200
- summary: CLI to generare summary of calendar openings.
200
+ summary: CLI to generate summary of Google Calendar openings.
201
201
  test_files: []