bearcat 1.6.12 → 1.6.13
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/bearcat/client/file_helper.rb +0 -0
- data/lib/bearcat/client/outcome_imports.rb +0 -0
- data/lib/bearcat/client/sis_imports.rb +0 -0
- data/lib/bearcat/version.rb +1 -1
- data/spec/bearcat/api_array_spec.rb +0 -0
- metadata +2 -3
- data/lib/bearcat/rate_limiting/functions.lua +0 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3209a4c8434438ba5a3775cbb6990ff9d49ea1e27c9b3865b7ec54342150ca43
|
|
4
|
+
data.tar.gz: fabd83efba0a301af3f2305cb9115f2281a401998b63bd4b39f448c194e635b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e319cdea0e2c148d579c17f0f5ad1f3eb739dea68a0e7961270a96ec0a5cae41517cb77f68450283584e9d402802097c20f1eeeec7f8130a77597db8126d79b6
|
|
7
|
+
data.tar.gz: 4e265b8b6c8b039e4ad6f41c277f6b96efc6ef4704126d291a45274b6567d32cc83bc939b6722d4a64d95c7fdfe5f3220f797be10d9200a65ceb88ea7569935b
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/bearcat/version.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bearcat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Instructure CustomDev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-08-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -237,7 +237,6 @@ files:
|
|
|
237
237
|
- lib/bearcat/client_module.rb
|
|
238
238
|
- lib/bearcat/misc_exceptions/conflict.rb
|
|
239
239
|
- lib/bearcat/rate_limiting.rb
|
|
240
|
-
- lib/bearcat/rate_limiting/functions.lua
|
|
241
240
|
- lib/bearcat/rate_limiting/increment_bucket.lua
|
|
242
241
|
- lib/bearcat/rate_limiting/redis_script.rb
|
|
243
242
|
- lib/bearcat/spec_helpers.rb
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
#!lua name=bearcat_rate_limiting
|
|
2
|
-
|
|
3
|
-
local function checkin_time(keys, args)
|
|
4
|
-
local return_time = args[1]
|
|
5
|
-
local true_remaining = args[2]
|
|
6
|
-
|
|
7
|
-
local hash = keys[1]
|
|
8
|
-
return redis.call('HGET', hash, '_last_modified_')
|
|
9
|
-
end
|
|
10
|
-
|
|
11
|
-
redis.register_function('my_hset', my_hset)
|