canvas_webex 0.17 → 0.18.2

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
- SHA1:
3
- metadata.gz: c09e70142280c77aae8cf3da3eb45d42283b9a65
4
- data.tar.gz: 46b743b155c62dac4fe5f3c17370bbff7879d5e3
2
+ SHA256:
3
+ metadata.gz: d3c2e1d1d64e26e41bac7c3d3eef261e0d3749d4daa6d392f91fc591ca4e528e
4
+ data.tar.gz: 2bbee5fc4c7ef09b956be33a2d4b44580e4fd2e33047c5b3306d58f4e7ad980b
5
5
  SHA512:
6
- metadata.gz: f360f2bc358a7d1de2ddb609d7f5e278a33b82e014b97fb9b01432254d73524fb886a9c92fdd905ef7b23cec663c7eb39d00788d1b87b04f07d692482041060c
7
- data.tar.gz: 2f61a40c5cd4c801b73418425aa81920655dfe648bbeee654965fd7386afa50a4c76743d95b477e4e1daff21fc68375e0183fd6c49dbe4c402505944963c985c
6
+ metadata.gz: f774deea61aad42695b7112dfb30d652c7cb1c433f364eaf124df0ed8b492a7ea17c08834329a039d11002b4b1dc981fb66c3d2341829d602cda981f506b0990
7
+ data.tar.gz: f12c598e9c1049b9650a3a58013ce9d3c0465fadde470910792b973fb932975f46b3fb0c1d5132b359d9b0b6b9624da9f383432db1c5f567b608cf1fff3c92f9
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ #
4
+ # Copyright (C) 2021 - present Instructure, Inc.
5
+ #
6
+ # This file is part of Canvas.
7
+ #
8
+ # Canvas is free software: you can redistribute it and/or modify it under
9
+ # the terms of the GNU Affero General Public License as published by the Free
10
+ # Software Foundation, version 3 of the License.
11
+ #
12
+ # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
13
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
+ # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
15
+ # details.
16
+ #
17
+ # You should have received a copy of the GNU Affero General Public License along
18
+ # with this program. If not, see <http://www.gnu.org/licenses/>.
19
+
20
+ # it's standard practice to ignore parts of the project
21
+ # that intentionally don't follow the zeitwerk pattern
22
+ # because they do something like monkeypatch a constant
23
+ # defined elsewhere https://github.com/fxn/zeitwerk#use-case-files-that-do-not-follow-the-conventions.
24
+ #
25
+ # these extensions are required explicitly by the gem engine when it's ready to patch,
26
+ # so that they can modify constants defined in a third part gem,
27
+ # and so don't need to be autoloaded
28
+ Rails.autoloaders.main.ignore("#{__dir__}/../../lib/canvas_webex/version.rb")
@@ -15,6 +15,7 @@
15
15
  # You should have received a copy of the GNU Affero General Public License along
16
16
  # with this program. If not, see <http://www.gnu.org/licenses/>.
17
17
  #
18
+ require 'canvas_webex/version'
18
19
 
19
20
  module Canvas
20
21
  module Plugins
@@ -17,6 +17,6 @@
17
17
  #
18
18
 
19
19
  module CanvasWebex
20
- VERSION = "0.17"
20
+ VERSION = "0.18.2"
21
21
  end
22
22
 
data/lib/canvas_webex.rb CHANGED
@@ -20,7 +20,7 @@ module CanvasWebex
20
20
  class ConnectionError < StandardError; end
21
21
 
22
22
  class Engine < Rails::Engine
23
- config.autoload_paths << File.expand_path(File.join(__FILE__, ".."))
23
+ config.paths['lib'].eager_load!
24
24
 
25
25
  config.to_prepare do
26
26
  Canvas::Plugins::CiscoWebex.new
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: canvas_webex
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.17'
4
+ version: 0.18.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Mills
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-18 00:00:00.000000000 Z
11
+ date: 2022-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -111,6 +111,7 @@ files:
111
111
  - app/models/cisco_webex_conference.rb
112
112
  - app/views/plugins/_webex_settings.html.erb
113
113
  - canvas_webex.gemspec
114
+ - config/initializers/zeitwerk.rb
114
115
  - lib/canvas/plugins/cisco_webex.rb
115
116
  - lib/canvas/plugins/validators/cisco_webex_validator.rb
116
117
  - lib/canvas_webex.rb
@@ -136,7 +137,7 @@ files:
136
137
  homepage: http://instructure.com
137
138
  licenses: []
138
139
  metadata: {}
139
- post_install_message:
140
+ post_install_message:
140
141
  rdoc_options: []
141
142
  require_paths:
142
143
  - app
@@ -152,9 +153,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
153
  - !ruby/object:Gem::Version
153
154
  version: '0'
154
155
  requirements: []
155
- rubyforge_project:
156
- rubygems_version: 2.4.5.1
157
- signing_key:
156
+ rubygems_version: 3.1.4
157
+ signing_key:
158
158
  specification_version: 4
159
159
  summary: Cisco WebEx integration for Instructure Canvas (http://instructure.com).
160
160
  test_files:
@@ -172,4 +172,3 @@ test_files:
172
172
  - spec/lib/canvas_webex/webex_session_spec.rb
173
173
  - spec/models/cisco_webex_conference_spec.rb
174
174
  - spec/spec_helper.rb
175
- has_rdoc: