Fix module name error
This commit is contained in:
parent
b7074ed9fd
commit
d4d25c84f0
|
@ -40,7 +40,7 @@ module RuCaptcha
|
||||||
length = config.length
|
length = config.length
|
||||||
|
|
||||||
unless length.in?(3..7)
|
unless length.in?(3..7)
|
||||||
raise Rucaptcha::Errors::Configuration, 'length config error, value must in 3..7'
|
raise RuCaptcha::Errors::Configuration, 'length config error, value must in 3..7'
|
||||||
end
|
end
|
||||||
|
|
||||||
strikethrough = config.strikethrough ? 1 : 0
|
strikethrough = config.strikethrough ? 1 : 0
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module Rucaptcha
|
module RuCaptcha
|
||||||
module Errors
|
module Errors
|
||||||
class Configuration < StandardError; end
|
class Configuration < StandardError; end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue