module YandexCaptcha class Engine < Rails::Engine isolate_namespace YandexCaptcha if Rails.version >= '3.1' initializer :assets do |app| app.config.assets.precompile += %w( yandex_captcha/captcha.js yandex_captcha/captcha.css yandex_captcha/loading.gif ) end end initializer "setup config" do ActionView::Base.send(:include, ::YandexCaptcha::Helpers::Rails) ActionController::Base.send(:include, ::YandexCaptcha::Helpers::Base) end end end