zoom_launcher 0.1.0 → 0.1.1

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: c4ca63f84f5c8da5810082955ee23f085a2e4848
4
- data.tar.gz: 2390d29c2430bdc57809cdf326a2437c69659c46
3
+ metadata.gz: 749f9399b1f7da6cec06469522d170acc99abd7a
4
+ data.tar.gz: 935e1023661e5321d3c83c9e0e596766ec55f851
5
5
  SHA512:
6
- metadata.gz: e4b9a62f6e889891e5d38efea74ee9aee274ea1813a95974d551930e5f626035fb961e476782f0bec6e9a3f39549967958fc1321095af5305bdd5685c4c5c4bc
7
- data.tar.gz: 7a03a9247007aa4bdd2b366649a1dec3ccd2f7426f46aa2b6e8e38266f7009b3de3261dea56b771146c87fa1c4e0366e3a1c95a4d7cd20104cbdc98870d1f861
6
+ metadata.gz: cc441c828c94650ee851283209fc9a050e486c6fbed38d15336b401833aca3323b73ef6844d7148144714870459890e42f70b37c0439d71e96aff0047fd84f8d
7
+ data.tar.gz: ab7c2bd1a1b2b037d93fc0eb1a86eea60a0eb9cfbb596d2fcc0d34407c4ce064ac2ed1334f902085ab184ebaf59ccba3d35bc9ddb6369ab8a284dad5de7f3c4c
data/README.md CHANGED
@@ -21,8 +21,16 @@ Oh, and here's the URL in case you need it: https://www.google.com/calendar/even
21
21
 
22
22
  In order to use Zoom Launcher, you need to create an OAuth app and authorize it to access your calendar:
23
23
 
24
- 1. Go to https://console.developers.google.com and create a new project
25
- 2. Click "Credentials on the left size and create a new credential for that project"
24
+ 1. Go to https://console.developers.google.com and create a new project (you may need to switch to your work account)
25
+ 2. Click "Credentials" on the left side and create a new OAuth credential with type "other" for that project
26
26
  3. Create a new OAuth credential, and download the resulting JSON file
27
27
  4. Move the file to `~/.config/google/client_secrets.json`
28
28
  5. Run `zoom auth` and follow the instructions to authorize the app
29
+
30
+ ## Project status
31
+
32
+ Rough-around-the-edges-but-it-usually-works-use-at-your-own-peril
33
+
34
+ ## Pro-tip
35
+
36
+ Set Zoom to open with video and audio disabled for your own safety.
@@ -73,7 +73,7 @@ module ZoomLauncher
73
73
  credentials = authorizer.get_credentials(user_id)
74
74
  if credentials.nil?
75
75
  url = authorizer.get_authorization_url(base_url: OOB_URI)
76
- `open #{url}`
76
+ `open "#{url}"`
77
77
  code = ask 'Enter the authorization code:'
78
78
  credentials = authorizer.get_and_store_credentials_from_code(
79
79
  user_id: user_id, code: code, base_url: OOB_URI
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ZoomLauncher
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zoom_launcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Balter