ui_bibz 2.4.0 → 2.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +4 -0
- data/.github/workflows/ruby.yml +2 -2
- data/.overcommit.yml +5 -0
- data/.rubocop.yml +87 -0
- data/.rubocop_todo.yml +25 -0
- data/Gemfile +5 -3
- data/Gemfile.lock +99 -56
- data/README.md +1 -0
- data/Rakefile +8 -6
- data/app/assets/stylesheets/fix_addon.sass +0 -1
- data/config/initializers/simple_form_init.rb +3 -1
- data/config/initializers/will_paginate.rb +11 -6
- data/lib/generators/ui_bibz/install_generator.rb +6 -5
- data/lib/generators/ui_bibz/templates/ui_bibz_initializer.rb +1 -1
- data/lib/tasks/ui_bibz_tasks.rake +2 -0
- data/lib/ui_bibz.rb +91 -100
- data/lib/ui_bibz/concerns/models/searchable.rb +56 -61
- data/lib/ui_bibz/helpers/ui/core/boxes_helper.rb +9 -9
- data/lib/ui_bibz/helpers/ui/core/forms_helper.rb +26 -26
- data/lib/ui_bibz/helpers/ui/core/icons_helper.rb +6 -6
- data/lib/ui_bibz/helpers/ui/core/layouts_helper.rb +5 -5
- data/lib/ui_bibz/helpers/ui/core/lists_helper.rb +5 -4
- data/lib/ui_bibz/helpers/ui/core/navigations_helper.rb +9 -9
- data/lib/ui_bibz/helpers/ui/core/notifications_helper.rb +11 -11
- data/lib/ui_bibz/helpers/ui/core/windows_helper.rb +3 -3
- data/lib/ui_bibz/helpers/ui/core_helper.rb +2 -0
- data/lib/ui_bibz/helpers/ui/ux_helper.rb +12 -12
- data/lib/ui_bibz/helpers/utils_helper.rb +8 -11
- data/lib/ui_bibz/infos.rb +9 -7
- data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +40 -39
- data/lib/ui_bibz/inputs/ui_bibz_inputs/base_input.rb +6 -5
- data/lib/ui_bibz/inputs/ui_bibz_inputs/collection_input.rb +8 -6
- data/lib/ui_bibz/inputs/ui_bibz_inputs/string_input.rb +18 -18
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_auto_complete_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_box_switch_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_checkbox_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_choice_group_input.rb +6 -5
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_date_picker_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_dropdown_select_field_input.rb +3 -3
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_file_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_formula_field_input.rb +5 -4
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_markdown_editor_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_multi_column_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_multi_select_field_input.rb +3 -3
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_number_field_input.rb +4 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_radio_field_input.rb +7 -7
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_range_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_select_field_input.rb +4 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_switch_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_text_field_input.rb +9 -2
- data/lib/ui_bibz/rails/engine.rb +11 -15
- data/lib/ui_bibz/ui/base.rb +10 -6
- data/lib/ui_bibz/ui/core/boxes/card.rb +31 -32
- data/lib/ui_bibz/ui/core/boxes/card_accordion.rb +7 -8
- data/lib/ui_bibz/ui/core/boxes/card_column.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/card_deck.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/card_group.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_link.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_text.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/components/card_body.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/components/card_footer.rb +7 -8
- data/lib/ui_bibz/ui/core/boxes/components/card_header.rb +12 -13
- data/lib/ui_bibz/ui/core/boxes/components/card_image.rb +6 -7
- data/lib/ui_bibz/ui/core/boxes/components/card_list_group.rb +4 -5
- data/lib/ui_bibz/ui/core/boxes/components/card_tab_group.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/jumbotron.rb +5 -6
- data/lib/ui_bibz/ui/core/component.rb +22 -20
- data/lib/ui_bibz/ui/core/forms/buttons/button.rb +14 -15
- data/lib/ui_bibz/ui/core/forms/buttons/button_group.rb +14 -15
- data/lib/ui_bibz/ui/core/forms/buttons/button_link.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/buttons/button_refresh.rb +11 -11
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/box_switch_field.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +10 -11
- data/lib/ui_bibz/ui/core/forms/choices/choice_group.rb +8 -9
- data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/radio_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/choices/switch_field.rb +4 -5
- data/lib/ui_bibz/ui/core/forms/dates/date_picker_field.rb +22 -23
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_divider.rb +3 -5
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_header.rb +4 -5
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_link.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/dropdowns/dropdown.rb +21 -22
- data/lib/ui_bibz/ui/core/forms/dropdowns/split_dropdown.rb +8 -9
- data/lib/ui_bibz/ui/core/forms/files/file_field.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/numbers/formula_field.rb +10 -11
- data/lib/ui_bibz/ui/core/forms/numbers/number_field.rb +3 -4
- data/lib/ui_bibz/ui/core/forms/numbers/range_field.rb +3 -4
- data/lib/ui_bibz/ui/core/forms/selects/abstract_select.rb +9 -9
- data/lib/ui_bibz/ui/core/forms/selects/dropdown_select_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/selects/multi_column_field.rb +9 -10
- data/lib/ui_bibz/ui/core/forms/selects/multi_select_field.rb +13 -14
- data/lib/ui_bibz/ui/core/forms/selects/select_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_addon.rb +4 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_group.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_link.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_refresh.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_checkbox_field.rb +4 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_dropdown.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_radio_field.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_switch_field.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/surround_field.rb +24 -25
- data/lib/ui_bibz/ui/core/forms/textareas/markdown_editor_field.rb +4 -5
- data/lib/ui_bibz/ui/core/forms/texts/auto_complete_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/texts/text_field.rb +6 -6
- data/lib/ui_bibz/ui/core/icons/components/glyph_counter.rb +5 -6
- data/lib/ui_bibz/ui/core/icons/components/glyph_text.rb +5 -6
- data/lib/ui_bibz/ui/core/icons/glyph.rb +13 -14
- data/lib/ui_bibz/ui/core/icons/glyph_group.rb +16 -17
- data/lib/ui_bibz/ui/core/icons/star.rb +7 -9
- data/lib/ui_bibz/ui/core/layouts/col.rb +20 -21
- data/lib/ui_bibz/ui/core/layouts/container.rb +5 -6
- data/lib/ui_bibz/ui/core/layouts/row.rb +4 -5
- data/lib/ui_bibz/ui/core/lists/components/list.rb +19 -20
- data/lib/ui_bibz/ui/core/lists/components/list/list_body.rb +4 -5
- data/lib/ui_bibz/ui/core/lists/components/list/list_header.rb +5 -6
- data/lib/ui_bibz/ui/core/lists/list_group.rb +15 -16
- data/lib/ui_bibz/ui/core/navigations/breadcrumb.rb +5 -6
- data/lib/ui_bibz/ui/core/navigations/components/breadcrumb_link.rb +7 -8
- data/lib/ui_bibz/ui/core/navigations/components/nav_dropdown.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/components/nav_link.rb +12 -13
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb +7 -8
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_list.rb +4 -5
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_span.rb +8 -9
- data/lib/ui_bibz/ui/core/navigations/components/nav_text.rb +8 -9
- data/lib/ui_bibz/ui/core/navigations/components/navbar_brand.rb +5 -6
- data/lib/ui_bibz/ui/core/navigations/components/navbar_form.rb +8 -8
- data/lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/components/navbar_text.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/components/pagination_link.rb +5 -6
- data/lib/ui_bibz/ui/core/navigations/components/toolbar_form.rb +7 -7
- data/lib/ui_bibz/ui/core/navigations/link.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/nav.rb +20 -27
- data/lib/ui_bibz/ui/core/navigations/navbar.rb +23 -24
- data/lib/ui_bibz/ui/core/navigations/pagination.rb +9 -12
- data/lib/ui_bibz/ui/core/navigations/tab_group.rb +7 -8
- data/lib/ui_bibz/ui/core/navigations/toolbar.rb +14 -15
- data/lib/ui_bibz/ui/core/notifications/alert.rb +11 -12
- data/lib/ui_bibz/ui/core/notifications/badge.rb +7 -8
- data/lib/ui_bibz/ui/core/notifications/components/alert_body.rb +5 -6
- data/lib/ui_bibz/ui/core/notifications/components/alert_header.rb +8 -9
- data/lib/ui_bibz/ui/core/notifications/components/bar.rb +11 -12
- data/lib/ui_bibz/ui/core/notifications/components/toast_body.rb +5 -6
- data/lib/ui_bibz/ui/core/notifications/components/toast_header.rb +7 -8
- data/lib/ui_bibz/ui/core/notifications/progress_bar.rb +12 -13
- data/lib/ui_bibz/ui/core/notifications/spinner.rb +11 -12
- data/lib/ui_bibz/ui/core/notifications/toast.rb +9 -10
- data/lib/ui_bibz/ui/core/windows/components/modal_body.rb +4 -5
- data/lib/ui_bibz/ui/core/windows/components/modal_footer.rb +4 -5
- data/lib/ui_bibz/ui/core/windows/components/modal_header.rb +6 -7
- data/lib/ui_bibz/ui/core/windows/modal.rb +8 -9
- data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +13 -15
- data/lib/ui_bibz/ui/extensions/core/component/klass_extension.rb +9 -10
- data/lib/ui_bibz/ui/extensions/core/component/popover_extension.rb +22 -21
- data/lib/ui_bibz/ui/extensions/core/forms/connect_extension.rb +9 -9
- data/lib/ui_bibz/ui/extensions/core/forms/surround_extension.rb +8 -10
- data/lib/ui_bibz/ui/ux/containers/components/panel_body.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_column.rb +6 -7
- data/lib/ui_bibz/ui/ux/containers/components/panel_deck.rb +6 -7
- data/lib/ui_bibz/ui/ux/containers/components/panel_footer.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_group.rb +6 -7
- data/lib/ui_bibz/ui/ux/containers/components/panel_header.rb +12 -12
- data/lib/ui_bibz/ui/ux/containers/components/panel_tab_group.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_toolbar.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/panel.rb +21 -22
- data/lib/ui_bibz/ui/ux/tables/components/actions.rb +14 -16
- data/lib/ui_bibz/ui/ux/tables/components/as.rb +8 -9
- data/lib/ui_bibz/ui/ux/tables/components/column.rb +4 -4
- data/lib/ui_bibz/ui/ux/tables/components/columns.rb +4 -3
- data/lib/ui_bibz/ui/ux/tables/components/store.rb +5 -7
- data/lib/ui_bibz/ui/ux/tables/components/thead.rb +5 -6
- data/lib/ui_bibz/ui/ux/tables/extensions/actionable.rb +24 -23
- data/lib/ui_bibz/ui/ux/tables/extensions/paginable.rb +8 -10
- data/lib/ui_bibz/ui/ux/tables/extensions/searchable.rb +9 -9
- data/lib/ui_bibz/ui/ux/tables/extensions/sortable.rb +26 -26
- data/lib/ui_bibz/ui/ux/tables/table.rb +32 -39
- data/lib/ui_bibz/ui/ux/tables/table_card.rb +18 -26
- data/lib/ui_bibz/ui/ux/tables/table_pagination.rb +15 -18
- data/lib/ui_bibz/ui/ux/tables/table_pagination_per_page.rb +15 -18
- data/lib/ui_bibz/ui/ux/tables/table_search_field.rb +19 -23
- data/lib/ui_bibz/utils/glyph_changer.rb +13 -13
- data/lib/ui_bibz/utils/internationalization.rb +10 -7
- data/lib/ui_bibz/utils/screwdriver.rb +7 -5
- data/test/dummy/Rakefile +3 -1
- data/test/dummy/app/controllers/application_controller.rb +2 -0
- data/test/dummy/app/controllers/users_controller.rb +15 -14
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/application_record.rb +2 -0
- data/test/dummy/app/models/continent.rb +2 -0
- data/test/dummy/app/models/country.rb +2 -0
- data/test/dummy/app/models/user.rb +3 -0
- data/test/dummy/bin/bundle +3 -1
- data/test/dummy/bin/rails +3 -1
- data/test/dummy/bin/rake +2 -0
- data/test/dummy/bin/setup +10 -8
- data/test/dummy/config.ru +2 -0
- data/test/dummy/config/application.rb +5 -4
- data/test/dummy/config/boot.rb +4 -2
- data/test/dummy/config/environment.rb +3 -1
- data/test/dummy/config/environments/development.rb +2 -0
- data/test/dummy/config/environments/production.rb +2 -0
- data/test/dummy/config/environments/test.rb +2 -0
- data/test/dummy/config/initializers/assets.rb +2 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +2 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +2 -0
- data/test/dummy/config/initializers/inflections.rb +2 -0
- data/test/dummy/config/initializers/mime_types.rb +2 -0
- data/test/dummy/config/initializers/session_store.rb +2 -0
- data/test/dummy/config/initializers/simple_form_bootstrap.rb +3 -1
- data/test/dummy/config/initializers/ui_bibz.rb +1 -1
- data/test/dummy/config/initializers/wrap_parameters.rb +2 -0
- data/test/dummy/config/routes.rb +2 -0
- data/test/dummy/db/migrate/20150123191805_create_users.rb +2 -0
- data/test/dummy/db/migrate/20170309084406_continents.rb +2 -0
- data/test/dummy/db/migrate/20170309084453_countries.rb +2 -0
- data/test/dummy/db/schema.rb +22 -22
- data/test/dummy/test/models/user_test.rb +2 -0
- data/test/factories/user.rb +6 -4
- data/test/simple_form_test.rb +33 -39
- data/test/store_test.rb +10 -9
- data/test/support/factory_bot.rb +9 -5
- data/test/test_helper.rb +8 -8
- data/test/ui/core/boxes/card_test.rb +28 -26
- data/test/ui/core/boxes/jumbotron_test.rb +4 -3
- data/test/ui/core/component_test.rb +4 -4
- data/test/ui/core/forms/buttons/button_group_test.rb +8 -7
- data/test/ui/core/forms/buttons/button_link_test.rb +16 -14
- data/test/ui/core/forms/buttons/button_refresh_test.rb +5 -5
- data/test/ui/core/forms/buttons/button_test.rb +25 -23
- data/test/ui/core/forms/choices/box_switch_field_test.rb +62 -62
- data/test/ui/core/forms/choices/checkbox_field_test.rb +7 -6
- data/test/ui/core/forms/choices/choice_group_test.rb +6 -5
- data/test/ui/core/forms/choices/radio_field_test.rb +7 -6
- data/test/ui/core/forms/dates/date_picker_field_test.rb +12 -11
- data/test/ui/core/forms/dropdowns/dropdown_test.rb +12 -11
- data/test/ui/core/forms/files/text_field_test.rb +7 -6
- data/test/ui/core/forms/numbers/formula_field_test.rb +7 -6
- data/test/ui/core/forms/numbers/number_field_test.rb +12 -11
- data/test/ui/core/forms/numbers/range_field_test.rb +12 -11
- data/test/ui/core/forms/selects/dropdown_select_field_test.rb +61 -60
- data/test/ui/core/forms/selects/multi_column_field_test.rb +14 -13
- data/test/ui/core/forms/selects/multi_select_field_test.rb +19 -18
- data/test/ui/core/forms/selects/select_field_test.rb +13 -13
- data/test/ui/core/forms/surrounds/surround_field_test.rb +54 -54
- data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +7 -6
- data/test/ui/core/forms/texts/auto_complete_field_test.rb +8 -7
- data/test/ui/core/forms/texts/text_field_test.rb +17 -16
- data/test/ui/core/icons/glyph_group_test.rb +8 -8
- data/test/ui/core/icons/glyph_test.rb +4 -4
- data/test/ui/core/icons/star_test.rb +37 -36
- data/test/ui/core/layouts/col_test.rb +11 -10
- data/test/ui/core/layouts/container_test.rb +3 -2
- data/test/ui/core/layouts/row_test.rb +4 -3
- data/test/ui/core/lists/list_group_test.rb +7 -6
- data/test/ui/core/navigations/breadcrumb_test.rb +12 -14
- data/test/ui/core/navigations/link_test.rb +9 -8
- data/test/ui/core/navigations/nav_test.rb +22 -21
- data/test/ui/core/navigations/navbar_test.rb +11 -11
- data/test/ui/core/navigations/pagination_test.rb +14 -13
- data/test/ui/core/navigations/tab_group_test.rb +22 -21
- data/test/ui/core/navigations/toolbar_test.rb +4 -3
- data/test/ui/core/notifications/alert_test.rb +5 -4
- data/test/ui/core/notifications/badge_test.rb +5 -4
- data/test/ui/core/notifications/progress_bar_test.rb +13 -13
- data/test/ui/core/notifications/spinner_test.rb +9 -8
- data/test/ui/core/notifications/toast_test.rb +3 -2
- data/test/ui/core/windows/modal_test.rb +3 -2
- data/test/ui/ux/containers/panel_test.rb +7 -6
- data/test/ui/ux/tables/table_test.rb +33 -33
- data/test/ui_bibz_test.rb +3 -1
- data/ui_bibz.gemspec +32 -28
- data/vendor/assets/fonts/fa-brands-400.eot +0 -0
- data/vendor/assets/fonts/fa-brands-400.svg +2 -2
- data/vendor/assets/fonts/fa-brands-400.ttf +0 -0
- data/vendor/assets/fonts/fa-brands-400.woff +0 -0
- data/vendor/assets/fonts/fa-brands-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-regular-400.eot +0 -0
- data/vendor/assets/fonts/fa-regular-400.svg +2 -2
- data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-solid-900.eot +0 -0
- data/vendor/assets/fonts/fa-solid-900.svg +241 -3
- data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
- data/vendor/assets/javascripts/all.js +57 -7
- data/vendor/assets/javascripts/all.min.js +2 -2
- data/vendor/assets/stylesheets/all.min.css +2 -2
- data/vendor/assets/stylesheets/fontawesome/_icons.scss +31 -0
- data/vendor/assets/stylesheets/fontawesome/_variables.scss +34 -3
- data/vendor/assets/stylesheets/fontawesome/brands.scss +1 -1
- data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +1 -1
- data/vendor/assets/stylesheets/fontawesome/regular.scss +1 -1
- data/vendor/assets/stylesheets/fontawesome/solid.scss +1 -1
- data/vendor/assets/stylesheets/fontawesome/v4-shims.scss +1 -1
- metadata +74 -42
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90be47193c6fe31e861df6f434b48062f96bad9d4981b64f6e695e00ce491955
|
4
|
+
data.tar.gz: 02c8527033077d0f8b03fa6efaf20e8ac5173f7a15e0a0abc0952ff28a25c749
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed52c541829e4aa33f69bab53cf1dc08bb0c49ba6f7df35d45eff642a7ba20cd818ee2826619178124606394463e9b0d09813f3a9978cb63256284a57a9bcfbd
|
7
|
+
data.tar.gz: 711123fb31edd2710d5b7421d3a6b63a29572becd038eea09d6baced682654b2dea9252c3aae73489982fdfdeb1d9f4e36807ffe879fdcfcf52a1312f2b45b59
|
data/.github/FUNDING.yml
ADDED
data/.github/workflows/ruby.yml
CHANGED
@@ -12,10 +12,10 @@ jobs:
|
|
12
12
|
- name: Setup System
|
13
13
|
run: |
|
14
14
|
sudo apt-get install libsqlite3-dev
|
15
|
-
- name: Set up Ruby 2.
|
15
|
+
- name: Set up Ruby 2.7
|
16
16
|
uses: actions/setup-ruby@v1
|
17
17
|
with:
|
18
|
-
ruby-version: 2.
|
18
|
+
ruby-version: 2.7.x
|
19
19
|
- name: Build and test with Rake
|
20
20
|
run: |
|
21
21
|
gem install bundler
|
data/.overcommit.yml
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
2
|
+
|
3
|
+
Layout/LineLength:
|
4
|
+
Enabled: false
|
5
|
+
|
6
|
+
AllCops:
|
7
|
+
TargetRubyVersion: 2.7
|
8
|
+
|
9
|
+
Lint/UselessAssignment:
|
10
|
+
Enabled: true
|
11
|
+
Exclude:
|
12
|
+
- 'test/ui/ux/tables/table_test.rb'
|
13
|
+
|
14
|
+
Style/AsciiComments:
|
15
|
+
Enabled: true
|
16
|
+
Exclude:
|
17
|
+
- 'test/**/**/**/**/*'
|
18
|
+
|
19
|
+
Metrics/ClassLength:
|
20
|
+
Enabled: false
|
21
|
+
|
22
|
+
Style/FormatString:
|
23
|
+
Exclude:
|
24
|
+
- 'config/initializers/will_paginate.rb'
|
25
|
+
|
26
|
+
Style/StringLiterals:
|
27
|
+
Enabled: true
|
28
|
+
Exclude:
|
29
|
+
- 'test/**/**/**/**/*'
|
30
|
+
|
31
|
+
Style/ClassAndModuleChildren:
|
32
|
+
Enabled: false
|
33
|
+
|
34
|
+
Style/HashEachMethods:
|
35
|
+
Enabled: true
|
36
|
+
|
37
|
+
Style/HashTransformKeys:
|
38
|
+
Enabled: true
|
39
|
+
|
40
|
+
Style/HashTransformValues:
|
41
|
+
Enabled: true
|
42
|
+
|
43
|
+
Style/Documentation:
|
44
|
+
Enabled: false
|
45
|
+
|
46
|
+
Metrics/MethodLength:
|
47
|
+
Enabled: false
|
48
|
+
|
49
|
+
Metrics/BlockLength:
|
50
|
+
Enabled: false
|
51
|
+
|
52
|
+
Metrics/ModuleLength:
|
53
|
+
Enabled: false
|
54
|
+
|
55
|
+
# SupportedStyles: annotated, template, unannotated
|
56
|
+
Style/FormatStringToken:
|
57
|
+
EnforcedStyle: unannotated
|
58
|
+
|
59
|
+
Layout/SpaceAroundMethodCallOperator:
|
60
|
+
Enabled: true
|
61
|
+
|
62
|
+
Lint/RaiseException:
|
63
|
+
Enabled: true
|
64
|
+
|
65
|
+
Lint/StructNewOverride:
|
66
|
+
Enabled: true
|
67
|
+
|
68
|
+
Style/ExponentialNotation:
|
69
|
+
Enabled: true
|
70
|
+
|
71
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
72
|
+
Enabled: true
|
73
|
+
|
74
|
+
Lint/DeprecatedOpenSSLConstant:
|
75
|
+
Enabled: true
|
76
|
+
|
77
|
+
Lint/MixedRegexpCaptureTypes:
|
78
|
+
Enabled: true
|
79
|
+
|
80
|
+
Style/RedundantRegexpCharacterClass:
|
81
|
+
Enabled: true
|
82
|
+
|
83
|
+
Style/RedundantRegexpEscape:
|
84
|
+
Enabled: true
|
85
|
+
|
86
|
+
Style/SlicingWithRange:
|
87
|
+
Enabled: true
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2020-03-06 22:08:50 +1100 using RuboCop version 0.80.1.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 8
|
10
|
+
# Cop supports --auto-correct.
|
11
|
+
# Configuration parameters: EnforcedStyleAlignWith, AutoCorrect, Severity.
|
12
|
+
# SupportedStylesAlignWith: keyword, variable, start_of_line
|
13
|
+
|
14
|
+
|
15
|
+
# Offense count: 47
|
16
|
+
Metrics/AbcSize:
|
17
|
+
Max: 48
|
18
|
+
|
19
|
+
# Offense count: 6
|
20
|
+
Metrics/CyclomaticComplexity:
|
21
|
+
Max: 11
|
22
|
+
|
23
|
+
# Offense count: 5
|
24
|
+
Metrics/PerceivedComplexity:
|
25
|
+
Max: 11
|
data/Gemfile
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
source 'https://rubygems.org'
|
2
4
|
|
3
5
|
# Declare your gem's dependencies in ui_bibz.gemspec.
|
@@ -11,7 +13,7 @@ gemspec
|
|
11
13
|
# your gem to rubygems.org.
|
12
14
|
|
13
15
|
# To use a debugger
|
14
|
-
gem '
|
15
|
-
gem '
|
16
|
-
gem 'awesome_print', group: [:test, :development]
|
16
|
+
gem 'awesome_print', group: %i[test development]
|
17
|
+
gem 'byebug', group: %i[development test]
|
17
18
|
gem 'jquery-rails', '>= 3.1.0'
|
19
|
+
# gem 'simple_form', group: %i[test development]
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ui_bibz (2.
|
4
|
+
ui_bibz (2.5.5)
|
5
5
|
bootstrap (= 4.4.1)
|
6
6
|
haml
|
7
7
|
haml-rails
|
@@ -16,49 +16,63 @@ PATH
|
|
16
16
|
GEM
|
17
17
|
remote: https://rubygems.org/
|
18
18
|
specs:
|
19
|
-
actioncable (
|
20
|
-
actionpack (=
|
19
|
+
actioncable (6.0.3.1)
|
20
|
+
actionpack (= 6.0.3.1)
|
21
21
|
nio4r (~> 2.0)
|
22
22
|
websocket-driver (>= 0.6.1)
|
23
|
-
|
24
|
-
actionpack (=
|
25
|
-
|
26
|
-
|
23
|
+
actionmailbox (6.0.3.1)
|
24
|
+
actionpack (= 6.0.3.1)
|
25
|
+
activejob (= 6.0.3.1)
|
26
|
+
activerecord (= 6.0.3.1)
|
27
|
+
activestorage (= 6.0.3.1)
|
28
|
+
activesupport (= 6.0.3.1)
|
29
|
+
mail (>= 2.7.1)
|
30
|
+
actionmailer (6.0.3.1)
|
31
|
+
actionpack (= 6.0.3.1)
|
32
|
+
actionview (= 6.0.3.1)
|
33
|
+
activejob (= 6.0.3.1)
|
27
34
|
mail (~> 2.5, >= 2.5.4)
|
28
35
|
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (
|
30
|
-
actionview (=
|
31
|
-
activesupport (=
|
36
|
+
actionpack (6.0.3.1)
|
37
|
+
actionview (= 6.0.3.1)
|
38
|
+
activesupport (= 6.0.3.1)
|
32
39
|
rack (~> 2.0, >= 2.0.8)
|
33
40
|
rack-test (>= 0.6.3)
|
34
41
|
rails-dom-testing (~> 2.0)
|
35
|
-
rails-html-sanitizer (~> 1.0, >= 1.0
|
36
|
-
|
37
|
-
|
42
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
43
|
+
actiontext (6.0.3.1)
|
44
|
+
actionpack (= 6.0.3.1)
|
45
|
+
activerecord (= 6.0.3.1)
|
46
|
+
activestorage (= 6.0.3.1)
|
47
|
+
activesupport (= 6.0.3.1)
|
48
|
+
nokogiri (>= 1.8.5)
|
49
|
+
actionview (6.0.3.1)
|
50
|
+
activesupport (= 6.0.3.1)
|
38
51
|
builder (~> 3.1)
|
39
52
|
erubi (~> 1.4)
|
40
53
|
rails-dom-testing (~> 2.0)
|
41
|
-
rails-html-sanitizer (~> 1.
|
42
|
-
activejob (
|
43
|
-
activesupport (=
|
54
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
55
|
+
activejob (6.0.3.1)
|
56
|
+
activesupport (= 6.0.3.1)
|
44
57
|
globalid (>= 0.3.6)
|
45
|
-
activemodel (
|
46
|
-
activesupport (=
|
47
|
-
activerecord (
|
48
|
-
activemodel (=
|
49
|
-
activesupport (=
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
activerecord (=
|
58
|
+
activemodel (6.0.3.1)
|
59
|
+
activesupport (= 6.0.3.1)
|
60
|
+
activerecord (6.0.3.1)
|
61
|
+
activemodel (= 6.0.3.1)
|
62
|
+
activesupport (= 6.0.3.1)
|
63
|
+
activestorage (6.0.3.1)
|
64
|
+
actionpack (= 6.0.3.1)
|
65
|
+
activejob (= 6.0.3.1)
|
66
|
+
activerecord (= 6.0.3.1)
|
54
67
|
marcel (~> 0.3.1)
|
55
|
-
activesupport (
|
68
|
+
activesupport (6.0.3.1)
|
56
69
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
57
70
|
i18n (>= 0.7, < 2)
|
58
71
|
minitest (~> 5.1)
|
59
72
|
tzinfo (~> 1.1)
|
60
|
-
|
61
|
-
|
73
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
74
|
+
ast (2.4.0)
|
75
|
+
autoprefixer-rails (9.7.6)
|
62
76
|
execjs
|
63
77
|
awesome_print (1.8.0)
|
64
78
|
bootstrap (4.4.1)
|
@@ -66,7 +80,8 @@ GEM
|
|
66
80
|
popper_js (>= 1.14.3, < 2)
|
67
81
|
sassc-rails (>= 2.0.0)
|
68
82
|
builder (3.2.4)
|
69
|
-
byebug (11.1.
|
83
|
+
byebug (11.1.3)
|
84
|
+
childprocess (3.0.0)
|
70
85
|
codeclimate-test-reporter (1.0.7)
|
71
86
|
simplecov
|
72
87
|
concurrent-ruby (1.1.6)
|
@@ -80,7 +95,7 @@ GEM
|
|
80
95
|
factory_bot_rails (4.11.1)
|
81
96
|
factory_bot (~> 4.11.1)
|
82
97
|
railties (>= 3.0.0)
|
83
|
-
ffi (1.
|
98
|
+
ffi (1.13.0)
|
84
99
|
globalid (0.4.2)
|
85
100
|
activesupport (>= 4.2.0)
|
86
101
|
haml (5.1.2)
|
@@ -97,61 +112,85 @@ GEM
|
|
97
112
|
haml (>= 4.0, < 6)
|
98
113
|
nokogiri (>= 1.6.0)
|
99
114
|
ruby_parser (~> 3.5)
|
100
|
-
i18n (1.8.
|
115
|
+
i18n (1.8.3)
|
101
116
|
concurrent-ruby (~> 1.0)
|
102
|
-
|
117
|
+
iniparse (1.5.0)
|
118
|
+
jquery-rails (4.4.0)
|
103
119
|
rails-dom-testing (>= 1, < 3)
|
104
120
|
railties (>= 4.2.0)
|
105
121
|
thor (>= 0.14, < 2.0)
|
106
|
-
loofah (2.
|
122
|
+
loofah (2.5.0)
|
107
123
|
crass (~> 1.0.2)
|
108
124
|
nokogiri (>= 1.5.9)
|
109
125
|
mail (2.7.1)
|
110
126
|
mini_mime (>= 0.1.1)
|
111
127
|
marcel (0.3.3)
|
112
128
|
mimemagic (~> 0.3.2)
|
113
|
-
method_source (0.
|
114
|
-
mimemagic (0.3.
|
129
|
+
method_source (1.0.0)
|
130
|
+
mimemagic (0.3.5)
|
115
131
|
mini_mime (1.0.2)
|
116
132
|
mini_portile2 (2.4.0)
|
117
|
-
minitest (5.14.
|
133
|
+
minitest (5.14.1)
|
118
134
|
nio4r (2.5.2)
|
119
135
|
nokogiri (1.10.9)
|
120
136
|
mini_portile2 (~> 2.4.0)
|
137
|
+
overcommit (0.53.0)
|
138
|
+
childprocess (>= 0.6.3, < 4)
|
139
|
+
iniparse (~> 1.4)
|
140
|
+
parallel (1.19.1)
|
141
|
+
parser (2.7.1.3)
|
142
|
+
ast (~> 2.4.0)
|
121
143
|
popper_js (1.16.0)
|
122
144
|
rack (2.2.2)
|
123
145
|
rack-test (1.1.0)
|
124
146
|
rack (>= 1.0, < 3)
|
125
|
-
rails (
|
126
|
-
actioncable (=
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
147
|
+
rails (6.0.3.1)
|
148
|
+
actioncable (= 6.0.3.1)
|
149
|
+
actionmailbox (= 6.0.3.1)
|
150
|
+
actionmailer (= 6.0.3.1)
|
151
|
+
actionpack (= 6.0.3.1)
|
152
|
+
actiontext (= 6.0.3.1)
|
153
|
+
actionview (= 6.0.3.1)
|
154
|
+
activejob (= 6.0.3.1)
|
155
|
+
activemodel (= 6.0.3.1)
|
156
|
+
activerecord (= 6.0.3.1)
|
157
|
+
activestorage (= 6.0.3.1)
|
158
|
+
activesupport (= 6.0.3.1)
|
135
159
|
bundler (>= 1.3.0)
|
136
|
-
railties (=
|
160
|
+
railties (= 6.0.3.1)
|
137
161
|
sprockets-rails (>= 2.0.0)
|
138
162
|
rails-dom-testing (2.0.3)
|
139
163
|
activesupport (>= 4.2.0)
|
140
164
|
nokogiri (>= 1.6)
|
141
165
|
rails-html-sanitizer (1.3.0)
|
142
166
|
loofah (~> 2.3)
|
143
|
-
railties (
|
144
|
-
actionpack (=
|
145
|
-
activesupport (=
|
167
|
+
railties (6.0.3.1)
|
168
|
+
actionpack (= 6.0.3.1)
|
169
|
+
activesupport (= 6.0.3.1)
|
146
170
|
method_source
|
147
171
|
rake (>= 0.8.7)
|
148
|
-
thor (>= 0.
|
172
|
+
thor (>= 0.20.3, < 2.0)
|
173
|
+
rainbow (3.0.0)
|
149
174
|
rake (13.0.1)
|
175
|
+
regexp_parser (1.7.1)
|
176
|
+
rexml (3.2.4)
|
177
|
+
rubocop (0.85.1)
|
178
|
+
parallel (~> 1.10)
|
179
|
+
parser (>= 2.7.0.1)
|
180
|
+
rainbow (>= 2.2.2, < 4.0)
|
181
|
+
regexp_parser (>= 1.7)
|
182
|
+
rexml
|
183
|
+
rubocop-ast (>= 0.0.3)
|
184
|
+
ruby-progressbar (~> 1.7)
|
185
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
186
|
+
rubocop-ast (0.0.3)
|
187
|
+
parser (>= 2.7.0.1)
|
188
|
+
ruby-progressbar (1.10.1)
|
150
189
|
ruby_parser (3.14.2)
|
151
190
|
sexp_processor (~> 4.9)
|
152
191
|
sass-rails (6.0.0)
|
153
192
|
sassc-rails (~> 2.1, >= 2.1.1)
|
154
|
-
sassc (2.
|
193
|
+
sassc (2.4.0)
|
155
194
|
ffi (~> 1.9)
|
156
195
|
sassc-rails (2.1.2)
|
157
196
|
railties (>= 4.0.0)
|
@@ -167,7 +206,7 @@ GEM
|
|
167
206
|
docile (~> 1.1)
|
168
207
|
simplecov-html (~> 0.11)
|
169
208
|
simplecov-html (0.12.2)
|
170
|
-
sprockets (
|
209
|
+
sprockets (4.0.2)
|
171
210
|
concurrent-ruby (~> 1.0)
|
172
211
|
rack (> 1, < 3)
|
173
212
|
sprockets-rails (3.2.1)
|
@@ -179,15 +218,17 @@ GEM
|
|
179
218
|
thor (1.0.1)
|
180
219
|
thread_safe (0.3.6)
|
181
220
|
tilt (2.0.10)
|
182
|
-
tzinfo (1.2.
|
221
|
+
tzinfo (1.2.7)
|
183
222
|
thread_safe (~> 0.1)
|
184
|
-
|
223
|
+
unicode-display_width (1.7.0)
|
224
|
+
websocket-driver (0.7.2)
|
185
225
|
websocket-extensions (>= 0.1.0)
|
186
|
-
websocket-extensions (0.1.
|
226
|
+
websocket-extensions (0.1.5)
|
187
227
|
will-paginate-i18n (0.1.15)
|
188
228
|
will_paginate (3.1.8)
|
189
229
|
will_paginate-bootstrap4 (0.2.2)
|
190
230
|
will_paginate (~> 3.0, >= 3.0.0)
|
231
|
+
zeitwerk (2.3.0)
|
191
232
|
|
192
233
|
PLATFORMS
|
193
234
|
ruby
|
@@ -199,6 +240,8 @@ DEPENDENCIES
|
|
199
240
|
factory_bot_rails (~> 4.0)
|
200
241
|
jquery-rails (>= 3.1.0)
|
201
242
|
minitest
|
243
|
+
overcommit
|
244
|
+
rubocop
|
202
245
|
simple_form
|
203
246
|
simplecov
|
204
247
|
sqlite3
|
data/README.md
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
[![Inline docs](http://inch-ci.org/github/thooams/Ui-Bibz.svg?branch=master)](http://inch-ci.org/github/thooams/Ui-Bibz)
|
8
8
|
[![security](https://hakiri.io/github/thooams/Ui-Bibz/master.svg)](https://hakiri.io/github/thooams/Ui-Bibz/master)
|
9
9
|
[![Dependency Status](https://gemnasium.com/thooams/Ui-Bibz.svg)](https://gemnasium.com/thooams/Ui-Bibz)
|
10
|
+
![Ruby](https://github.com/thooams/Ui-Bibz/workflows/Ruby/badge.svg)
|
10
11
|
|
11
12
|
This project rocks and uses MIT-LICENSE.
|
12
13
|
|
data/Rakefile
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
begin
|
2
4
|
require 'bundler/setup'
|
3
5
|
rescue LoadError
|
@@ -6,14 +8,14 @@ end
|
|
6
8
|
|
7
9
|
require 'rdoc/task'
|
8
10
|
# Maintain your gem's version:
|
9
|
-
require
|
11
|
+
require 'ui_bibz/infos'
|
10
12
|
RDoc::Task.new(:rdoc) do |rdoc|
|
11
13
|
rdoc.main = 'README.md'
|
12
|
-
rdoc.rdoc_dir = "rdoc-v#{
|
13
|
-
rdoc.title = "Ui Bibz Documentation v#{
|
14
|
+
rdoc.rdoc_dir = "rdoc-v#{UiBibz::VERSION}"
|
15
|
+
rdoc.title = "Ui Bibz Documentation v#{UiBibz::VERSION}"
|
14
16
|
rdoc.generator = 'fivefish'
|
15
|
-
#rdoc.options << '--line-numbers'
|
16
|
-
rdoc.options <<
|
17
|
+
# rdoc.options << '--line-numbers'
|
18
|
+
rdoc.options << '--all'
|
17
19
|
|
18
20
|
rdoc.rdoc_files.include('README.md')
|
19
21
|
rdoc.rdoc_files.include('lib/ui_bibz/ui/**/*.rb')
|
@@ -28,7 +30,7 @@ Rake::TestTask.new(:test) do |t|
|
|
28
30
|
t.libs << 'test'
|
29
31
|
t.pattern = 'test/**/*_test.rb'
|
30
32
|
t.verbose = false
|
31
|
-
t.ruby_opts += [
|
33
|
+
t.ruby_opts += ['-W1'] # to remove to many warnings
|
32
34
|
end
|
33
35
|
|
34
36
|
task default: :test
|