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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f52b8360f7ce34fd388a13bb54935a02f659eb85f283d99f2afcfadb8c2ad2fa
4
- data.tar.gz: d22ffcf503be32f35771341fc2183bde298a1f9802172efba7ba5d1813ec7725
3
+ metadata.gz: 3209a4c8434438ba5a3775cbb6990ff9d49ea1e27c9b3865b7ec54342150ca43
4
+ data.tar.gz: fabd83efba0a301af3f2305cb9115f2281a401998b63bd4b39f448c194e635b2
5
5
  SHA512:
6
- metadata.gz: 947870a0adcbde03d22ed11db07c853f03d7236376d04b9f4a138e7f3033c65470ea68c9216f0689361af969560c575675940a6d15e7a59c1d6f570318060ae7
7
- data.tar.gz: 200a1712dbb4449d892fa8821efecf6208fc72f931205fd9ff48b6f955cccfbcc6d62cf365a41cd5042927705ce36ee7b2e78216f271632225ac14dd3b62d68a
6
+ metadata.gz: e319cdea0e2c148d579c17f0f5ad1f3eb739dea68a0e7961270a96ec0a5cae41517cb77f68450283584e9d402802097c20f1eeeec7f8130a77597db8126d79b6
7
+ data.tar.gz: 4e265b8b6c8b039e4ad6f41c277f6b96efc6ef4704126d291a45274b6567d32cc83bc939b6722d4a64d95c7fdfe5f3220f797be10d9200a65ceb88ea7569935b
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module Bearcat
2
- VERSION = '1.6.12' unless defined?(Bearcat::VERSION)
2
+ VERSION = '1.6.13' unless defined?(Bearcat::VERSION)
3
3
  end
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.12
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-05-18 00:00:00.000000000 Z
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)