Sha256: 56c14ce75a93095eb29d4417710859c509707d6deccd4792f495144a15b694fe
Contents?: true
Size: 944 Bytes
Versions: 8
Compression:
Stored size: 944 Bytes
Contents
module SimpleCaptcha #:nodoc module ViewHelper #:nodoc def show_simple_captcha(options={}) key = simple_captcha_key(options[:object]) options[:field_value] = set_simple_captcha_data(key, options) defaults = { :image => simple_captcha_image(key, options), :label => options[:label] || I18n.t('simple_captcha.label'), :field => simple_captcha_field(options), :error_messages => options[:error_messages] } render :partial => 'simple_captcha/simple_captcha', :locals => { :simple_captcha_options => defaults } end end end SimpleCaptcha.setup do |sc| sc.image_size = "200x50" sc.length = 4 sc.charset = "1234567890" sc.add_image_style("enjoy_cms_style", ["-alpha set", "-fill '#ffffff'", "-background 'transparent'", "-size 200x50", "xc:transparent"]) sc.image_style = 'enjoy_cms_style' sc.tmp_path = "tmp/sc" end
Version data entries
8 entries across 8 versions & 1 rubygems