rucaptcha/spec/spec_helper.rb

24 lines
473 B
Ruby
Raw Normal View History

2015-10-26 13:55:46 +00:00
require 'rubygems'
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'rucaptcha'
2015-10-29 10:22:27 +00:00
tmp_path = File.join(File.dirname(__FILE__), '../tmp')
2016-05-23 07:11:04 +00:00
Dir.mkdir(tmp_path) unless File.exist?(tmp_path)
2015-10-29 10:22:27 +00:00
module Rails
class << self
def root
Pathname.new(File.join(File.dirname(__FILE__), '..'))
end
end
end
2015-10-26 13:55:46 +00:00
RuCaptcha.configure do
2016-05-23 07:11:04 +00:00
self.len = 2
self.font_size = 48
2016-05-23 07:11:04 +00:00
self.implode = 0.111
2015-10-26 13:55:46 +00:00
end