29 lines
694 B
Ruby
29 lines
694 B
Ruby
require 'active_support/core_ext'
|
|
require_relative 'rucaptcha/version'
|
|
require_relative 'rucaptcha/configuration'
|
|
require_relative 'rucaptcha/controller_helpers'
|
|
require_relative 'rucaptcha/view_helpers'
|
|
require_relative 'rucaptcha/engine'
|
|
|
|
module RuCaptcha
|
|
class << self
|
|
def config
|
|
return @config if defined?(@config)
|
|
@config = Configuration.new
|
|
@config.len = 4
|
|
@config.width = 180
|
|
@config.height = 48
|
|
@config.font_size = 38
|
|
@config
|
|
end
|
|
|
|
def configure(&block)
|
|
config.instance_exec(&block)
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
ActionController::Base.send :include, RuCaptcha::ControllerHelpers
|
|
ActionView::Base.send :include, RuCaptcha::ViewHelpers
|