ui_bibz 2.5.1 → 3.0.0.alpha2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (290) hide show
  1. checksums.yaml +4 -4
  2. data/.github/FUNDING.yml +4 -0
  3. data/.github/workflows/ruby.yml +2 -2
  4. data/.gitignore +3 -2
  5. data/.rubocop.yml +125 -2
  6. data/.ruby-gemset +1 -0
  7. data/.ruby-version +1 -0
  8. data/Gemfile +1 -0
  9. data/Gemfile.lock +110 -103
  10. data/README.md +9 -52
  11. data/Rakefile +3 -2
  12. data/bin/test +7 -0
  13. data/config/initializers/will_paginate.rb +2 -1
  14. data/lib/ui_bibz.rb +17 -2
  15. data/lib/ui_bibz/concerns/models/searchable.rb +3 -3
  16. data/lib/ui_bibz/helpers/ui/core/boxes_helper.rb +9 -1
  17. data/lib/ui_bibz/helpers/ui/core/forms_helper.rb +18 -0
  18. data/lib/ui_bibz/helpers/ui/core/layouts_helper.rb +10 -2
  19. data/lib/ui_bibz/helpers/ui/core/lists_helper.rb +1 -1
  20. data/lib/ui_bibz/helpers/ui/core/notifications_helper.rb +9 -5
  21. data/lib/ui_bibz/helpers/ui/ux_helper.rb +2 -6
  22. data/lib/ui_bibz/infos.rb +11 -5
  23. data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +15 -2
  24. data/lib/ui_bibz/inputs/ui_bibz_inputs/base_input.rb +0 -4
  25. data/lib/ui_bibz/inputs/ui_bibz_inputs/collection_input.rb +6 -9
  26. data/lib/ui_bibz/inputs/ui_bibz_inputs/string_input.rb +1 -1
  27. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_choice_field_input.rb +23 -0
  28. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_number_field_input.rb +3 -2
  29. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_select_field_input.rb +3 -2
  30. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_slider_field_input.rb +11 -0
  31. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_text_field_input.rb +8 -2
  32. data/lib/ui_bibz/rails/engine.rb +2 -13
  33. data/lib/ui_bibz/railtie.rb +6 -0
  34. data/lib/ui_bibz/ui/concerns/card_itemable_concern.rb +65 -0
  35. data/lib/ui_bibz/ui/concerns/html_concern.rb +16 -0
  36. data/lib/ui_bibz/ui/core/boxes/card.rb +5 -50
  37. data/lib/ui_bibz/ui/core/boxes/card_accordion.rb +2 -0
  38. data/lib/ui_bibz/ui/core/boxes/card_column.rb +3 -1
  39. data/lib/ui_bibz/ui/core/boxes/card_deck.rb +3 -1
  40. data/lib/ui_bibz/ui/core/boxes/card_grid.rb +60 -0
  41. data/lib/ui_bibz/ui/core/boxes/card_group.rb +3 -1
  42. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_link.rb +0 -3
  43. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_subtitle.rb +47 -0
  44. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_text.rb +0 -3
  45. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb +1 -4
  46. data/lib/ui_bibz/ui/core/boxes/components/card_body.rb +7 -0
  47. data/lib/ui_bibz/ui/core/boxes/components/card_col.rb +65 -0
  48. data/lib/ui_bibz/ui/core/boxes/components/card_footer.rb +0 -3
  49. data/lib/ui_bibz/ui/core/boxes/components/card_header.rb +2 -4
  50. data/lib/ui_bibz/ui/core/boxes/components/card_image.rb +0 -3
  51. data/lib/ui_bibz/ui/core/boxes/components/card_row.rb +65 -0
  52. data/lib/ui_bibz/ui/core/boxes/components/card_tab_group.rb +0 -4
  53. data/lib/ui_bibz/ui/core/boxes/jumbotron.rb +1 -4
  54. data/lib/ui_bibz/ui/core/component.rb +16 -9
  55. data/lib/ui_bibz/ui/core/forms/buttons/button.rb +1 -1
  56. data/lib/ui_bibz/ui/core/forms/buttons/button_group.rb +9 -11
  57. data/lib/ui_bibz/ui/core/forms/buttons/button_refresh.rb +0 -3
  58. data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb +0 -3
  59. data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb +0 -3
  60. data/lib/ui_bibz/ui/core/forms/choices/box_switch_field.rb +7 -10
  61. data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +8 -7
  62. data/lib/ui_bibz/ui/core/forms/choices/choice_group.rb +22 -2
  63. data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +24 -12
  64. data/lib/ui_bibz/ui/core/forms/choices/radio_field.rb +11 -6
  65. data/lib/ui_bibz/ui/core/forms/choices/switch_field.rb +1 -5
  66. data/lib/ui_bibz/ui/core/forms/dates/date_picker_field.rb +12 -15
  67. data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_divider.rb +0 -1
  68. data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_header.rb +0 -3
  69. data/lib/ui_bibz/ui/core/forms/dropdowns/dropdown.rb +8 -13
  70. data/lib/ui_bibz/ui/core/forms/dropdowns/split_dropdown.rb +0 -3
  71. data/lib/ui_bibz/ui/core/forms/files/file_field.rb +20 -10
  72. data/lib/ui_bibz/ui/core/forms/numbers/formula_field.rb +16 -8
  73. data/lib/ui_bibz/ui/core/forms/numbers/number_field.rb +20 -3
  74. data/lib/ui_bibz/ui/core/forms/numbers/range_field.rb +33 -5
  75. data/lib/ui_bibz/ui/core/forms/numbers/slider_field.rb +132 -0
  76. data/lib/ui_bibz/ui/core/forms/numbers/slider_header.rb +71 -0
  77. data/lib/ui_bibz/ui/core/forms/selects/abstract_select.rb +0 -3
  78. data/lib/ui_bibz/ui/core/forms/selects/dropdown_select_field.rb +6 -9
  79. data/lib/ui_bibz/ui/core/forms/selects/multi_column_field.rb +0 -3
  80. data/lib/ui_bibz/ui/core/forms/selects/multi_select_field.rb +0 -3
  81. data/lib/ui_bibz/ui/core/forms/selects/select_field.rb +2 -5
  82. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_addon.rb +1 -4
  83. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button.rb +0 -3
  84. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_group.rb +0 -3
  85. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_link.rb +0 -3
  86. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_refresh.rb +1 -12
  87. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_checkbox_field.rb +9 -4
  88. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_dropdown.rb +0 -3
  89. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_radio_field.rb +9 -4
  90. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_switch_field.rb +0 -3
  91. data/lib/ui_bibz/ui/core/forms/surrounds/surround_field.rb +1 -4
  92. data/lib/ui_bibz/ui/core/forms/textareas/markdown_editor_field.rb +4 -7
  93. data/lib/ui_bibz/ui/core/forms/texts/auto_complete_field.rb +2 -5
  94. data/lib/ui_bibz/ui/core/forms/texts/text_field.rb +0 -3
  95. data/lib/ui_bibz/ui/core/icons/components/glyph_counter.rb +0 -3
  96. data/lib/ui_bibz/ui/core/icons/components/glyph_text.rb +1 -4
  97. data/lib/ui_bibz/ui/core/icons/glyph.rb +1 -4
  98. data/lib/ui_bibz/ui/core/icons/star.rb +0 -3
  99. data/lib/ui_bibz/ui/core/layouts/col.rb +5 -42
  100. data/lib/ui_bibz/ui/core/layouts/container.rb +9 -6
  101. data/lib/ui_bibz/ui/core/layouts/row.rb +32 -2
  102. data/lib/ui_bibz/ui/core/lists/components/list.rb +6 -8
  103. data/lib/ui_bibz/ui/core/lists/components/list/list_body.rb +0 -3
  104. data/lib/ui_bibz/ui/core/lists/components/list/list_header.rb +0 -3
  105. data/lib/ui_bibz/ui/core/lists/list_group.rb +9 -6
  106. data/lib/ui_bibz/ui/core/navigations/breadcrumb.rb +3 -2
  107. data/lib/ui_bibz/ui/core/navigations/components/breadcrumb_link.rb +0 -3
  108. data/lib/ui_bibz/ui/core/navigations/components/nav_dropdown.rb +1 -4
  109. data/lib/ui_bibz/ui/core/navigations/components/nav_link.rb +3 -1
  110. data/lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb +14 -5
  111. data/lib/ui_bibz/ui/core/navigations/components/nav_link_list.rb +0 -4
  112. data/lib/ui_bibz/ui/core/navigations/components/nav_link_span.rb +1 -4
  113. data/lib/ui_bibz/ui/core/navigations/components/nav_text.rb +0 -3
  114. data/lib/ui_bibz/ui/core/navigations/components/navbar_brand.rb +0 -3
  115. data/lib/ui_bibz/ui/core/navigations/components/navbar_form.rb +4 -4
  116. data/lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb +1 -4
  117. data/lib/ui_bibz/ui/core/navigations/components/navbar_text.rb +0 -3
  118. data/lib/ui_bibz/ui/core/navigations/components/pagination_link.rb +0 -3
  119. data/lib/ui_bibz/ui/core/navigations/components/toolbar_form.rb +3 -3
  120. data/lib/ui_bibz/ui/core/navigations/link.rb +0 -3
  121. data/lib/ui_bibz/ui/core/navigations/nav.rb +37 -10
  122. data/lib/ui_bibz/ui/core/navigations/navbar.rb +28 -7
  123. data/lib/ui_bibz/ui/core/navigations/pagination.rb +3 -1
  124. data/lib/ui_bibz/ui/core/navigations/tab_group.rb +10 -5
  125. data/lib/ui_bibz/ui/core/navigations/toolbar.rb +2 -0
  126. data/lib/ui_bibz/ui/core/notifications/alert.rb +2 -2
  127. data/lib/ui_bibz/ui/core/notifications/badge.rb +2 -5
  128. data/lib/ui_bibz/ui/core/notifications/components/alert_body.rb +0 -3
  129. data/lib/ui_bibz/ui/core/notifications/components/alert_header.rb +4 -10
  130. data/lib/ui_bibz/ui/core/notifications/components/bar.rb +0 -3
  131. data/lib/ui_bibz/ui/core/notifications/components/toast_body.rb +0 -3
  132. data/lib/ui_bibz/ui/core/notifications/components/toast_header.rb +1 -6
  133. data/lib/ui_bibz/ui/core/notifications/progress_bar.rb +7 -5
  134. data/lib/ui_bibz/ui/core/notifications/spinner.rb +0 -3
  135. data/lib/ui_bibz/ui/core/notifications/toast.rb +14 -3
  136. data/lib/ui_bibz/ui/core/windows/components/modal_body.rb +0 -3
  137. data/lib/ui_bibz/ui/core/windows/components/modal_footer.rb +0 -3
  138. data/lib/ui_bibz/ui/core/windows/components/modal_header.rb +1 -7
  139. data/lib/ui_bibz/ui/core/windows/modal.rb +61 -14
  140. data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +4 -2
  141. data/lib/ui_bibz/ui/extensions/core/component/popover_extension.rb +9 -9
  142. data/lib/ui_bibz/ui/extensions/core/forms/connect_extension.rb +2 -2
  143. data/lib/ui_bibz/ui/ux/containers/components/panel_body.rb +0 -3
  144. data/lib/ui_bibz/ui/ux/containers/components/panel_column.rb +2 -0
  145. data/lib/ui_bibz/ui/ux/containers/components/panel_deck.rb +2 -0
  146. data/lib/ui_bibz/ui/ux/containers/components/panel_footer.rb +0 -3
  147. data/lib/ui_bibz/ui/ux/containers/components/panel_group.rb +2 -0
  148. data/lib/ui_bibz/ui/ux/containers/components/panel_header.rb +1 -4
  149. data/lib/ui_bibz/ui/ux/containers/components/panel_tab_group.rb +0 -4
  150. data/lib/ui_bibz/ui/ux/containers/components/panel_toolbar.rb +0 -3
  151. data/lib/ui_bibz/ui/ux/containers/panel.rb +4 -2
  152. data/lib/ui_bibz/ui/ux/tables/components/thead.rb +0 -3
  153. data/lib/ui_bibz/ui/ux/tables/extensions/actionable.rb +1 -1
  154. data/lib/ui_bibz/ui/ux/tables/table.rb +2 -4
  155. data/lib/ui_bibz/ui/ux/tables/table_card.rb +4 -3
  156. data/lib/ui_bibz/ui/ux/tables/table_search_field.rb +5 -5
  157. data/lib/ui_bibz/utils/breakdown_class_name_generator.rb +69 -0
  158. data/lib/ui_bibz/utils/internationalization.rb +1 -1
  159. data/lib/ui_bibz/utils/screwdriver.rb +16 -10
  160. data/package.json +5 -0
  161. data/test/dummy/Rakefile +1 -1
  162. data/test/dummy/app/javascripts/packs/index.js +3 -0
  163. data/test/dummy/app/models/user.rb +1 -0
  164. data/test/dummy/app/views/layouts/application.html.erb +4 -1
  165. data/{app/ui/.keep → test/dummy/app/views/users/index.html.erb} +0 -0
  166. data/test/dummy/bin/setup +17 -13
  167. data/test/dummy/config.ru +2 -1
  168. data/test/dummy/config/application.rb +1 -0
  169. data/test/dummy/config/cable.yml +10 -0
  170. data/test/dummy/config/database.yml +1 -1
  171. data/test/dummy/config/environment.rb +1 -1
  172. data/test/dummy/config/environments/development.rb +33 -12
  173. data/test/dummy/config/environments/production.rb +52 -19
  174. data/test/dummy/config/environments/test.rb +18 -12
  175. data/test/dummy/config/initializers/application_controller_renderer.rb +9 -0
  176. data/test/dummy/config/initializers/assets.rb +4 -3
  177. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -1
  178. data/test/dummy/config/initializers/content_security_policy.rb +29 -0
  179. data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
  180. data/test/dummy/config/initializers/inflections.rb +0 -1
  181. data/test/dummy/config/initializers/mime_types.rb +0 -1
  182. data/test/dummy/config/initializers/wrap_parameters.rb +2 -2
  183. data/test/dummy/config/puma.rb +40 -0
  184. data/test/dummy/config/routes.rb +3 -0
  185. data/test/dummy/config/spring.rb +8 -0
  186. data/test/dummy/config/storage.yml +34 -0
  187. data/test/dummy/db/migrate/20150123191805_create_users.rb +1 -1
  188. data/test/dummy/db/schema.rb +24 -24
  189. data/test/dummy/public/404.html +6 -6
  190. data/test/dummy/public/422.html +6 -6
  191. data/test/dummy/public/500.html +6 -6
  192. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  193. data/test/dummy/public/apple-touch-icon.png +0 -0
  194. data/test/dummy/storage/.keep +0 -0
  195. data/test/simple_form_test.rb +45 -22
  196. data/test/store_test.rb +5 -5
  197. data/test/test_helper.rb +18 -9
  198. data/test/ui/core/boxes/card_grid_test.rb +17 -0
  199. data/test/ui/core/boxes/card_test.rb +45 -11
  200. data/test/ui/core/boxes/jumbotron_test.rb +2 -2
  201. data/test/ui/core/component_test.rb +1 -1
  202. data/test/ui/core/forms/buttons/button_link_test.rb +1 -1
  203. data/test/ui/core/forms/buttons/button_test.rb +2 -2
  204. data/test/ui/core/forms/choices/checkbox_field_test.rb +1 -1
  205. data/test/ui/core/forms/choices/choice_group_test.rb +11 -9
  206. data/test/ui/core/forms/choices/radio_field_test.rb +1 -1
  207. data/test/ui/core/forms/dates/date_picker_field_test.rb +1 -1
  208. data/test/ui/core/forms/files/file_field_test.rb +12 -0
  209. data/test/ui/core/forms/numbers/formula_field_test.rb +1 -1
  210. data/test/ui/core/forms/numbers/range_field_test.rb +23 -2
  211. data/test/ui/core/forms/numbers/slider_field_test.rb +26 -0
  212. data/test/ui/core/forms/selects/dropdown_select_field_test.rb +10 -10
  213. data/test/ui/core/forms/selects/multi_column_field_test.rb +1 -1
  214. data/test/ui/core/forms/selects/multi_select_field_test.rb +2 -2
  215. data/test/ui/core/forms/selects/select_field_test.rb +3 -3
  216. data/test/ui/core/forms/surrounds/surround_field_test.rb +15 -3
  217. data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +1 -1
  218. data/test/ui/core/forms/texts/auto_complete_field_test.rb +8 -8
  219. data/test/ui/core/forms/texts/text_field_test.rb +2 -2
  220. data/test/ui/core/layouts/col_test.rb +11 -2
  221. data/test/ui/core/layouts/container_test.rb +15 -1
  222. data/test/ui/core/layouts/row_test.rb +68 -3
  223. data/test/ui/core/lists/list_group_test.rb +1 -1
  224. data/test/ui/core/navigations/breadcrumb_test.rb +1 -1
  225. data/test/ui/core/navigations/link_test.rb +1 -1
  226. data/test/ui/core/navigations/nav_test.rb +11 -0
  227. data/test/ui/core/navigations/navbar_test.rb +4 -4
  228. data/test/ui/core/notifications/alert_test.rb +2 -2
  229. data/test/ui/core/notifications/badge_test.rb +3 -3
  230. data/test/ui/core/notifications/progress_bar_test.rb +1 -1
  231. data/test/ui/core/notifications/toast_test.rb +10 -1
  232. data/test/ui/core/windows/modal_test.rb +15 -1
  233. data/test/ui/utils/breakdown_class_name_generator_test.rb +60 -0
  234. data/test/ui/ux/containers/panel_test.rb +5 -5
  235. data/test/ui/ux/tables/table_test.rb +6 -6
  236. data/test/ui_bibz_test.rb +1 -1
  237. data/ui_bibz.gemspec +17 -17
  238. data/vendor/assets/fonts/fa-brands-400.eot +0 -0
  239. data/vendor/assets/fonts/fa-brands-400.svg +2 -2
  240. data/vendor/assets/fonts/fa-brands-400.ttf +0 -0
  241. data/vendor/assets/fonts/fa-brands-400.woff +0 -0
  242. data/vendor/assets/fonts/fa-brands-400.woff2 +0 -0
  243. data/vendor/assets/fonts/fa-regular-400.eot +0 -0
  244. data/vendor/assets/fonts/fa-regular-400.svg +2 -2
  245. data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
  246. data/vendor/assets/fonts/fa-regular-400.woff +0 -0
  247. data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
  248. data/vendor/assets/fonts/fa-solid-900.eot +0 -0
  249. data/vendor/assets/fonts/fa-solid-900.svg +241 -3
  250. data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
  251. data/vendor/assets/fonts/fa-solid-900.woff +0 -0
  252. data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
  253. data/vendor/assets/javascripts/all.js +57 -7
  254. data/vendor/assets/javascripts/all.min.js +2 -2
  255. data/vendor/assets/stylesheets/all.min.css +2 -2
  256. data/vendor/assets/stylesheets/fontawesome/_icons.scss +31 -0
  257. data/vendor/assets/stylesheets/fontawesome/_variables.scss +34 -3
  258. data/vendor/assets/stylesheets/fontawesome/brands.scss +1 -1
  259. data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +1 -1
  260. data/vendor/assets/stylesheets/fontawesome/regular.scss +1 -1
  261. data/vendor/assets/stylesheets/fontawesome/solid.scss +1 -1
  262. data/vendor/assets/stylesheets/fontawesome/v4-shims.scss +1 -1
  263. metadata +102 -107
  264. data/.rubocop_todo.yml +0 -25
  265. data/app/assets/javascripts/fix_bootstrap.coffee +0 -7
  266. data/app/assets/javascripts/form.coffee +0 -83
  267. data/app/assets/javascripts/formula.coffee +0 -69
  268. data/app/assets/javascripts/input-connected.coffee +0 -101
  269. data/app/assets/javascripts/interface.coffee +0 -55
  270. data/app/assets/javascripts/jquery.multi-select-extend.coffee +0 -38
  271. data/app/assets/javascripts/table.coffee +0 -36
  272. data/app/assets/javascripts/ui_bibz.coffee.erb +0 -75
  273. data/app/assets/stylesheets/_custom_variables.sass +0 -20
  274. data/app/assets/stylesheets/_panel.scss +0 -315
  275. data/app/assets/stylesheets/bootstrap-switch.sass +0 -159
  276. data/app/assets/stylesheets/boxes.sass +0 -5
  277. data/app/assets/stylesheets/containers.sass +0 -2
  278. data/app/assets/stylesheets/fix-bootstrap-4.sass +0 -19
  279. data/app/assets/stylesheets/fix_addon.sass +0 -217
  280. data/app/assets/stylesheets/forms.sass +0 -91
  281. data/app/assets/stylesheets/navigations.sass +0 -17
  282. data/app/assets/stylesheets/notifications.sass +0 -42
  283. data/app/assets/stylesheets/tables.sass +0 -66
  284. data/app/assets/stylesheets/ui_bibz.sass.erb +0 -55
  285. data/lib/generators/ui_bibz/install_generator.rb +0 -17
  286. data/lib/generators/ui_bibz/templates/ui_bibz_initializer.rb +0 -5
  287. data/lib/ui_bibz/ui/core/icons/glyph_group.rb +0 -101
  288. data/test/dummy/bin/bundle +0 -5
  289. data/test/ui/core/forms/files/text_field_test.rb +0 -12
  290. 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: c38be262cc3a4dc4f6b1e2d1460d3cb2b142344baf377b2a8d53c79d53fa1f07
4
- data.tar.gz: 556fe484b4d210efca47eb4c81ee54d25757cd2147ae786a9f2fb4ca5223ba4d
3
+ metadata.gz: d00b806f9b9500786f247d6bc2f3829dd1b5d7032cbcce9f22671b99e84d99d8
4
+ data.tar.gz: ebd9c2c6b8c6294aa81ff2e55ad93214504c4c879836fb1364b905aa4a0d9ce3
5
5
  SHA512:
6
- metadata.gz: d50f3b8ef80d714f550a7f371d6da48d19af260bd34af5f6e5bab56bfa972660af54846d5cd3187bf97631369aeb89f3691ee2c41bd64f1ea687117d9a4d76ae
7
- data.tar.gz: c3e844763ed52eb64ad0c86bd9181c0aa88b6d1c9a55e32b0a4ed253141d914e006c9113ba0408df36c06795ee121c91414186a9445c73513009e7d77167f4cf
6
+ metadata.gz: adbbac93cfcae848b630824d23de5a820886258d24d553f7dc7baebbb39393c44a9795dd3c7f638d2fe92b05ec51b60f5d4c8255b63db73d90781fdc4451d804
7
+ data.tar.gz: 660b4394a6ab29f5e51223b5fe131518713d9148f5c4c23a04383e660ec7bf630eb46ac43fe30ee5e59cbe45419b87d28951c898e33394e6ab486ea2f0bb58d0
@@ -0,0 +1,4 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: thooams
4
+ patreon: user?u=8672183
@@ -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.6
15
+ - name: Set up Ruby 2.7
16
16
  uses: actions/setup-ruby@v1
