panda_pal 5.4.0.beta8 → 5.4.0.beta9
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/lib/panda_pal.rb +3 -2
- data/lib/panda_pal/helpers.rb +1 -0
- data/lib/panda_pal/{ability_mixin.rb → helpers/ability_mixin.rb} +0 -0
- data/lib/panda_pal/jobs.rb +3 -0
- data/lib/panda_pal/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83ce940ea822b2d77eaeb63a8d6ba7e5ef213151c881a1b1fa872527adac42fd
|
4
|
+
data.tar.gz: cc4439a2431281e657deb7c61eaedc9dd0b647593657c8c9e112774cd4b9897f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ae381028c6bbac74c6084dc3aa914e50da57c6126bf394f7150e5e98744c8ec5d025abe3111e18a97f076e31fd2b63f1dec5d2496d1cc3032b6e0a8351d1f6a
|
7
|
+
data.tar.gz: cda153e9bedb6253d5ab5375657989567ae4cf5e542838d16516a64b1c20cfc2058895504aad10e0e56dfb6a7330c43a467a71be78f192f0c4a221d16ab26f9c
|
data/lib/panda_pal.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
require "panda_pal/engine"
|
2
2
|
require 'panda_pal/plugins'
|
3
3
|
require 'panda_pal/helpers'
|
4
|
+
require 'panda_pal/jobs'
|
4
5
|
require 'oauth/request_proxy/rack_request'
|
5
6
|
require 'oauth/request_proxy/action_dispatch_request'
|
6
7
|
|
@@ -74,7 +75,7 @@ module PandaPal
|
|
74
75
|
def self.register_extension(type, modul)
|
75
76
|
type = normalize_ext_type(type)
|
76
77
|
@@extensions[type] ||= []
|
77
|
-
@@extensions[type] << modul
|
78
|
+
@@extensions[type] << modul.to_s
|
78
79
|
end
|
79
80
|
|
80
81
|
def self.extensions_for(type)
|
@@ -83,7 +84,7 @@ module PandaPal
|
|
83
84
|
|
84
85
|
def self.resolved_extensions_for(type)
|
85
86
|
extensions_for(type).map do |ext|
|
86
|
-
ext.
|
87
|
+
ext.safe_constantize
|
87
88
|
end.compact
|
88
89
|
end
|
89
90
|
|
data/lib/panda_pal/helpers.rb
CHANGED
File without changes
|
data/lib/panda_pal/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: panda_pal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.4.0.
|
4
|
+
version: 5.4.0.beta9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Instructure ProServe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-04-
|
11
|
+
date: 2021-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -244,13 +244,14 @@ files:
|
|
244
244
|
- db/migrate/20171205183457_encrypt_organization_settings.rb
|
245
245
|
- db/migrate/20171205194657_remove_old_organization_settings.rb
|
246
246
|
- lib/panda_pal.rb
|
247
|
-
- lib/panda_pal/ability_mixin.rb
|
248
247
|
- lib/panda_pal/engine.rb
|
249
248
|
- lib/panda_pal/helpers.rb
|
249
|
+
- lib/panda_pal/helpers/ability_mixin.rb
|
250
250
|
- lib/panda_pal/helpers/controller_helper.rb
|
251
251
|
- lib/panda_pal/helpers/route_helper.rb
|
252
252
|
- lib/panda_pal/helpers/secure_headers.rb
|
253
253
|
- lib/panda_pal/helpers/session_replacement.rb
|
254
|
+
- lib/panda_pal/jobs.rb
|
254
255
|
- lib/panda_pal/jobs/grade_passback_job.rb
|
255
256
|
- lib/panda_pal/plugins.rb
|
256
257
|
- lib/panda_pal/version.rb
|