easy_captcha 0.2.2 → 0.2.3
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.
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/easy_captcha.gemspec +1 -1
- data/lib/easy_captcha/controller_helpers.rb +1 -0
- metadata +2 -2
data/README.rdoc
CHANGED
|
@@ -21,7 +21,7 @@ You can write this in "config/initializers/easy_captcha.rb", if you want to cust
|
|
|
21
21
|
# Cache
|
|
22
22
|
# config.cache = true
|
|
23
23
|
# Cache temp dir from Rails.root
|
|
24
|
-
# config.
|
|
24
|
+
# config.cache_temp_dir = Rails.root + 'tmp' + 'captchas'
|
|
25
25
|
# Cache size
|
|
26
26
|
# config.cache_size = 500
|
|
27
27
|
# Cache expire
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.3
|
data/easy_captcha.gemspec
CHANGED
|
@@ -15,6 +15,7 @@ module EasyCaptcha
|
|
|
15
15
|
files = Dir.glob(EasyCaptcha.cache_temp_dir + "*")
|
|
16
16
|
unless files.size < EasyCaptcha.cache_size
|
|
17
17
|
file = File.open(files.at(Kernel.rand(files.size)))
|
|
18
|
+
session[:captcha] = File.basename(file.path)
|
|
18
19
|
|
|
19
20
|
if file.mtime < EasyCaptcha.cache_expire.ago
|
|
20
21
|
File.unlink(file.path)
|