Ensure create cache dir.
This commit is contained in:
parent
c46f88e84f
commit
78eb9a7e7e
|
@ -1,3 +1,8 @@
|
||||||
|
0.2.1
|
||||||
|
-----
|
||||||
|
|
||||||
|
- Fix issue when cache dir not exist.
|
||||||
|
|
||||||
0.2.0
|
0.2.0
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
require 'fileutils'
|
||||||
|
|
||||||
module RuCaptcha
|
module RuCaptcha
|
||||||
# File Cache
|
# File Cache
|
||||||
module Cache
|
module Cache
|
||||||
|
@ -31,6 +33,9 @@ module RuCaptcha
|
||||||
return @cache if defined?(@cache)
|
return @cache if defined?(@cache)
|
||||||
|
|
||||||
cache_path = Rails.root.join('tmp', 'cache', 'rucaptcha')
|
cache_path = Rails.root.join('tmp', 'cache', 'rucaptcha')
|
||||||
|
if !File.exists? cache_path
|
||||||
|
FileUtils.mkdir_p(cache_path)
|
||||||
|
end
|
||||||
@cache = ActiveSupport::Cache::FileStore.new(cache_path)
|
@cache = ActiveSupport::Cache::FileStore.new(cache_path)
|
||||||
@cache.clear
|
@cache.clear
|
||||||
@cache
|
@cache
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module RuCaptcha
|
module RuCaptcha
|
||||||
VERSION = '0.2.0'
|
VERSION = '0.2.1'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue