Use puts instead of Rails.logger.warn to output warning
This commit is contained in:
parent
21d1c0e787
commit
e58c051632
|
@ -1,4 +1,4 @@
|
||||||
1.1.3
|
1.1.4
|
||||||
-----
|
-----
|
||||||
|
|
||||||
- Fix #35 just give a warning message if not setup a right cache_store, only raise on :null_store.
|
- Fix #35 just give a warning message if not setup a right cache_store, only raise on :null_store.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
rucaptcha (1.1.3)
|
rucaptcha (1.1.4)
|
||||||
railties (>= 3.2)
|
railties (>= 3.2)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
|
|
|
@ -24,7 +24,7 @@ module RuCaptcha
|
||||||
if store_name == :null_store
|
if store_name == :null_store
|
||||||
raise msg
|
raise msg
|
||||||
else
|
else
|
||||||
Rails.logger.warn msg
|
puts msg
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module RuCaptcha
|
module RuCaptcha
|
||||||
VERSION = '1.1.3'
|
VERSION = '1.1.4'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue