ui_bibz 2.5.5 → 3.0.0.alpha6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -2
- data/.rubocop.yml +89 -1
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +96 -108
- data/README.md +9 -52
- data/Rakefile +3 -2
- data/bin/test +7 -0
- data/config/initializers/will_paginate.rb +2 -1
- data/lib/ui_bibz.rb +17 -3
- data/lib/ui_bibz/concerns/models/searchable.rb +3 -3
- data/lib/ui_bibz/helpers/ui/core/boxes_helper.rb +9 -1
- data/lib/ui_bibz/helpers/ui/core/forms_helper.rb +20 -1
- data/lib/ui_bibz/helpers/ui/core/layouts_helper.rb +10 -2
- data/lib/ui_bibz/helpers/ui/core/lists_helper.rb +1 -1
- data/lib/ui_bibz/helpers/ui/core/notifications_helper.rb +9 -5
- data/lib/ui_bibz/helpers/ui/ux_helper.rb +2 -6
- data/lib/ui_bibz/infos.rb +11 -5
- data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +15 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/base_input.rb +4 -7
- data/lib/ui_bibz/inputs/ui_bibz_inputs/collection_input.rb +6 -9
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_checkbox_field_input.rb +5 -1
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_choice_field_input.rb +23 -0
- 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_slider_field_input.rb +12 -0
- data/lib/ui_bibz/rails/engine.rb +1 -16
- data/lib/ui_bibz/railtie.rb +6 -0
- data/lib/ui_bibz/ui/concerns/card_itemable_concern.rb +67 -0
- data/lib/ui_bibz/ui/concerns/html_concern.rb +16 -0
- data/lib/ui_bibz/ui/core/boxes/card.rb +5 -50
- data/lib/ui_bibz/ui/core/boxes/card_accordion.rb +2 -0
- data/lib/ui_bibz/ui/core/boxes/card_column.rb +3 -1
- data/lib/ui_bibz/ui/core/boxes/card_deck.rb +3 -1
- data/lib/ui_bibz/ui/core/boxes/card_grid.rb +60 -0
- data/lib/ui_bibz/ui/core/boxes/card_group.rb +3 -1
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_link.rb +0 -3
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_subtitle.rb +47 -0
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_text.rb +0 -3
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb +1 -4
- data/lib/ui_bibz/ui/core/boxes/components/card_body.rb +15 -0
- data/lib/ui_bibz/ui/core/boxes/components/card_col.rb +65 -0
- data/lib/ui_bibz/ui/core/boxes/components/card_footer.rb +0 -3
- data/lib/ui_bibz/ui/core/boxes/components/card_header.rb +2 -4
- data/lib/ui_bibz/ui/core/boxes/components/card_image.rb +1 -4
- data/lib/ui_bibz/ui/core/boxes/components/card_row.rb +65 -0
- data/lib/ui_bibz/ui/core/boxes/components/card_tab_group.rb +0 -4
- data/lib/ui_bibz/ui/core/boxes/jumbotron.rb +1 -4
- data/lib/ui_bibz/ui/core/component.rb +16 -9
- data/lib/ui_bibz/ui/core/forms/buttons/button.rb +2 -2
- data/lib/ui_bibz/ui/core/forms/buttons/button_group.rb +9 -11
- data/lib/ui_bibz/ui/core/forms/buttons/button_refresh.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/choices/box_switch_field.rb +7 -10
- data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +20 -10
- data/lib/ui_bibz/ui/core/forms/choices/choice_group.rb +22 -2
- data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +24 -12
- data/lib/ui_bibz/ui/core/forms/choices/radio_field.rb +17 -6
- data/lib/ui_bibz/ui/core/forms/choices/switch_field.rb +5 -5
- data/lib/ui_bibz/ui/core/forms/dates/date_picker_field.rb +12 -15
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_divider.rb +0 -1
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_header.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/dropdowns/dropdown.rb +19 -20
- data/lib/ui_bibz/ui/core/forms/dropdowns/split_dropdown.rb +7 -5
- data/lib/ui_bibz/ui/core/forms/files/file_field.rb +20 -10
- data/lib/ui_bibz/ui/core/forms/numbers/formula_field.rb +16 -8
- data/lib/ui_bibz/ui/core/forms/numbers/number_field.rb +20 -3
- data/lib/ui_bibz/ui/core/forms/numbers/range_field.rb +51 -5
- data/lib/ui_bibz/ui/core/forms/numbers/slider_field.rb +144 -0
- data/lib/ui_bibz/ui/core/forms/numbers/slider_header.rb +71 -0
- data/lib/ui_bibz/ui/core/forms/selects/abstract_select.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/selects/dropdown_select_field.rb +41 -62
- data/lib/ui_bibz/ui/core/forms/selects/multi_column_field.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/selects/select_field.rb +2 -5
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_addon.rb +1 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_group.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_link.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_refresh.rb +1 -12
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_checkbox_field.rb +9 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_dropdown.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_radio_field.rb +9 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_switch_field.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/surround_field.rb +4 -12
- data/lib/ui_bibz/ui/core/forms/textareas/markdown_editor_field.rb +4 -7
- data/lib/ui_bibz/ui/core/forms/texts/auto_complete_field.rb +2 -5
- data/lib/ui_bibz/ui/core/forms/texts/text_field.rb +0 -3
- data/lib/ui_bibz/ui/core/icons/components/glyph_counter.rb +0 -3
- data/lib/ui_bibz/ui/core/icons/components/glyph_text.rb +1 -4
- data/lib/ui_bibz/ui/core/icons/glyph.rb +1 -4
- data/lib/ui_bibz/ui/core/icons/star.rb +0 -3
- data/lib/ui_bibz/ui/core/layouts/col.rb +5 -42
- data/lib/ui_bibz/ui/core/layouts/container.rb +9 -6
- data/lib/ui_bibz/ui/core/layouts/row.rb +32 -2
- data/lib/ui_bibz/ui/core/lists/components/list.rb +6 -8
- data/lib/ui_bibz/ui/core/lists/components/list/list_body.rb +0 -3
- data/lib/ui_bibz/ui/core/lists/components/list/list_header.rb +0 -3
- data/lib/ui_bibz/ui/core/lists/list_group.rb +9 -6
- data/lib/ui_bibz/ui/core/navigations/breadcrumb.rb +3 -2
- data/lib/ui_bibz/ui/core/navigations/components/breadcrumb_link.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/nav_dropdown.rb +2 -5
- data/lib/ui_bibz/ui/core/navigations/components/nav_link.rb +3 -1
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb +15 -6
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_list.rb +0 -4
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_span.rb +1 -4
- data/lib/ui_bibz/ui/core/navigations/components/nav_text.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/navbar_brand.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/navbar_form.rb +4 -4
- data/lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb +1 -4
- data/lib/ui_bibz/ui/core/navigations/components/navbar_text.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/pagination_link.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/toolbar_form.rb +3 -3
- data/lib/ui_bibz/ui/core/navigations/link.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/nav.rb +37 -10
- data/lib/ui_bibz/ui/core/navigations/navbar.rb +28 -7
- data/lib/ui_bibz/ui/core/navigations/pagination.rb +3 -1
- data/lib/ui_bibz/ui/core/navigations/tab_group.rb +10 -5
- data/lib/ui_bibz/ui/core/navigations/toolbar.rb +2 -0
- data/lib/ui_bibz/ui/core/notifications/alert.rb +2 -2
- data/lib/ui_bibz/ui/core/notifications/badge.rb +2 -5
- data/lib/ui_bibz/ui/core/notifications/components/alert_body.rb +0 -3
- data/lib/ui_bibz/ui/core/notifications/components/alert_header.rb +4 -10
- data/lib/ui_bibz/ui/core/notifications/components/bar.rb +0 -3
- data/lib/ui_bibz/ui/core/notifications/components/toast_body.rb +0 -3
- data/lib/ui_bibz/ui/core/notifications/components/toast_header.rb +1 -6
- data/lib/ui_bibz/ui/core/notifications/progress_bar.rb +7 -5
- data/lib/ui_bibz/ui/core/notifications/spinner.rb +0 -3
- data/lib/ui_bibz/ui/core/notifications/toast.rb +14 -3
- data/lib/ui_bibz/ui/core/windows/components/modal_body.rb +0 -3
- data/lib/ui_bibz/ui/core/windows/components/modal_footer.rb +0 -3
- data/lib/ui_bibz/ui/core/windows/components/modal_header.rb +1 -7
- data/lib/ui_bibz/ui/core/windows/modal.rb +65 -14
- data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +6 -2
- data/lib/ui_bibz/ui/extensions/core/component/popover_extension.rb +9 -9
- data/lib/ui_bibz/ui/extensions/core/forms/connect_extension.rb +2 -2
- data/lib/ui_bibz/ui/ux/containers/components/panel_body.rb +0 -3
- data/lib/ui_bibz/ui/ux/containers/components/panel_column.rb +2 -0
- data/lib/ui_bibz/ui/ux/containers/components/panel_deck.rb +2 -0
- data/lib/ui_bibz/ui/ux/containers/components/panel_footer.rb +0 -3
- data/lib/ui_bibz/ui/ux/containers/components/panel_group.rb +2 -0
- data/lib/ui_bibz/ui/ux/containers/components/panel_header.rb +4 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_header_title.rb +47 -0
- data/lib/ui_bibz/ui/ux/containers/components/panel_tab_group.rb +0 -4
- data/lib/ui_bibz/ui/ux/containers/components/panel_toolbar.rb +0 -3
- data/lib/ui_bibz/ui/ux/containers/panel.rb +4 -2
- data/lib/ui_bibz/ui/ux/tables/components/thead.rb +0 -3
- data/lib/ui_bibz/ui/ux/tables/table.rb +2 -4
- data/lib/ui_bibz/ui/ux/tables/table_card.rb +4 -3
- data/lib/ui_bibz/ui/ux/tables/table_search_field.rb +5 -5
- data/lib/ui_bibz/utils/breakdown_class_name_generator.rb +82 -0
- data/lib/ui_bibz/utils/internationalization.rb +2 -2
- data/lib/ui_bibz/utils/screwdriver.rb +16 -10
- data/test/dummy/Rakefile +1 -1
- data/test/dummy/app/javascripts/packs/index.js +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +4 -1
- data/{app/ui/.keep → test/dummy/app/views/users/index.html.erb} +0 -0
- data/test/dummy/bin/setup +17 -13
- data/test/dummy/config.ru +2 -1
- data/test/dummy/config/application.rb +1 -0
- data/test/dummy/config/cable.yml +10 -0
- data/test/dummy/config/database.yml +1 -1
- data/test/dummy/config/environment.rb +1 -1
- data/test/dummy/config/environments/development.rb +33 -12
- data/test/dummy/config/environments/production.rb +52 -19
- data/test/dummy/config/environments/test.rb +18 -12
- data/test/dummy/config/initializers/application_controller_renderer.rb +9 -0
- data/test/dummy/config/initializers/assets.rb +4 -3
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -1
- data/test/dummy/config/initializers/content_security_policy.rb +29 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
- data/test/dummy/config/initializers/inflections.rb +0 -1
- data/test/dummy/config/initializers/mime_types.rb +0 -1
- data/test/dummy/config/initializers/wrap_parameters.rb +2 -2
- data/test/dummy/config/puma.rb +40 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config/spring.rb +8 -0
- data/test/dummy/config/storage.yml +34 -0
- data/test/dummy/db/migrate/20150123191805_create_users.rb +1 -1
- data/test/dummy/db/schema.rb +24 -24
- data/test/dummy/public/404.html +6 -6
- data/test/dummy/public/422.html +6 -6
- data/test/dummy/public/500.html +6 -6
- data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/test/dummy/public/apple-touch-icon.png +0 -0
- data/test/dummy/storage/.keep +0 -0
- data/test/simple_form_test.rb +45 -44
- data/test/store_test.rb +5 -5
- data/test/test_helper.rb +18 -9
- data/test/ui/core/boxes/card_grid_test.rb +17 -0
- data/test/ui/core/boxes/card_test.rb +46 -12
- data/test/ui/core/boxes/jumbotron_test.rb +2 -2
- data/test/ui/core/component_test.rb +1 -1
- data/test/ui/core/forms/buttons/button_group_test.rb +1 -1
- data/test/ui/core/forms/buttons/button_link_test.rb +1 -1
- data/test/ui/core/forms/buttons/button_test.rb +2 -2
- data/test/ui/core/forms/choices/checkbox_field_test.rb +9 -2
- data/test/ui/core/forms/choices/choice_group_test.rb +11 -9
- data/test/ui/core/forms/choices/radio_field_test.rb +1 -1
- data/test/ui/core/forms/dates/date_picker_field_test.rb +1 -1
- data/test/ui/core/forms/dropdowns/dropdown_test.rb +2 -2
- data/test/ui/core/forms/files/file_field_test.rb +12 -0
- data/test/ui/core/forms/numbers/formula_field_test.rb +1 -1
- data/test/ui/core/forms/numbers/range_field_test.rb +37 -2
- data/test/ui/core/forms/numbers/slider_field_test.rb +26 -0
- data/test/ui/core/forms/selects/multi_column_field_test.rb +1 -1
- data/test/ui/core/forms/selects/multi_select_field_test.rb +7 -7
- data/test/ui/core/forms/selects/select_field_test.rb +3 -3
- data/test/ui/core/forms/surrounds/surround_field_test.rb +39 -3
- data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +1 -1
- data/test/ui/core/forms/texts/auto_complete_field_test.rb +8 -8
- data/test/ui/core/forms/texts/text_field_test.rb +2 -2
- data/test/ui/core/layouts/col_test.rb +11 -2
- data/test/ui/core/layouts/container_test.rb +15 -1
- data/test/ui/core/layouts/row_test.rb +68 -3
- data/test/ui/core/lists/list_group_test.rb +1 -1
- data/test/ui/core/navigations/breadcrumb_test.rb +1 -1
- data/test/ui/core/navigations/link_test.rb +1 -1
- data/test/ui/core/navigations/nav_test.rb +17 -5
- data/test/ui/core/navigations/navbar_test.rb +7 -8
- data/test/ui/core/navigations/tab_group_test.rb +4 -4
- data/test/ui/core/notifications/alert_test.rb +2 -2
- data/test/ui/core/notifications/badge_test.rb +3 -3
- data/test/ui/core/notifications/progress_bar_test.rb +1 -1
- data/test/ui/core/notifications/toast_test.rb +10 -1
- data/test/ui/core/windows/modal_test.rb +15 -1
- data/test/ui/utils/breakdown_class_name_generator_test.rb +74 -0
- data/test/ui/ux/containers/panel_test.rb +5 -5
- data/test/ui/ux/tables/table_test.rb +6 -6
- data/test/ui_bibz_test.rb +1 -1
- data/ui_bibz.gemspec +16 -16
- metadata +100 -109
- data/.rubocop_todo.yml +0 -25
- data/app/assets/javascripts/fix_bootstrap.coffee +0 -7
- data/app/assets/javascripts/form.coffee +0 -83
- data/app/assets/javascripts/formula.coffee +0 -69
- data/app/assets/javascripts/input-connected.coffee +0 -101
- data/app/assets/javascripts/interface.coffee +0 -55
- data/app/assets/javascripts/jquery.multi-select-extend.coffee +0 -38
- data/app/assets/javascripts/table.coffee +0 -36
- data/app/assets/javascripts/ui_bibz.coffee.erb +0 -75
- data/app/assets/stylesheets/_custom_variables.sass +0 -20
- data/app/assets/stylesheets/_panel.scss +0 -315
- data/app/assets/stylesheets/bootstrap-switch.sass +0 -159
- data/app/assets/stylesheets/boxes.sass +0 -5
- data/app/assets/stylesheets/containers.sass +0 -2
- data/app/assets/stylesheets/fix-bootstrap-4.sass +0 -19
- data/app/assets/stylesheets/fix_addon.sass +0 -216
- data/app/assets/stylesheets/forms.sass +0 -91
- data/app/assets/stylesheets/navigations.sass +0 -17
- data/app/assets/stylesheets/notifications.sass +0 -42
- data/app/assets/stylesheets/tables.sass +0 -66
- data/app/assets/stylesheets/ui_bibz.sass.erb +0 -55
- data/lib/generators/ui_bibz/install_generator.rb +0 -17
- data/lib/generators/ui_bibz/templates/ui_bibz_initializer.rb +0 -5
- data/lib/ui_bibz/ui/core/forms/selects/multi_select_field.rb +0 -125
- data/lib/ui_bibz/ui/core/icons/glyph_group.rb +0 -101
- data/test/dummy/bin/bundle +0 -5
- data/test/ui/core/forms/files/text_field_test.rb +0 -12
- data/test/ui/core/forms/selects/dropdown_select_field_test.rb +0 -84
- data/test/ui/core/icons/glyph_group_test.rb +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38589277f9143465e38e93374fe2a2c2b5c98b6c419b817e71807258dd694d11
|
4
|
+
data.tar.gz: '087b07e3cecf23f9eace93ff8cab21324cbcbfaf30f7f26d1cf5af229a85c45a'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0116b98a6962813164b842c69424c368ab0dfb4425b05259c6b16b93d2067712a642182d4ec1147932cc6880c34fe29e2b7acfc84d2b5f7ef96d064d20bf4a5b
|
7
|
+
data.tar.gz: c54954c90ca0d394ead85a12f7ab2b353c860fa8d93c9b73bc82e7735cc9a23c9ec8e2cdd699d4d7b00fd2db0c84751c5cb22b381bf018122acafcd28be56183
|
data/.gitignore
CHANGED
@@ -33,8 +33,6 @@ config/secrets.yml
|
|
33
33
|
|
34
34
|
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
35
35
|
.rvmrc
|
36
|
-
.ruby-gemset
|
37
|
-
.ruby-version
|
38
36
|
|
39
37
|
# if using bower-rails ignore default bower_components path bower.json files
|
40
38
|
/vendor/assets/bower_components
|
@@ -44,3 +42,6 @@ bower.json
|
|
44
42
|
tags
|
45
43
|
/rdoc*
|
46
44
|
coverage
|
45
|
+
|
46
|
+
.DS_Store
|
47
|
+
node_modules/
|
data/.rubocop.yml
CHANGED
@@ -1,10 +1,14 @@
|
|
1
|
-
|
1
|
+
require:
|
2
|
+
- rubocop-performance
|
3
|
+
- rubocop-rails
|
4
|
+
- rubocop-minitest
|
2
5
|
|
3
6
|
Layout/LineLength:
|
4
7
|
Enabled: false
|
5
8
|
|
6
9
|
AllCops:
|
7
10
|
TargetRubyVersion: 2.7
|
11
|
+
NewCops: enable
|
8
12
|
|
9
13
|
Lint/UselessAssignment:
|
10
14
|
Enabled: true
|
@@ -85,3 +89,87 @@ Style/RedundantRegexpEscape:
|
|
85
89
|
|
86
90
|
Style/SlicingWithRange:
|
87
91
|
Enabled: true
|
92
|
+
|
93
|
+
Style/RedundantFetchBlock:
|
94
|
+
Enabled: true
|
95
|
+
|
96
|
+
Metrics/CyclomaticComplexity:
|
97
|
+
Enabled: false
|
98
|
+
|
99
|
+
Metrics/AbcSize:
|
100
|
+
Max: 48
|
101
|
+
|
102
|
+
Metrics/PerceivedComplexity:
|
103
|
+
Enabled: false
|
104
|
+
|
105
|
+
Lint/BinaryOperatorWithIdenticalOperands: # (new in 0.89)
|
106
|
+
Enabled: true
|
107
|
+
Lint/DuplicateElsifCondition: # (new in 0.88)
|
108
|
+
Enabled: true
|
109
|
+
Lint/DuplicateRequire: # (new in 0.90)
|
110
|
+
Enabled: true
|
111
|
+
Lint/DuplicateRescueException: # (new in 0.89)
|
112
|
+
Enabled: true
|
113
|
+
Lint/EmptyConditionalBody: # (new in 0.89)
|
114
|
+
Enabled: true
|
115
|
+
Lint/EmptyFile: # (new in 0.90)
|
116
|
+
Enabled: true
|
117
|
+
Lint/FloatComparison: # (new in 0.89)
|
118
|
+
Enabled: true
|
119
|
+
Lint/MissingSuper: # (new in 0.89)
|
120
|
+
Enabled: false
|
121
|
+
Lint/OutOfRangeRegexpRef: # (new in 0.89)
|
122
|
+
Enabled: true
|
123
|
+
Lint/SelfAssignment: # (new in 0.89)
|
124
|
+
Enabled: true
|
125
|
+
Lint/TopLevelReturnWithArgument: # (new in 0.89)
|
126
|
+
Enabled: true
|
127
|
+
Lint/TrailingCommaInAttributeDeclaration: # (new in 0.90)
|
128
|
+
Enabled: true
|
129
|
+
Lint/UnreachableLoop: # (new in 0.89)
|
130
|
+
Enabled: true
|
131
|
+
Lint/UselessMethodDefinition: # (new in 0.90)
|
132
|
+
Enabled: true
|
133
|
+
Style/AccessorGrouping: # (new in 0.87)
|
134
|
+
Enabled: true
|
135
|
+
Style/ArrayCoercion: # (new in 0.88)
|
136
|
+
Enabled: true
|
137
|
+
Style/BisectedAttrAccessor: # (new in 0.87)
|
138
|
+
Enabled: true
|
139
|
+
Style/CaseLikeIf: # (new in 0.88)
|
140
|
+
Enabled: true
|
141
|
+
Style/CombinableLoops: # (new in 0.90)
|
142
|
+
Enabled: true
|
143
|
+
Style/ExplicitBlockArgument: # (new in 0.89)
|
144
|
+
Enabled: true
|
145
|
+
Style/GlobalStdStream: # (new in 0.89)
|
146
|
+
Enabled: true
|
147
|
+
Style/HashAsLastArrayItem: # (new in 0.88)
|
148
|
+
Enabled: true
|
149
|
+
Style/HashLikeCase: # (new in 0.88)
|
150
|
+
Enabled: true
|
151
|
+
Style/KeywordParametersOrder: # (new in 0.90)
|
152
|
+
Enabled: true
|
153
|
+
Style/OptionalBooleanParameter: # (new in 0.89)
|
154
|
+
Enabled: true
|
155
|
+
Style/RedundantAssignment: # (new in 0.87)
|
156
|
+
Enabled: true
|
157
|
+
Style/RedundantFileExtensionInRequire: # (new in 0.88)
|
158
|
+
Enabled: true
|
159
|
+
Style/RedundantSelfAssignment: # (new in 0.90)
|
160
|
+
Enabled: true
|
161
|
+
Style/SingleArgumentDig: # (new in 0.89)
|
162
|
+
Enabled: true
|
163
|
+
Style/SoleNestedConditional: # (new in 0.89)
|
164
|
+
Enabled: true
|
165
|
+
Style/StringConcatenation: # (new in 0.89)
|
166
|
+
Enabled: true
|
167
|
+
|
168
|
+
Rails/ContentTag:
|
169
|
+
Enabled: false
|
170
|
+
|
171
|
+
Rails/OutputSafety:
|
172
|
+
Enabled: false
|
173
|
+
|
174
|
+
Rails/SkipsModelValidations:
|
175
|
+
Enabled: false
|
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ui-bibz
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.7.1
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,14 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ui_bibz (
|
5
|
-
|
6
|
-
haml
|
7
|
-
haml-rails
|
8
|
-
jquery-rails (>= 3.1.0)
|
9
|
-
popper_js
|
10
|
-
rails (>= 4.2.0)
|
11
|
-
sass-rails (>= 5.0.0)
|
4
|
+
ui_bibz (3.0.0.alpha6)
|
5
|
+
rails (~> 6.0.3, >= 6.0.3.2)
|
12
6
|
will-paginate-i18n
|
13
7
|
will_paginate (~> 3.1.0)
|
14
8
|
will_paginate-bootstrap4
|
@@ -16,89 +10,81 @@ PATH
|
|
16
10
|
GEM
|
17
11
|
remote: https://rubygems.org/
|
18
12
|
specs:
|
19
|
-
actioncable (6.0.3.
|
20
|
-
actionpack (= 6.0.3.
|
13
|
+
actioncable (6.0.3.4)
|
14
|
+
actionpack (= 6.0.3.4)
|
21
15
|
nio4r (~> 2.0)
|
22
16
|
websocket-driver (>= 0.6.1)
|
23
|
-
actionmailbox (6.0.3.
|
24
|
-
actionpack (= 6.0.3.
|
25
|
-
activejob (= 6.0.3.
|
26
|
-
activerecord (= 6.0.3.
|
27
|
-
activestorage (= 6.0.3.
|
28
|
-
activesupport (= 6.0.3.
|
17
|
+
actionmailbox (6.0.3.4)
|
18
|
+
actionpack (= 6.0.3.4)
|
19
|
+
activejob (= 6.0.3.4)
|
20
|
+
activerecord (= 6.0.3.4)
|
21
|
+
activestorage (= 6.0.3.4)
|
22
|
+
activesupport (= 6.0.3.4)
|
29
23
|
mail (>= 2.7.1)
|
30
|
-
actionmailer (6.0.3.
|
31
|
-
actionpack (= 6.0.3.
|
32
|
-
actionview (= 6.0.3.
|
33
|
-
activejob (= 6.0.3.
|
24
|
+
actionmailer (6.0.3.4)
|
25
|
+
actionpack (= 6.0.3.4)
|
26
|
+
actionview (= 6.0.3.4)
|
27
|
+
activejob (= 6.0.3.4)
|
34
28
|
mail (~> 2.5, >= 2.5.4)
|
35
29
|
rails-dom-testing (~> 2.0)
|
36
|
-
actionpack (6.0.3.
|
37
|
-
actionview (= 6.0.3.
|
38
|
-
activesupport (= 6.0.3.
|
30
|
+
actionpack (6.0.3.4)
|
31
|
+
actionview (= 6.0.3.4)
|
32
|
+
activesupport (= 6.0.3.4)
|
39
33
|
rack (~> 2.0, >= 2.0.8)
|
40
34
|
rack-test (>= 0.6.3)
|
41
35
|
rails-dom-testing (~> 2.0)
|
42
36
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
43
|
-
actiontext (6.0.3.
|
44
|
-
actionpack (= 6.0.3.
|
45
|
-
activerecord (= 6.0.3.
|
46
|
-
activestorage (= 6.0.3.
|
47
|
-
activesupport (= 6.0.3.
|
37
|
+
actiontext (6.0.3.4)
|
38
|
+
actionpack (= 6.0.3.4)
|
39
|
+
activerecord (= 6.0.3.4)
|
40
|
+
activestorage (= 6.0.3.4)
|
41
|
+
activesupport (= 6.0.3.4)
|
48
42
|
nokogiri (>= 1.8.5)
|
49
|
-
actionview (6.0.3.
|
50
|
-
activesupport (= 6.0.3.
|
43
|
+
actionview (6.0.3.4)
|
44
|
+
activesupport (= 6.0.3.4)
|
51
45
|
builder (~> 3.1)
|
52
46
|
erubi (~> 1.4)
|
53
47
|
rails-dom-testing (~> 2.0)
|
54
48
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
55
|
-
activejob (6.0.3.
|
56
|
-
activesupport (= 6.0.3.
|
49
|
+
activejob (6.0.3.4)
|
50
|
+
activesupport (= 6.0.3.4)
|
57
51
|
globalid (>= 0.3.6)
|
58
|
-
activemodel (6.0.3.
|
59
|
-
activesupport (= 6.0.3.
|
60
|
-
activerecord (6.0.3.
|
61
|
-
activemodel (= 6.0.3.
|
62
|
-
activesupport (= 6.0.3.
|
63
|
-
activestorage (6.0.3.
|
64
|
-
actionpack (= 6.0.3.
|
65
|
-
activejob (= 6.0.3.
|
66
|
-
activerecord (= 6.0.3.
|
52
|
+
activemodel (6.0.3.4)
|
53
|
+
activesupport (= 6.0.3.4)
|
54
|
+
activerecord (6.0.3.4)
|
55
|
+
activemodel (= 6.0.3.4)
|
56
|
+
activesupport (= 6.0.3.4)
|
57
|
+
activestorage (6.0.3.4)
|
58
|
+
actionpack (= 6.0.3.4)
|
59
|
+
activejob (= 6.0.3.4)
|
60
|
+
activerecord (= 6.0.3.4)
|
67
61
|
marcel (~> 0.3.1)
|
68
|
-
activesupport (6.0.3.
|
62
|
+
activesupport (6.0.3.4)
|
69
63
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
70
64
|
i18n (>= 0.7, < 2)
|
71
65
|
minitest (~> 5.1)
|
72
66
|
tzinfo (~> 1.1)
|
73
67
|
zeitwerk (~> 2.2, >= 2.2.2)
|
74
|
-
ast (2.4.
|
75
|
-
autoprefixer-rails (9.7.6)
|
76
|
-
execjs
|
68
|
+
ast (2.4.1)
|
77
69
|
awesome_print (1.8.0)
|
78
|
-
bootstrap (4.4.1)
|
79
|
-
autoprefixer-rails (>= 9.1.0)
|
80
|
-
popper_js (>= 1.14.3, < 2)
|
81
|
-
sassc-rails (>= 2.0.0)
|
82
70
|
builder (3.2.4)
|
83
71
|
byebug (11.1.3)
|
84
|
-
childprocess (
|
72
|
+
childprocess (4.0.0)
|
85
73
|
codeclimate-test-reporter (1.0.7)
|
86
74
|
simplecov
|
87
|
-
concurrent-ruby (1.1.
|
75
|
+
concurrent-ruby (1.1.7)
|
88
76
|
crass (1.0.6)
|
89
77
|
docile (1.3.2)
|
90
78
|
erubi (1.9.0)
|
91
79
|
erubis (2.7.0)
|
92
|
-
execjs (2.7.0)
|
93
80
|
factory_bot (4.11.1)
|
94
81
|
activesupport (>= 3.0.0)
|
95
82
|
factory_bot_rails (4.11.1)
|
96
83
|
factory_bot (~> 4.11.1)
|
97
84
|
railties (>= 3.0.0)
|
98
|
-
ffi (1.13.0)
|
99
85
|
globalid (0.4.2)
|
100
86
|
activesupport (>= 4.2.0)
|
101
|
-
haml (5.
|
87
|
+
haml (5.2.0)
|
102
88
|
temple (>= 0.8.0)
|
103
89
|
tilt
|
104
90
|
haml-rails (2.0.1)
|
@@ -112,14 +98,14 @@ GEM
|
|
112
98
|
haml (>= 4.0, < 6)
|
113
99
|
nokogiri (>= 1.6.0)
|
114
100
|
ruby_parser (~> 3.5)
|
115
|
-
i18n (1.8.
|
101
|
+
i18n (1.8.5)
|
116
102
|
concurrent-ruby (~> 1.0)
|
117
103
|
iniparse (1.5.0)
|
118
104
|
jquery-rails (4.4.0)
|
119
105
|
rails-dom-testing (>= 1, < 3)
|
120
106
|
railties (>= 4.2.0)
|
121
107
|
thor (>= 0.14, < 2.0)
|
122
|
-
loofah (2.
|
108
|
+
loofah (2.7.0)
|
123
109
|
crass (~> 1.0.2)
|
124
110
|
nokogiri (>= 1.5.9)
|
125
111
|
mail (2.7.1)
|
@@ -130,86 +116,84 @@ GEM
|
|
130
116
|
mimemagic (0.3.5)
|
131
117
|
mini_mime (1.0.2)
|
132
118
|
mini_portile2 (2.4.0)
|
133
|
-
minitest (5.14.
|
134
|
-
nio4r (2.5.
|
135
|
-
nokogiri (1.10.
|
119
|
+
minitest (5.14.2)
|
120
|
+
nio4r (2.5.4)
|
121
|
+
nokogiri (1.10.10)
|
136
122
|
mini_portile2 (~> 2.4.0)
|
137
|
-
overcommit (0.
|
138
|
-
childprocess (>= 0.6.3, <
|
123
|
+
overcommit (0.57.0)
|
124
|
+
childprocess (>= 0.6.3, < 5)
|
139
125
|
iniparse (~> 1.4)
|
140
|
-
parallel (1.19.
|
141
|
-
parser (2.7.
|
142
|
-
ast (~> 2.4.
|
143
|
-
|
144
|
-
rack (2.2.2)
|
126
|
+
parallel (1.19.2)
|
127
|
+
parser (2.7.2.0)
|
128
|
+
ast (~> 2.4.1)
|
129
|
+
rack (2.2.3)
|
145
130
|
rack-test (1.1.0)
|
146
131
|
rack (>= 1.0, < 3)
|
147
|
-
rails (6.0.3.
|
148
|
-
actioncable (= 6.0.3.
|
149
|
-
actionmailbox (= 6.0.3.
|
150
|
-
actionmailer (= 6.0.3.
|
151
|
-
actionpack (= 6.0.3.
|
152
|
-
actiontext (= 6.0.3.
|
153
|
-
actionview (= 6.0.3.
|
154
|
-
activejob (= 6.0.3.
|
155
|
-
activemodel (= 6.0.3.
|
156
|
-
activerecord (= 6.0.3.
|
157
|
-
activestorage (= 6.0.3.
|
158
|
-
activesupport (= 6.0.3.
|
132
|
+
rails (6.0.3.4)
|
133
|
+
actioncable (= 6.0.3.4)
|
134
|
+
actionmailbox (= 6.0.3.4)
|
135
|
+
actionmailer (= 6.0.3.4)
|
136
|
+
actionpack (= 6.0.3.4)
|
137
|
+
actiontext (= 6.0.3.4)
|
138
|
+
actionview (= 6.0.3.4)
|
139
|
+
activejob (= 6.0.3.4)
|
140
|
+
activemodel (= 6.0.3.4)
|
141
|
+
activerecord (= 6.0.3.4)
|
142
|
+
activestorage (= 6.0.3.4)
|
143
|
+
activesupport (= 6.0.3.4)
|
159
144
|
bundler (>= 1.3.0)
|
160
|
-
railties (= 6.0.3.
|
145
|
+
railties (= 6.0.3.4)
|
161
146
|
sprockets-rails (>= 2.0.0)
|
162
147
|
rails-dom-testing (2.0.3)
|
163
148
|
activesupport (>= 4.2.0)
|
164
149
|
nokogiri (>= 1.6)
|
165
150
|
rails-html-sanitizer (1.3.0)
|
166
151
|
loofah (~> 2.3)
|
167
|
-
railties (6.0.3.
|
168
|
-
actionpack (= 6.0.3.
|
169
|
-
activesupport (= 6.0.3.
|
152
|
+
railties (6.0.3.4)
|
153
|
+
actionpack (= 6.0.3.4)
|
154
|
+
activesupport (= 6.0.3.4)
|
170
155
|
method_source
|
171
156
|
rake (>= 0.8.7)
|
172
157
|
thor (>= 0.20.3, < 2.0)
|
173
158
|
rainbow (3.0.0)
|
174
159
|
rake (13.0.1)
|
175
|
-
regexp_parser (1.
|
160
|
+
regexp_parser (1.8.2)
|
176
161
|
rexml (3.2.4)
|
177
|
-
rubocop (
|
162
|
+
rubocop (1.1.0)
|
178
163
|
parallel (~> 1.10)
|
179
|
-
parser (>= 2.7.
|
164
|
+
parser (>= 2.7.1.5)
|
180
165
|
rainbow (>= 2.2.2, < 4.0)
|
181
|
-
regexp_parser (>= 1.
|
166
|
+
regexp_parser (>= 1.8)
|
182
167
|
rexml
|
183
|
-
rubocop-ast (>=
|
168
|
+
rubocop-ast (>= 1.0.1)
|
184
169
|
ruby-progressbar (~> 1.7)
|
185
170
|
unicode-display_width (>= 1.4.0, < 2.0)
|
186
|
-
rubocop-ast (
|
187
|
-
parser (>= 2.7.
|
171
|
+
rubocop-ast (1.1.0)
|
172
|
+
parser (>= 2.7.1.5)
|
173
|
+
rubocop-minitest (0.10.1)
|
174
|
+
rubocop (>= 0.87)
|
175
|
+
rubocop-performance (1.8.1)
|
176
|
+
rubocop (>= 0.87.0)
|
177
|
+
rubocop-ast (>= 0.4.0)
|
178
|
+
rubocop-rails (2.8.1)
|
179
|
+
activesupport (>= 4.2.0)
|
180
|
+
rack (>= 1.1)
|
181
|
+
rubocop (>= 0.87.0)
|
188
182
|
ruby-progressbar (1.10.1)
|
189
|
-
ruby_parser (3.
|
183
|
+
ruby_parser (3.15.0)
|
190
184
|
sexp_processor (~> 4.9)
|
191
|
-
|
192
|
-
|
193
|
-
sassc (2.4.0)
|
194
|
-
ffi (~> 1.9)
|
195
|
-
sassc-rails (2.1.2)
|
196
|
-
railties (>= 4.0.0)
|
197
|
-
sassc (>= 2.0)
|
198
|
-
sprockets (> 3.0)
|
199
|
-
sprockets-rails
|
200
|
-
tilt
|
201
|
-
sexp_processor (4.14.1)
|
202
|
-
simple_form (5.0.2)
|
185
|
+
sexp_processor (4.15.1)
|
186
|
+
simple_form (5.0.3)
|
203
187
|
actionpack (>= 5.0)
|
204
188
|
activemodel (>= 5.0)
|
205
|
-
simplecov (0.
|
189
|
+
simplecov (0.19.1)
|
206
190
|
docile (~> 1.1)
|
207
191
|
simplecov-html (~> 0.11)
|
208
|
-
simplecov-html (0.12.
|
192
|
+
simplecov-html (0.12.3)
|
209
193
|
sprockets (4.0.2)
|
210
194
|
concurrent-ruby (~> 1.0)
|
211
195
|
rack (> 1, < 3)
|
212
|
-
sprockets-rails (3.2.
|
196
|
+
sprockets-rails (3.2.2)
|
213
197
|
actionpack (>= 4.0)
|
214
198
|
activesupport (>= 4.0)
|
215
199
|
sprockets (>= 3.0.0)
|
@@ -221,14 +205,14 @@ GEM
|
|
221
205
|
tzinfo (1.2.7)
|
222
206
|
thread_safe (~> 0.1)
|
223
207
|
unicode-display_width (1.7.0)
|
224
|
-
websocket-driver (0.7.
|
208
|
+
websocket-driver (0.7.3)
|
225
209
|
websocket-extensions (>= 0.1.0)
|
226
210
|
websocket-extensions (0.1.5)
|
227
211
|
will-paginate-i18n (0.1.15)
|
228
212
|
will_paginate (3.1.8)
|
229
213
|
will_paginate-bootstrap4 (0.2.2)
|
230
214
|
will_paginate (~> 3.0, >= 3.0.0)
|
231
|
-
zeitwerk (2.
|
215
|
+
zeitwerk (2.4.1)
|
232
216
|
|
233
217
|
PLATFORMS
|
234
218
|
ruby
|
@@ -238,14 +222,18 @@ DEPENDENCIES
|
|
238
222
|
byebug
|
239
223
|
codeclimate-test-reporter
|
240
224
|
factory_bot_rails (~> 4.0)
|
225
|
+
haml-rails
|
241
226
|
jquery-rails (>= 3.1.0)
|
242
227
|
minitest
|
243
228
|
overcommit
|
244
229
|
rubocop
|
230
|
+
rubocop-minitest
|
231
|
+
rubocop-performance
|
232
|
+
rubocop-rails
|
245
233
|
simple_form
|
246
234
|
simplecov
|
247
235
|
sqlite3
|
248
236
|
ui_bibz!
|
249
237
|
|
250
238
|
BUNDLED WITH
|
251
|
-
2.1.
|
239
|
+
2.1.4
|