├── .document ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Gemfile.devtools ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── VERSION ├── config ├── devtools.yml ├── flay.yml ├── flog.yml ├── mutant.yml ├── reek.yml ├── rubocop.yml └── yardstick.yml ├── formtastic-bootstrap.gemspec ├── lib ├── action_view │ └── helpers │ │ └── text_field_date_helper.rb ├── formtastic-bootstrap.rb └── formtastic-bootstrap │ ├── actions.rb │ ├── actions │ ├── base.rb │ ├── button_action.rb │ ├── input_action.rb │ └── link_action.rb │ ├── engine.rb │ ├── form_builder.rb │ ├── helpers.rb │ ├── helpers │ ├── actions_helper.rb │ ├── errors_helper.rb │ ├── fieldset_wrapper.rb │ └── inputs_helper.rb │ ├── inputs.rb │ ├── inputs │ ├── base.rb │ ├── base │ │ ├── choices.rb │ │ ├── collections.rb │ │ ├── datetime_pickerish.rb │ │ ├── errors.rb │ │ ├── hints.rb │ │ ├── html.rb │ │ ├── labelling.rb │ │ ├── numeric.rb │ │ ├── placeholder.rb │ │ ├── stringish.rb │ │ ├── timeish.rb │ │ └── wrapping.rb │ ├── boolean_input.rb │ ├── check_boxes_input.rb │ ├── color_input.rb │ ├── country_input.rb │ ├── date_input.rb │ ├── date_picker_input.rb │ ├── date_select_input.rb │ ├── datetime_input.rb │ ├── datetime_picker_input.rb │ ├── datetime_select_input.rb │ ├── email_input.rb │ ├── file_input.rb │ ├── hidden_input.rb │ ├── number_input.rb │ ├── password_input.rb │ ├── phone_input.rb │ ├── radio_input.rb │ ├── range_input.rb │ ├── search_input.rb │ ├── select_input.rb │ ├── string_input.rb │ ├── text_input.rb │ ├── time_input.rb │ ├── time_select_input.rb │ ├── time_zone_input.rb │ └── url_input.rb │ └── version.rb ├── spec ├── actions │ ├── button_action_spec.rb │ ├── input_action_spec.rb │ └── link_action_spec.rb ├── builder │ ├── action_spec.rb │ ├── input_spec.rb │ └── semantic_fields_for_spec.rb ├── helpers │ ├── actions_helper_spec.rb │ ├── inputs_helper_spec.rb │ └── semantic_errors_helper_spec.rb ├── inputs │ ├── base │ │ └── wrapping_spec.rb │ ├── boolean_input_spec.rb │ ├── check_boxes_input_spec.rb │ ├── color_input_spec.rb │ ├── date_picker_input_spec.rb │ ├── date_select_input_spec.rb │ ├── datetime_picker_input_spec.rb │ ├── datetime_select_input_spec.rb │ ├── deprecated_time_date_datetime_inputs_spec.rb │ ├── email_input_spec.rb │ ├── file_input_spec.rb │ ├── hidden_input_spec.rb │ ├── number_input_spec.rb │ ├── password_input_spec.rb │ ├── phone_input_spec.rb │ ├── radio_input_spec.rb │ ├── range_input_spec.rb │ ├── search_input_spec.rb │ ├── select_input_spec.rb │ ├── string_input_spec.rb │ ├── text_input_spec.rb │ ├── time_select_input_spec.rb │ ├── time_zone_input_spec.rb │ └── url_input_spec.rb ├── spec_helper.rb └── support │ ├── custom_macros.rb │ └── fb_custom_macros.rb └── vendor └── assets └── stylesheets └── formtastic-bootstrap.css /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/.rspec -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.devtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/Gemfile.devtools -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.1.1 2 | -------------------------------------------------------------------------------- /config/devtools.yml: -------------------------------------------------------------------------------- 1 | --- 2 | unit_test_timeout: 0.1 3 | fail_on_branch: 4 | - "master" 5 | -------------------------------------------------------------------------------- /config/flay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/config/flay.yml -------------------------------------------------------------------------------- /config/flog.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 0 3 | -------------------------------------------------------------------------------- /config/mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/config/mutant.yml -------------------------------------------------------------------------------- /config/reek.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/config/reek.yml -------------------------------------------------------------------------------- /config/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/config/rubocop.yml -------------------------------------------------------------------------------- /config/yardstick.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 100 3 | -------------------------------------------------------------------------------- /formtastic-bootstrap.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/formtastic-bootstrap.gemspec -------------------------------------------------------------------------------- /lib/action_view/helpers/text_field_date_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/action_view/helpers/text_field_date_helper.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/actions.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/actions/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/actions/base.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/actions/button_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/actions/button_action.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/actions/input_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/actions/input_action.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/actions/link_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/actions/link_action.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/engine.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/form_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/form_builder.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/helpers.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/helpers/actions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/helpers/actions_helper.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/helpers/errors_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/helpers/errors_helper.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/helpers/fieldset_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/helpers/fieldset_wrapper.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/helpers/inputs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/helpers/inputs_helper.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/choices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/choices.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/collections.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/datetime_pickerish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/datetime_pickerish.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/errors.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/hints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/hints.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/html.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/labelling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/labelling.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/numeric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/numeric.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/placeholder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/placeholder.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/stringish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/stringish.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/timeish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/timeish.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/base/wrapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/base/wrapping.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/boolean_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/boolean_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/check_boxes_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/check_boxes_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/color_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/color_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/country_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/country_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/date_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/date_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/date_picker_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/date_picker_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/date_select_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/date_select_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/datetime_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/datetime_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/datetime_picker_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/datetime_picker_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/datetime_select_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/datetime_select_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/email_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/email_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/file_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/file_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/hidden_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/hidden_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/number_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/number_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/password_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/password_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/phone_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/phone_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/radio_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/radio_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/range_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/range_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/search_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/search_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/select_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/select_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/string_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/string_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/text_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/text_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/time_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/time_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/time_select_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/time_select_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/time_zone_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/time_zone_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/inputs/url_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/lib/formtastic-bootstrap/inputs/url_input.rb -------------------------------------------------------------------------------- /lib/formtastic-bootstrap/version.rb: -------------------------------------------------------------------------------- 1 | module FormtasticBootstrap 2 | VERSION = "3.1.1" 3 | end 4 | -------------------------------------------------------------------------------- /spec/actions/button_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/actions/button_action_spec.rb -------------------------------------------------------------------------------- /spec/actions/input_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/actions/input_action_spec.rb -------------------------------------------------------------------------------- /spec/actions/link_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/actions/link_action_spec.rb -------------------------------------------------------------------------------- /spec/builder/action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/builder/action_spec.rb -------------------------------------------------------------------------------- /spec/builder/input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/builder/input_spec.rb -------------------------------------------------------------------------------- /spec/builder/semantic_fields_for_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/builder/semantic_fields_for_spec.rb -------------------------------------------------------------------------------- /spec/helpers/actions_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/helpers/actions_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/inputs_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/helpers/inputs_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/semantic_errors_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/helpers/semantic_errors_helper_spec.rb -------------------------------------------------------------------------------- /spec/inputs/base/wrapping_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/base/wrapping_spec.rb -------------------------------------------------------------------------------- /spec/inputs/boolean_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/boolean_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/check_boxes_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/check_boxes_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/color_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/color_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/date_picker_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/date_picker_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/date_select_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/date_select_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/datetime_picker_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/datetime_picker_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/datetime_select_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/datetime_select_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/deprecated_time_date_datetime_inputs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/deprecated_time_date_datetime_inputs_spec.rb -------------------------------------------------------------------------------- /spec/inputs/email_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/email_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/file_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/file_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/hidden_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/hidden_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/number_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/number_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/password_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/password_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/phone_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/phone_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/radio_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/radio_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/range_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/range_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/search_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/search_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/select_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/select_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/string_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/string_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/text_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/text_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/time_select_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/time_select_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/time_zone_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/time_zone_input_spec.rb -------------------------------------------------------------------------------- /spec/inputs/url_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/inputs/url_input_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/custom_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/support/custom_macros.rb -------------------------------------------------------------------------------- /spec/support/fb_custom_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/spec/support/fb_custom_macros.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/formtastic-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjbellantoni/formtastic-bootstrap/HEAD/vendor/assets/stylesheets/formtastic-bootstrap.css --------------------------------------------------------------------------------