17
17
  with:
18
- ruby-version: 2.6.x
18
+ ruby-version: 2.7.x
19
19
  - name: Build and test with Rake
20
20
  run: |
21
21
  gem install bundler
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/
@@ -1,10 +1,14 @@
1
- inherit_from: .rubocop_todo.yml
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
- TargetRubyVersion: 2.3
10
+ TargetRubyVersion: 2.7
11
+ NewCops: enable
8
12
 
9
13
  Lint/UselessAssignment:
10
14
  Enabled: true
@@ -23,6 +27,11 @@ Style/FormatString:
23
27
  Exclude:
24
28
  - 'config/initializers/will_paginate.rb'
25
29
 
30
+ Style/StringLiterals:
31
+ Enabled: true
32
+ Exclude:
33
+ - 'test/**/**/**/**/*'
34
+
26
35
  Style/ClassAndModuleChildren:
27
36
  Enabled: false
28
37
 
@@ -50,3 +59,117 @@ Metrics/ModuleLength:
50
59
  # SupportedStyles: annotated, template, unannotated
51
60
  Style/FormatStringToken:
52
61
  EnforcedStyle: unannotated
62
+
63
+ Layout/SpaceAroundMethodCallOperator:
64
+ Enabled: true
65
+
66
+ Lint/RaiseException:
67
+ Enabled: true
68
+
69
+ Lint/StructNewOverride:
70
+ Enabled: true
71
+
72
+ Style/ExponentialNotation:
73
+ Enabled: true
74
+
75
+ Layout/EmptyLinesAroundAttributeAccessor:
76
+ Enabled: true
77
+
78
+ Lint/DeprecatedOpenSSLConstant:
79
+ Enabled: true
80
+
81
+ Lint/MixedRegexpCaptureTypes:
82
+ Enabled: true
83
+
84
+ Style/RedundantRegexpCharacterClass:
85
+ Enabled: true
86
+
87
+ Style/RedundantRegexpEscape:
88
+ Enabled: true
89
+
90
+ Style/SlicingWithRange:
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
@@ -0,0 +1 @@
1
+ ui-bibz
@@ -0,0 +1 @@
1
+ ruby-2.7.1
data/Gemfile CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  source 'https://rubygems.org'
4
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
4
5
 
