public
Description: A plugin to make the process of creating a negative captcha in Rails much less painless
Homepage:
Clone URL: git://github.com/subwindow/negative-captcha.git
negative-captcha / init.rb
100644 5 lines (5 sloc) 0.207 kb
1
2
3
4
5
require 'negative_captcha'
if !ActionView::Base.instance_methods.include? 'negative_captcha'
  require 'negative_captcha_view_helpers'
  ActionView::Base.class_eval { include NegativeCaptchaViewHelpers }
end