zoom_rb 0.8.3 → 0.8.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 +8 -8
- data/lib/zoom/actions/webinar.rb +1 -1
- data/zoom_rb.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5f591a2c337152af85ba38cde891399d776d624445797f562e82a54b46092a6
|
|
4
|
+
data.tar.gz: 675162709fb653e284324ddc5d6a16d1754b455096a2b66b4d78abd416347a76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e7b6f9698d12ad149d1dd1a6f2ff3cc0a8c9ba4699e3a8bfe42ee10e71454603f9bdc39adcdc73ba6c235eb2b24e78eedd3161e3479623e26ccb7f8ce77ac46
|
|
7
|
+
data.tar.gz: f0f71e9795ed558c35d40af2f02c5f05adaef5addcc28a8da9641e951497f464b992b12c9b04a878c685609eb0a3e5fa33b8bf7d0a23afa7fd59c700a146c406
|
data/Gemfile.lock
CHANGED
|
@@ -3,8 +3,8 @@ PATH
|
|
|
3
3
|
specs:
|
|
4
4
|
zoom_rb (0.8.3)
|
|
5
5
|
httparty (~> 0.13)
|
|
6
|
-
json (
|
|
7
|
-
jwt
|
|
6
|
+
json (~> 2.1)
|
|
7
|
+
jwt (~> 2.1)
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
@@ -79,12 +79,12 @@ PLATFORMS
|
|
|
79
79
|
ruby
|
|
80
80
|
|
|
81
81
|
DEPENDENCIES
|
|
82
|
-
hint-rubocop_style
|
|
83
|
-
pry
|
|
84
|
-
rspec
|
|
85
|
-
rspec_junit_formatter
|
|
86
|
-
simplecov
|
|
87
|
-
webmock
|
|
82
|
+
hint-rubocop_style (~> 0)
|
|
83
|
+
pry (~> 0)
|
|
84
|
+
rspec (~> 3.8)
|
|
85
|
+
rspec_junit_formatter (~> 0.4.1)
|
|
86
|
+
simplecov (~> 0.16.1)
|
|
87
|
+
webmock (~> 3.4)
|
|
88
88
|
zoom_rb!
|
|
89
89
|
|
|
90
90
|
BUNDLED WITH
|
data/lib/zoom/actions/webinar.rb
CHANGED
|
@@ -8,7 +8,7 @@ module Zoom
|
|
|
8
8
|
SETTINGS_KEYS = %i[panelists_video practice_session hd_video approval_type
|
|
9
9
|
registration_type audio auto_recording enforce_login
|
|
10
10
|
enforce_login_domains alternative_hosts close_registration
|
|
11
|
-
show_share_button allow_multiple_devices].freeze
|
|
11
|
+
show_share_button allow_multiple_devices registrants_confirmation_email].freeze
|
|
12
12
|
def webinar_list(*args)
|
|
13
13
|
params = Zoom::Params.new(Utils.extract_options!(args))
|
|
14
14
|
params.require(:host_id).permit(:page_size, :page_number)
|
data/zoom_rb.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zoom_rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Boe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-11-
|
|
11
|
+
date: 2018-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|