5
6
  # Declare your gem's dependencies in ui_bibz.gemspec.
6
7
  # Bundler will treat runtime dependencies like base dependencies, and
@@ -1,14 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ui_bibz (2.5.1)
5
- bootstrap (= 4.4.1)
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.alpha2)
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,76 +10,81 @@ PATH
16
10
  GEM
17
11
  remote: https://rubygems.org/
18
12
  specs:
19
- actioncable (5.2.4.2)
20
- actionpack (= 5.2.4.2)
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
- actionmailer (5.2.4.2)
24
- actionpack (= 5.2.4.2)
25
- actionview (= 5.2.4.2)
26
- activejob (= 5.2.4.2)
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)
23
+ mail (>= 2.7.1)
24
+ actionmailer (6.0.3.4)
25
+ actionpack (= 6.0.3.4)
26
+ actionview (= 6.0.3.4)
27
+ activejob (= 6.0.3.4)
27
28
  mail (~> 2.5, >= 2.5.4)
28
29
  rails-dom-testing (~> 2.0)
29
- actionpack (5.2.4.2)
30
- actionview (= 5.2.4.2)
31
- activesupport (= 5.2.4.2)
30
+ actionpack (6.0.3.4)
31
+ actionview (= 6.0.3.4)
32
+ activesupport (= 6.0.3.4)
32
33
  rack (~> 2.0, >= 2.0.8)
33
34
  rack-test (>= 0.6.3)
34
35
  rails-dom-testing (~> 2.0)
35
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
36
- actionview (5.2.4.2)
37
- activesupport (= 5.2.4.2)
36
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
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)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.0.3.4)
44
+ activesupport (= 6.0.3.4)
38
45
  builder (~> 3.1)
39
46
  erubi (~> 1.4)
40
47
  rails-dom-testing (~> 2.0)
41
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
42
- activejob (5.2.4.2)
43
- activesupport (= 5.2.4.2)
48
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
+ activejob (6.0.3.4)
50
+ activesupport (= 6.0.3.4)
44
51
  globalid (>= 0.3.6)
45
- activemodel (5.2.4.2)
46
- activesupport (= 5.2.4.2)
47
- activerecord (5.2.4.2)
48
- activemodel (= 5.2.4.2)
49
- activesupport (= 5.2.4.2)
50
- arel (>= 9.0)
51
- activestorage (5.2.4.2)
52
- actionpack (= 5.2.4.2)
53
- activerecord (= 5.2.4.2)
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)
54
61
  marcel (~> 0.3.1)
55
- activesupport (5.2.4.2)
62
+ activesupport (6.0.3.4)
56
63
  concurrent-ruby (~> 1.0, >= 1.0.2)
