easy_captcha 0.2.0 → 0.2.1

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 CHANGED
@@ -20,8 +20,8 @@ You can write this in "config/initializers/easy_captcha.rb", if you want to cust
20
20
 
21
21
  # Cache
22
22
  # config.cache = true
23
- # Cache temp dir
24
- # config.temp_dir = Rails.root + 'tmp' + 'captchas'
23
+ # Cache temp dir from Rails.root
24
+ # config.temp_dir = 'tmp/captcha'
25
25
  # Cache size
26
26
  # config.cache_size = 500
27
27
  # Cache expire
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
data/easy_captcha.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{easy_captcha}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Marco Scholl"]
@@ -11,8 +11,8 @@ module EasyCaptcha
11
11
  # generate captcha image and return it as blob
12
12
  def generate_captcha
13
13
  if EasyCaptcha.cache
14
- FileUtils.mkdir_p(EasyCaptcha.cache_temp_dir)
15
- files = Dir.glob(EasyCaptcha.cache_temp_dir + "*")
14
+ FileUtils.mkdir_p(Rails.root + EasyCaptcha.cache_temp_dir)
15
+ files = Dir.glob(Rails.root + EasyCaptcha.cache_temp_dir + "*")
16
16
  unless files.size < EasyCaptcha.cache_size
17
17
  file = File.open(files.at(Kernel.rand(files.size)))
18
18
 
@@ -23,7 +23,7 @@ module EasyCaptcha
23
23
  end
24
24
  end
25
25
  generated_code = generate_captcha_code
26
- Captcha.new(generated_code, EasyCaptcha.cache_temp_dir + "#{generated_code}").image
26
+ Captcha.new(generated_code, Rails.root + EasyCaptcha.cache_temp_dir + "#{generated_code}").image
27
27
  else
28
28
  Captcha.new(generate_captcha_code).image
29
29
  end
data/lib/easy_captcha.rb CHANGED
@@ -17,7 +17,7 @@ module EasyCaptcha
17
17
 
18
18
  # Cache temp
19
19
  mattr_accessor :cache_temp_dir
20
- @@cache_temp_dir = Rails.root + 'tmp' + 'captchas'
20
+ @@cache_temp_dir = 'tmp/captcha'
21
21
 
22
22
  # Cache size
23
23
  mattr_accessor :cache_size
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 0
9
- version: 0.2.0
8
+ - 1
9
+ version: 0.2.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Marco Scholl