module BootstrapsBootstraps class Railtie < Rails::Railtie initializer "bootstraps_bootstraps.configure_rails_initialization" do |application| # Prevent Rails from wrapping form elements with errors in
# boxes. Bootstrap has a bit of a different paradigm. # Credit where due: http://stackoverflow.com/questions/5267998/rails-3-field-with-errors-wrapper-changes-the-page-appearance-how-to-avoid-t application.config.action_view.field_error_proc = Proc.new { |html_tag, instance| html_tag } ActiveSupport.on_load :action_view do include BootstrapsBootstraps::BootstrapFormHelper end end end end