Module: SimpleCaptcha

Defined in:
lib/simple_captcha/view.rb,
lib/simple_captcha.rb,
lib/simple_captcha/image.rb,
lib/simple_captcha/utils.rb,
lib/simple_captcha/railtie.rb,
lib/simple_captcha/controller.rb,
lib/simple_captcha/formtastic.rb,
lib/simple_captcha/form_builder.rb,
lib/simple_captcha/active_record.rb,
lib/simple_captcha/simple_captcha_data.rb

Overview

:nodoc

Defined Under Namespace

Modules: ControllerHelpers, FormBuilder, ImageHelpers, ModelHelpers, Utils, ViewHelper Classes: CustomFormBuilder, Railtie, SimpleCaptchaData

Constant Summary collapse

@@image_size =
"100x28"
@@length =
5
@@image_style =
'simply_blue'
@@distortion =
'low'
@@image_magick_path =
''

Class Method Summary collapse

Class Method Details

.add_image_style(name, params = []) ⇒ Object



42
43
44
# File 'lib/simple_captcha.rb', line 42

def self.add_image_style(name, params = [])
  SimpleCaptcha::ImageHelpers.image_styles.update(name.to_s => params)
end

.setup {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:

  • _self (SimpleCaptcha)

    the object that the method was called on



46
47
48
# File 'lib/simple_captcha.rb', line 46

def self.setup
  yield self
end