We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fdab0 commit 0112405Copy full SHA for 0112405
1 file changed
lib/rack/attack.rb
@@ -2,6 +2,8 @@
2
3
require 'rack'
4
require 'forwardable'
5
+require 'rack/attack/cache'
6
+require 'rack/attack/configuration'
7
require 'rack/attack/path_normalizer'
8
require 'rack/attack/request'
9
require "ipaddr"
@@ -14,8 +16,6 @@ class Error < StandardError; end
14
16
class MisconfiguredStoreError < Error; end
15
17
class MissingStoreError < Error; end
18
- autoload :Configuration, 'rack/attack/configuration'
- autoload :Cache, 'rack/attack/cache'
19
autoload :Check, 'rack/attack/check'
20
autoload :Throttle, 'rack/attack/throttle'
21
autoload :Safelist, 'rack/attack/safelist'
0 commit comments