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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +11 -2
- data/lib/schedule/version.rb +1 -1
- data/schedule-cli.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 229fb547c2673e60933c174064a99b01b4a4592c265920dbecb2f67d3ba60a6d
|
|
4
|
+
data.tar.gz: 6d04d8db1981e37c72d86647ccd9fdbe1cfa6c1a653f88d63514a92087dbf5aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7dcbd461db604163bcafed325129b93e6526c5978910d0716a811d2d73d9bfa5087d32757ed5260c46b159ea39f9986773cf3c87d521e67ac79183bc4c3f825a
|
|
7
|
+
data.tar.gz: bef955cc87f03fdc0fa9c9908367e3451a111973e4aca4efebff9d35ef6ae64c8e3a3d4562c35a02923c7f8a3edc69230390f2fb4b17eb210a60a9c7f7c22d08
|
data/Gemfile.lock
CHANGED
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/
|
|
52
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/yasyf/schedule-cli.
|
data/lib/schedule/version.rb
CHANGED
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
|
|
14
|
-
spec.homepage = 'https://github.com/
|
|
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.
|
|
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/
|
|
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
|
|
200
|
+
summary: CLI to generate summary of Google Calendar openings.
|
|
201
201
|
test_files: []
|