canvas_connect 0.3.8 → 0.3.9
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 +5 -13
- data/lib/canvas_connect.rb +5 -17
- data/lib/canvas_connect/version.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
data.tar.gz: !binary |-
|
|
6
|
-
YTNjZjMzNTQyODhkNmU0NjY0ODhkYmYxMDZiMGZhMzg2MTQ0M2U4YQ==
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 1120f3be5f8f80438bb418c008f3d7707a16d091
|
|
4
|
+
data.tar.gz: bb86da5e5860f63859c1115a43d54cca1de339f7
|
|
7
5
|
SHA512:
|
|
8
|
-
metadata.gz:
|
|
9
|
-
|
|
10
|
-
ZTI2OWIyMTBiNTA2NTI1M2JiNGJlNTA4MjZhNzBmZDM3NjVkODY1YmY0ZWYw
|
|
11
|
-
YTNjZjg1ZTM4YTQzMzhmZDQzNDlkODkzZDhmNmVkZDUyZDcyNmU=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
Y2NjZDA4NGEyYmZlOWNmN2QwODBhY2ZmZjRiZWI4NWUxNDRjMmViMjI2ZWE4
|
|
14
|
-
ZmFlOTQ0YjNmYjViMmUzMjM1MzM5ZDA3YmFiOWViODk4ODY3ODUyYTdhZWY3
|
|
15
|
-
YjRiNWNkNGE4MmMyNWM4NjkwNDZkMTZmMDY0YTc1Nzg4NGYwNjA=
|
|
6
|
+
metadata.gz: 53b1489c05247eb29ae8137cd98cc21cedc1c007f4fb25060db7df02fad81ce576c8acef7cf8ae8fcc64d0ecbdb9ef418f61b1dc41a7080056388190aa79784c
|
|
7
|
+
data.tar.gz: 158f285a3a0e4eac65179ca72632787bbae0882e3ebfa9b1ad28d0faca710621ddae82037798811f2797ff69ceb2bd12230fa6de48a3a71ec736151e61bb2f25
|
data/lib/canvas_connect.rb
CHANGED
|
@@ -17,32 +17,20 @@
|
|
|
17
17
|
#
|
|
18
18
|
|
|
19
19
|
require "adobe_connect"
|
|
20
|
-
require "canvas_connect/version"
|
|
21
20
|
|
|
22
21
|
module CanvasConnect
|
|
23
22
|
class ConnectionError < StandardError; end
|
|
24
23
|
class MeetingFolderError < StandardError; end
|
|
25
24
|
class MeetingNotFound < StandardError; end
|
|
26
25
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
unless ApplicationController.view_paths.include?(view_path)
|
|
30
|
-
ApplicationController.view_paths.unshift(view_path)
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
ActiveSupport::Dependencies.autoload_paths << File.expand_path('../app/models', File.dirname(__FILE__))
|
|
34
|
-
|
|
35
|
-
require_dependency File.expand_path('../app/models/adobe_connect_conference.rb', File.dirname(__FILE__))
|
|
36
|
-
require_dependency "canvas/plugins/validators/adobe_connect_validator"
|
|
37
|
-
require_dependency "canvas/plugins/adobe_connect"
|
|
38
|
-
require_dependency "canvas_connect/meeting_archive"
|
|
26
|
+
class Engine < Rails::Engine
|
|
27
|
+
config.autoload_paths << File.expand_path(File.join(__FILE__, ".."))
|
|
39
28
|
|
|
40
|
-
|
|
29
|
+
config.to_prepare do
|
|
30
|
+
Canvas::Plugins::AdobeConnect.new
|
|
31
|
+
end
|
|
41
32
|
end
|
|
42
33
|
|
|
43
|
-
class Railtie < Rails::Railtie; end
|
|
44
|
-
Railtie.config.to_prepare(&configure_method)
|
|
45
|
-
|
|
46
34
|
# Public: Find the plugin configuration.
|
|
47
35
|
#
|
|
48
36
|
# Returns a settings hash.
|
metadata
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: canvas_connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zach Pendleton
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-12-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 0.9.6
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 0.9.6
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: adobe_connect
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - ~>
|
|
31
|
+
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: 1.0.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - ~>
|
|
38
|
+
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: 1.0.0
|
|
41
41
|
description: Canvas Connect is an Adobe Connect plugin for the Instructure Canvas
|
|
@@ -47,7 +47,7 @@ executables: []
|
|
|
47
47
|
extensions: []
|
|
48
48
|
extra_rdoc_files: []
|
|
49
49
|
files:
|
|
50
|
-
- .gitignore
|
|
50
|
+
- ".gitignore"
|
|
51
51
|
- Gemfile
|
|
52
52
|
- LICENSE.txt
|
|
53
53
|
- README.md
|
|
@@ -71,17 +71,17 @@ require_paths:
|
|
|
71
71
|
- lib
|
|
72
72
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
|
-
- -
|
|
74
|
+
- - ">="
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
78
|
requirements:
|
|
79
|
-
- -
|
|
79
|
+
- - ">="
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
81
|
version: '0'
|
|
82
82
|
requirements: []
|
|
83
83
|
rubyforge_project:
|
|
84
|
-
rubygems_version: 2.4.5
|
|
84
|
+
rubygems_version: 2.4.5.1
|
|
85
85
|
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
87
|
summary: Adobe Connect integration for Instructure Canvas (http://instructure.com).
|