57
64
  i18n (>= 0.7, < 2)
58
65
  minitest (~> 5.1)
59
66
  tzinfo (~> 1.1)
60
- arel (9.0.0)
61
- ast (2.4.0)
62
- autoprefixer-rails (9.7.4)
63
- execjs
67
+ zeitwerk (~> 2.2, >= 2.2.2)
68
+ ast (2.4.1)
64
69
  awesome_print (1.8.0)
65
- bootstrap (4.4.1)
66
- autoprefixer-rails (>= 9.1.0)
67
- popper_js (>= 1.14.3, < 2)
68
- sassc-rails (>= 2.0.0)
69
70
  builder (3.2.4)
70
- byebug (11.1.1)
71
- childprocess (3.0.0)
71
+ byebug (11.1.3)
72
+ childprocess (4.0.0)
72
73
  codeclimate-test-reporter (1.0.7)
73
74
  simplecov
74
- concurrent-ruby (1.1.6)
75
+ concurrent-ruby (1.1.7)
75
76
  crass (1.0.6)
76
77
  docile (1.3.2)
77
78
  erubi (1.9.0)
78
79
  erubis (2.7.0)
79
- execjs (2.7.0)
80
80
  factory_bot (4.11.1)
81
81
  activesupport (>= 3.0.0)
