formtastic/formtastic

View on GitHub
lib/formtastic/helpers.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module Formtastic
  module Helpers
    autoload :ActionHelper, 'formtastic/helpers/action_helper'
    autoload :ActionsHelper, 'formtastic/helpers/actions_helper'
    autoload :ErrorsHelper, 'formtastic/helpers/errors_helper'
    autoload :FieldsetWrapper, 'formtastic/helpers/fieldset_wrapper'
    autoload :FileColumnDetection, 'formtastic/helpers/file_column_detection'
    autoload :FormHelper, 'formtastic/helpers/form_helper'
    autoload :InputHelper, 'formtastic/helpers/input_helper'
    autoload :InputsHelper, 'formtastic/helpers/inputs_helper'
    autoload :Reflection, 'formtastic/helpers/reflection'
    autoload :Enum, 'formtastic/helpers/enum'
  end
end