82
82
  factory_bot_rails (4.11.1)
83
83
  factory_bot (~> 4.11.1)
84
84
  railties (>= 3.0.0)
85
- ffi (1.12.2)
86
85
  globalid (0.4.2)
87
86
  activesupport (>= 4.2.0)
88
- haml (5.1.2)
87
+ haml (5.2.0)
89
88
  temple (>= 0.8.0)
90
89
  tilt
91
90
  haml-rails (2.0.1)
@@ -99,15 +98,14 @@ GEM
99
98
  haml (>= 4.0, < 6)
100
99
  nokogiri (>= 1.6.0)
101
100
  ruby_parser (~> 3.5)
102
- i18n (1.8.2)
101
+ i18n (1.8.5)
103
102
  concurrent-ruby (~> 1.0)
104
103
  iniparse (1.5.0)
105
- jaro_winkler (1.5.4)
106
- jquery-rails (4.3.5)
104
+ jquery-rails (4.4.0)
107
105
  rails-dom-testing (>= 1, < 3)
108
106
  railties (>= 4.2.0)
109
107
  thor (>= 0.14, < 2.0)
110
- loofah (2.4.0)
108
+ loofah (2.7.0)
111
109
  crass (~> 1.0.2)
112
110
  nokogiri (>= 1.5.9)
113
111
  mail (2.7.1)
@@ -115,83 +113,87 @@ GEM
115
113
  marcel (0.3.3)
116
114
  mimemagic (~> 0.3.2)
117
115
  method_source (1.0.0)
118
- mimemagic (0.3.4)
116
+ mimemagic (0.3.5)
119
117
  mini_mime (1.0.2)
120
118
  mini_portile2 (2.4.0)
121
- minitest (5.14.0)
122
- nio4r (2.5.2)
123
- nokogiri (1.10.9)
119
+ minitest (5.14.2)
120
+ nio4r (2.5.4)
121
+ nokogiri (1.10.10)
124
122
  mini_portile2 (~> 2.4.0)
125
- overcommit (0.52.1)
126
- childprocess (>= 0.6.3, < 4)
123
+ overcommit (0.57.0)
124
+ childprocess (>= 0.6.3, < 5)
127
125
  iniparse (~> 1.4)
128
- parallel (1.19.1)
129
- parser (2.7.0.4)
130
- ast (~> 2.4.0)
131
- popper_js (1.16.0)
132
- 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)
133
130
  rack-test (1.1.0)
134
131
  rack (>= 1.0, < 3)
135
- rails (5.2.4.2)
136
- actioncable (= 5.2.4.2)
137
- actionmailer (= 5.2.4.2)
138
- actionpack (= 5.2.4.2)
139
- actionview (= 5.2.4.2)
140
- activejob (= 5.2.4.2)
141
- activemodel (= 5.2.4.2)
142
- activerecord (= 5.2.4.2)
143
- activestorage (= 5.2.4.2)
144
- activesupport (= 5.2.4.2)
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)
145
144
  bundler (>= 1.3.0)
146
- railties (= 5.2.4.2)
145
+ railties (= 6.0.3.4)
147
146
  sprockets-rails (>= 2.0.0)
148
147
  rails-dom-testing (2.0.3)
149
148
  activesupport (>= 4.2.0)
150
149
  nokogiri (>= 1.6)
151
150
  rails-html-sanitizer (1.3.0)
152
151
  loofah (~> 2.3)
153
- railties (5.2.4.2)
154
- actionpack (= 5.2.4.2)
155
- activesupport (= 5.2.4.2)
152
+ railties (6.0.3.4)
153
+ actionpack (= 6.0.3.4)
154
+ activesupport (= 6.0.3.4)
156
155
  method_source
157
156
  rake (>= 0.8.7)
158
- thor (>= 0.19.0, < 2.0)
157
+ thor (>= 0.20.3, < 2.0)
159
158
  rainbow (3.0.0)
160
159
  rake (13.0.1)
160
+ regexp_parser (1.8.2)
161
161
  rexml (3.2.4)
162
- rubocop (0.80.1)
163
- jaro_winkler (~> 1.5.1)
162
+ rubocop (0.93.1)
164
163
  parallel (~> 1.10)
165
- parser (>= 2.7.0.1)
164
+ parser (>= 2.7.1.5)
166
165
  rainbow (>= 2.2.2, < 4.0)
166
+ regexp_parser (>= 1.8)
167
167
  rexml
168
+ rubocop-ast (>= 0.6.0)
168
169
  ruby-progressbar (~> 1.7)
169
- unicode-display_width (>= 1.4.0, < 1.7)
170
+ unicode-display_width (>= 1.4.0, < 2.0)
171
+ rubocop-ast (0.8.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)
170
182
  ruby-progressbar (1.10.1)
171
- ruby_parser (3.14.2)
183
+ ruby_parser (3.15.0)
172
184
  sexp_processor (~> 4.9)
173
- sass-rails (6.0.0)
174
- sassc-rails (~> 2.1, >= 2.1.1)
175
- sassc (2.2.1)
176
- ffi (~> 1.9)
177
- sassc-rails (2.1.2)
178
- railties (>= 4.0.0)
179
- sassc (>= 2.0)
180
- sprockets (> 3.0)
181
- sprockets-rails
182
- tilt
183
- sexp_processor (4.14.1)
184
- simple_form (5.0.2)
185
+ sexp_processor (4.15.1)
186
+ simple_form (5.0.3)
185
187
  actionpack (>= 5.0)
186
188
  activemodel (>= 5.0)
187
- simplecov (0.18.5)
189
+ simplecov (0.19.0)
188
190
  docile (~> 1.1)
189
191
  simplecov-html (~> 0.11)
190
- simplecov-html (0.12.2)
191
- sprockets (3.7.2)
192
+ simplecov-html (0.12.3)
193
+ sprockets (4.0.2)
192
194
  concurrent-ruby (~> 1.0)
193
195
  rack (> 1, < 3)
194
- sprockets-rails (3.2.1)
196
+ sprockets-rails (3.2.2)
195
197
  actionpack (>= 4.0)
196
198
  activesupport (>= 4.0)
197
199
  sprockets (>= 3.0.0)
@@ -200,16 +202,17 @@ GEM
200
202
  thor (1.0.1)
201
203
  thread_safe (0.3.6)
202
204
  tilt (2.0.10)
203
- tzinfo (1.2.6)
205
+ tzinfo (1.2.7)
204
206
  thread_safe (~> 0.1)
205
- unicode-display_width (1.6.1)
206
- websocket-driver (0.7.1)
207
+ unicode-display_width (1.7.0)
208
+ websocket-driver (0.7.3)
207
209
  websocket-extensions (>= 0.1.0)
208
- websocket-extensions (0.1.4)
210
+ websocket-extensions (0.1.5)
209
211
  will-paginate-i18n (0.1.15)
210
212
  will_paginate (3.1.8)
211
213
  will_paginate-bootstrap4 (0.2.2)
212
214
  will_paginate (~> 3.0, >= 3.0.0)
215
+ zeitwerk (2.4.0)
213
216
 
214
217
  PLATFORMS
215
218
  ruby
@@ -219,14 +222,18 @@ DEPENDENCIES
219
222
  byebug
220
223
  codeclimate-test-reporter
221
224
  factory_bot_rails (~> 4.0)
225
+ haml-rails
222
226
  jquery-rails (>= 3.1.0)
223
227
  minitest
224
228
  overcommit
225
229
  rubocop
230
+ rubocop-minitest
231
+ rubocop-performance
232
+ rubocop-rails
226
233
  simple_form
227
234
  simplecov
228
235
  sqlite3
229
236
  ui_bibz!
230
237
 
231
238
  BUNDLED WITH
232
- 2.1.2
239
+ 2.1.4