elabs 4.0.0 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (313) hide show
  1. checksums.yaml +4 -4
  2. data/.gitlab-ci.yml +9 -0
  3. data/.node-version +1 -1
  4. data/.rubocop.yml +4 -0
  5. data/.stylelintrc.yml +12 -2
  6. data/CHANGELOG.md +81 -12
  7. data/Gemfile +1 -1
  8. data/Gemfile.lock +96 -94
  9. data/README.md +2 -0
  10. data/ROADMAP.md +4 -2
  11. data/app/assets/config/elabs_manifest.js +2 -1
  12. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.eot +0 -0
  13. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.svg +1148 -0
  14. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.ttf +0 -0
  15. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff +0 -0
  16. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff2 +0 -0
  17. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.eot +0 -0
  18. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.svg +467 -0
  19. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.ttf +0 -0
  20. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff +0 -0
  21. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff2 +0 -0
  22. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.eot +0 -0
  23. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.svg +2231 -0
  24. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.ttf +0 -0
  25. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff +0 -0
  26. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff2 +0 -0
  27. data/app/assets/fonts/elabs/OpenSans/Apache License.txt +201 -0
  28. data/app/assets/fonts/elabs/OpenSans/OpenSans-Bold.ttf +0 -0
  29. data/app/assets/fonts/elabs/OpenSans/OpenSans-Light.ttf +0 -0
  30. data/app/assets/fonts/elabs/OpenSans/OpenSans-Regular.ttf +0 -0
  31. data/app/assets/fonts/elabs/OpenSans/OpenSans-Semibold.ttf +0 -0
  32. data/app/assets/fonts/elabs/license-icons/license-icons.eot +0 -0
  33. data/app/assets/fonts/elabs/license-icons/license-icons.svg +51 -0
  34. data/app/assets/fonts/elabs/license-icons/license-icons.ttf +0 -0
  35. data/app/assets/fonts/elabs/license-icons/license-icons.woff +0 -0
  36. data/app/assets/fonts/elabs/license-icons/license-icons.woff2 +0 -0
  37. data/app/assets/images/elabs/preview_placeholder.png +0 -0
  38. data/app/assets/images/elabs/preview_placeholder_nsfw.png +0 -0
  39. data/app/assets/javascripts/elabs/announcements.js +33 -0
  40. data/app/assets/javascripts/elabs/application.js.erb +17 -14
  41. data/app/assets/javascripts/elabs/forms.js +0 -1
  42. data/app/assets/javascripts/elabs/helpers-markdown.js +2 -2
  43. data/app/assets/javascripts/elabs/helpers.js +17 -0
  44. data/app/assets/javascripts/elabs/menu.js +5 -0
  45. data/app/assets/stylesheets/elabs/_fonts.scss +32 -0
  46. data/app/assets/stylesheets/elabs/_variables.scss +286 -5
  47. data/app/assets/stylesheets/elabs/app/components/_act.scss +83 -0
  48. data/app/assets/stylesheets/elabs/app/components/_announcement.scss +41 -0
  49. data/app/assets/stylesheets/elabs/app/components/_classifier_types.scss +43 -0
  50. data/app/assets/stylesheets/elabs/app/components/_comment.scss +29 -0
  51. data/app/assets/stylesheets/elabs/app/components/_content_relations.scss +53 -0
  52. data/app/assets/stylesheets/elabs/app/components/_content_statuses.scss +39 -0
  53. data/app/assets/stylesheets/elabs/app/components/_content_types.scss +41 -0
  54. data/app/assets/stylesheets/elabs/app/components/_git_cards.scss +122 -0
  55. data/app/assets/stylesheets/elabs/app/elements/_alerts.scss +3 -0
  56. data/app/assets/stylesheets/elabs/app/elements/_badges.scss +17 -0
  57. data/app/assets/stylesheets/elabs/app/elements/_buttons.scss +34 -0
  58. data/app/assets/stylesheets/elabs/app/elements/_dropdowns.scss +78 -0
  59. data/app/assets/stylesheets/elabs/app/elements/_empty.scss +31 -0
  60. data/app/assets/stylesheets/elabs/app/elements/_errors.scss +15 -0
  61. data/app/assets/stylesheets/elabs/app/elements/_filter_link.scss +23 -0
  62. data/app/assets/stylesheets/elabs/app/elements/_fixed_links.scss +19 -0
  63. data/app/assets/stylesheets/elabs/app/elements/_forms.scss +123 -0
  64. data/app/assets/stylesheets/elabs/app/elements/_icons.scss +74 -0
  65. data/app/assets/stylesheets/elabs/app/{_medias.scss → elements/_medias.scss} +2 -0
  66. data/app/assets/stylesheets/elabs/app/{_modals.scss → elements/_modals.scss} +8 -4
  67. data/app/assets/stylesheets/elabs/app/elements/_nsfw.scss +41 -0
  68. data/app/assets/stylesheets/elabs/app/{_pagination.scss → elements/_pagination.scss} +0 -0
  69. data/app/assets/stylesheets/elabs/app/{_tables.scss → elements/_tables.scss} +2 -2
  70. data/app/assets/stylesheets/elabs/app/elements/_tabs.scss +73 -0
  71. data/app/assets/stylesheets/elabs/app/helpers/_cards.scss +80 -0
  72. data/app/assets/stylesheets/elabs/app/helpers/_containers.scss +7 -0
  73. data/app/assets/stylesheets/elabs/app/helpers/_states.scss +3 -0
  74. data/app/assets/stylesheets/elabs/app/{_helpers.scss → helpers/_typo.scss} +6 -4
  75. data/app/assets/stylesheets/elabs/app/layouts/_acts.scss +25 -0
  76. data/app/assets/stylesheets/elabs/app/layouts/_classifiers.scss +32 -0
  77. data/app/assets/stylesheets/elabs/app/{_comments.scss → layouts/_comments.scss} +0 -2
  78. data/app/assets/stylesheets/elabs/app/layouts/_devise.scss +65 -0
  79. data/app/assets/stylesheets/elabs/app/layouts/_layout.scss +40 -0
  80. data/app/assets/stylesheets/elabs/app/layouts/_page.scss +14 -0
  81. data/app/assets/stylesheets/elabs/app/layouts/_page_content.scss +13 -0
  82. data/app/assets/stylesheets/elabs/app/layouts/_page_footer.scss +20 -0
  83. data/app/assets/stylesheets/elabs/app/layouts/_page_header.scss +146 -0
  84. data/app/assets/stylesheets/elabs/app/layouts/_page_menu.scss +232 -0
  85. data/app/assets/stylesheets/elabs/app/layouts/_page_messages.scss +4 -0
  86. data/app/assets/stylesheets/elabs/app/layouts/_private_layout.scss +78 -0
  87. data/app/assets/stylesheets/elabs/app/{_typo.scss → layouts/_typo.scss} +3 -0
  88. data/app/assets/stylesheets/elabs/app/mixins/_classifier_card.scss +43 -0
  89. data/app/assets/stylesheets/elabs/app/mixins/_content_card.scss +103 -0
  90. data/app/assets/stylesheets/elabs/app/mixins/_content_full.scss +158 -0
  91. data/app/assets/stylesheets/elabs/app/mixins/{_content-inline.scss → _content_inline.scss} +0 -0
  92. data/app/assets/stylesheets/elabs/lib/_codemirror.scss +2 -2
  93. data/app/assets/stylesheets/elabs/{_colors.scss → lib/_colors_reference.scss} +0 -52
  94. data/app/assets/stylesheets/elabs/lib/_license_icons.scss +121 -0
  95. data/app/assets/stylesheets/elabs/lib/fontawesome/_fontawesome.scss +1 -1
  96. data/app/assets/stylesheets/elabs/lib/fontawesome/_fonts.scss +18 -18
  97. data/app/assets/stylesheets/elabs/lib/knacss/_knacss.scss +1 -1
  98. data/app/assets/stylesheets/elabs/lib/knacss/_knacss_variables.scss +227 -0
  99. data/app/assets/stylesheets/elabs/style.scss +62 -57
  100. data/app/controllers/elabs/admin/admin_application_controller.rb +1 -1
  101. data/app/controllers/elabs/admin/announcements_controller.rb +71 -0
  102. data/app/controllers/elabs/concerns/elabs_controller.rb +3 -0
  103. data/app/controllers/elabs/content_application_controller.rb +4 -0
  104. data/app/controllers/elabs/elabs_public_controller.rb +15 -0
  105. data/app/controllers/elabs/languages_controller.rb +1 -5
  106. data/app/controllers/elabs/member/comments_controller.rb +42 -0
  107. data/app/controllers/elabs/member/member_application_controller.rb +1 -1
  108. data/app/controllers/elabs/reports_controller.rb +2 -0
  109. data/app/helpers/elabs/acts_helper.rb +7 -2
  110. data/app/helpers/elabs/application_helper.rb +8 -50
  111. data/app/helpers/elabs/content_filters_helper.rb +17 -24
  112. data/app/helpers/elabs/content_helper.rb +8 -35
  113. data/app/helpers/elabs/content_renderer_helper.rb +4 -112
  114. data/app/helpers/elabs/form_helper.rb +11 -11
  115. data/app/helpers/elabs/icons_helper.rb +63 -0
  116. data/app/helpers/elabs/{admin_content_helper.rb → links_admin_helper.rb} +1 -1
  117. data/app/helpers/elabs/links_helper.rb +58 -0
  118. data/app/helpers/elabs/{member_content_helper.rb → links_member_helper.rb} +2 -2
  119. data/app/helpers/elabs/notification_helper.rb +17 -3
  120. data/app/helpers/elabs/shortcodes_helper.rb +108 -0
  121. data/app/helpers/elabs/thumbnails_helper.rb +1 -1
  122. data/app/models/elabs/album.rb +14 -0
  123. data/app/models/elabs/announcement.rb +33 -0
  124. data/app/models/elabs/article.rb +14 -0
  125. data/app/models/elabs/comment.rb +10 -4
  126. data/app/models/elabs/note.rb +14 -0
  127. data/app/models/elabs/project.rb +12 -0
  128. data/app/models/elabs/report.rb +1 -0
  129. data/app/models/elabs/upload.rb +16 -0
  130. data/app/models/elabs/user.rb +2 -1
  131. data/app/views/elabs/acts/_filters.html.haml +3 -2
  132. data/app/views/elabs/acts/index.html.haml +2 -13
  133. data/app/views/elabs/admin/announcements/_announcement.json.jbuilder +10 -0
  134. data/app/views/elabs/admin/announcements/_form.html.haml +52 -0
  135. data/app/views/elabs/admin/announcements/edit.html.haml +3 -0
  136. data/app/views/elabs/admin/announcements/index.html.haml +28 -0
  137. data/app/views/elabs/admin/announcements/index.json.jbuilder +1 -0
  138. data/app/views/elabs/admin/announcements/new.html.haml +3 -0
  139. data/app/views/elabs/admin/licenses/index.html.haml +2 -2
  140. data/app/views/elabs/admin/uploads/_upload.json.jbuilder +3 -3
  141. data/app/views/elabs/albums/_card_content.html.haml +8 -0
  142. data/app/views/elabs/albums/_filters.html.haml +5 -3
  143. data/app/views/elabs/albums/index.html.haml +1 -1
  144. data/app/views/elabs/albums/show.html.haml +38 -29
  145. data/app/views/elabs/articles/_filters.html.haml +5 -3
  146. data/app/views/elabs/articles/index.html.haml +1 -1
  147. data/app/views/elabs/articles/show.html.haml +33 -25
  148. data/app/views/elabs/auth/confirmations/new.html.haml +1 -1
  149. data/app/views/elabs/auth/passwords/edit.html.haml +1 -1
  150. data/app/views/elabs/auth/passwords/new.html.haml +1 -1
  151. data/app/views/elabs/auth/registrations/new.html.haml +7 -2
  152. data/app/views/elabs/auth/sessions/_new.html.haml +1 -1
  153. data/app/views/elabs/auth/unlocks/new.html.haml +1 -1
  154. data/app/views/elabs/comments/_comments.html.haml +29 -20
  155. data/app/views/elabs/comments/_form.html.haml +40 -36
  156. data/app/views/elabs/languages/_filters.html.haml +3 -5
  157. data/app/views/elabs/languages/index.html.haml +12 -13
  158. data/app/views/elabs/languages/show.html.haml +36 -31
  159. data/app/views/elabs/layouts/_announcements.html.haml +9 -0
  160. data/app/views/elabs/layouts/_content_associations.html.haml +89 -0
  161. data/app/views/elabs/layouts/_content_card.html.haml +41 -0
  162. data/app/views/elabs/layouts/_flash_messages.html.haml +4 -0
  163. data/app/views/elabs/layouts/_footer.html.haml +18 -10
  164. data/app/views/elabs/layouts/_form_honeypot.html.haml +12 -0
  165. data/app/views/elabs/layouts/_hidden_entry.html.haml +1 -1
  166. data/app/views/elabs/layouts/_hidden_entry_full.html.haml +4 -2
  167. data/app/views/elabs/layouts/_hidden_entry_inline.html.haml +1 -1
  168. data/app/views/elabs/layouts/_language_menu.html.haml +2 -2
  169. data/app/views/elabs/layouts/_menu.html.haml +58 -75
  170. data/app/views/elabs/layouts/_menu_admin.html.haml +40 -0
  171. data/app/views/elabs/layouts/_menu_member.html.haml +57 -0
  172. data/app/views/elabs/layouts/application.html.haml +24 -13
  173. data/app/views/elabs/layouts/application_admin.html.haml +33 -0
  174. data/app/views/elabs/layouts/application_member.html.haml +36 -0
  175. data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_albums.html.haml +0 -0
  176. data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_projects.html.haml +0 -0
  177. data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_tags.html.haml +0 -0
  178. data/app/views/elabs/layouts/{_shortcode_infinite_loop.html.haml → shortcodes/_infinite_loop.html.haml} +1 -1
  179. data/app/views/elabs/layouts/{_shortcode_infinite_loop_inline.html.haml → shortcodes/_infinite_loop_inline.html.haml} +0 -0
  180. data/app/views/elabs/layouts/{_shortcode_missing_content.html.haml → shortcodes/_missing_content.html.haml} +1 -1
  181. data/app/views/elabs/layouts/{_shortcode_missing_content_inline.html.haml → shortcodes/_missing_content_inline.html.haml} +0 -0
  182. data/app/views/elabs/layouts/shortcodes/_open_to_see.html.haml +2 -0
  183. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_card.html.haml +1 -1
  184. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_inline.html.haml +0 -0
  185. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_user_card.html.haml +0 -0
  186. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_group_card.html.haml +1 -1
  187. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_card.html.haml +1 -1
  188. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_inline.html.haml +0 -0
  189. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_user_card.html.haml +1 -1
  190. data/app/views/elabs/layouts/shortcodes/widgets/vue/_all_widgets.html.haml +5 -0
  191. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_repo_card_vue.html.haml +8 -8
  192. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_user_card_vue.html.haml +5 -5
  193. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_group_card_vue.html.haml +5 -5
  194. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_repo_card_vue.html.haml +8 -8
  195. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_user_card_vue.html.haml +4 -4
  196. data/app/views/elabs/licenses/_filters.html.haml +3 -2
  197. data/app/views/elabs/licenses/index.html.haml +14 -12
  198. data/app/views/elabs/licenses/show.html.haml +40 -34
  199. data/app/views/elabs/member/albums/_form.html.haml +1 -43
  200. data/app/views/elabs/member/articles/_form.html.haml +1 -39
  201. data/app/views/elabs/member/layouts/_form_commons.html.haml +55 -0
  202. data/app/views/elabs/member/notes/_form.html.haml +1 -39
  203. data/app/views/elabs/member/preferences/edit.html.haml +1 -2
  204. data/app/views/elabs/member/projects/_form.html.haml +3 -38
  205. data/app/views/elabs/member/uploads/_form.html.haml +1 -42
  206. data/app/views/elabs/member/uploads/_upload.json.jbuilder +3 -3
  207. data/app/views/elabs/member/users/edit.html.haml +3 -4
  208. data/app/views/elabs/notes/_filters.html.haml +5 -3
  209. data/app/views/elabs/notes/index.html.haml +1 -1
  210. data/app/views/elabs/notes/show.html.haml +33 -25
  211. data/app/views/elabs/projects/_filters.html.haml +5 -3
  212. data/app/views/elabs/projects/index.html.haml +1 -1
  213. data/app/views/elabs/projects/show.html.haml +68 -62
  214. data/app/views/elabs/reports/_form.html.haml +2 -0
  215. data/app/views/elabs/tags/_filters.html.haml +3 -2
  216. data/app/views/elabs/tags/index.html.haml +11 -11
  217. data/app/views/elabs/tags/show.html.haml +31 -28
  218. data/app/views/elabs/uploads/_filters.html.haml +5 -3
  219. data/app/views/elabs/uploads/_preview.html.haml +5 -4
  220. data/app/views/elabs/uploads/_thumbnail.html.haml +9 -0
  221. data/app/views/elabs/uploads/_upload.json.jbuilder +3 -3
  222. data/app/views/elabs/uploads/index.html.haml +1 -1
  223. data/app/views/elabs/uploads/show.html.haml +45 -39
  224. data/app/views/elabs/users/_filters.html.haml +3 -2
  225. data/app/views/elabs/users/_user.html.haml +3 -3
  226. data/app/views/elabs/users/show.html.haml +48 -43
  227. data/config/routes.rb +13 -8
  228. data/db/migrate/20181025084232_add_archived_field_to_comments.rb +5 -0
  229. data/db/migrate/20181026071743_delete_comment_notifications.rb +5 -0
  230. data/db/migrate/20181030063505_create_announcements.rb +14 -0
  231. data/docs/CODEOWNERS +10 -0
  232. data/docs/migrating.md +16 -1
  233. data/docs/shortcodes_guide.md +51 -0
  234. data/lib/assets/javascripts/README-highlight.js.md +5 -5
  235. data/lib/assets/javascripts/highlight.js-9.13.1/highlight.pack.js +2 -0
  236. data/lib/assets/stylesheets/{highlight.js-9.12.0 → highlight.js-9.13.1}/styles/atelier-sulphurpool-light.css +0 -0
  237. data/lib/elabs.rb +8 -0
  238. data/lib/elabs/version.rb +1 -1
  239. data/lib/generators/elabs/{devise_views_generator.rb → devise_mailer_views_generator.rb} +2 -2
  240. data/lib/generators/elabs/images_generator.rb +24 -0
  241. data/lib/generators/elabs/required_assets_generator.rb +0 -2
  242. data/lib/generators/templates/elabs.rb +3 -0
  243. data/locale/app.pot +132 -19
  244. data/locale/en/app.edit.po +130 -17
  245. data/locale/en/app.po +130 -17
  246. data/locale/fr/app.edit.po +145 -28
  247. data/locale/fr/app.po +141 -27
  248. data/package.json +10 -12
  249. data/yarn.lock +885 -668
  250. metadata +136 -97
  251. data/app/assets/stylesheets/elabs/_icons.scss +0 -17
  252. data/app/assets/stylesheets/elabs/app/_acts.scss +0 -69
  253. data/app/assets/stylesheets/elabs/app/_alerts.scss +0 -3
  254. data/app/assets/stylesheets/elabs/app/_badges.scss +0 -11
  255. data/app/assets/stylesheets/elabs/app/_buttons.scss +0 -29
  256. data/app/assets/stylesheets/elabs/app/_content.scss +0 -25
  257. data/app/assets/stylesheets/elabs/app/_content_statuses.scss +0 -32
  258. data/app/assets/stylesheets/elabs/app/_content_uploads.scss +0 -39
  259. data/app/assets/stylesheets/elabs/app/_empty.scss +0 -19
  260. data/app/assets/stylesheets/elabs/app/_errors.scss +0 -9
  261. data/app/assets/stylesheets/elabs/app/_filter_links.scss +0 -27
  262. data/app/assets/stylesheets/elabs/app/_forms.scss +0 -74
  263. data/app/assets/stylesheets/elabs/app/_languages.scss +0 -6
  264. data/app/assets/stylesheets/elabs/app/_layout.scss +0 -206
  265. data/app/assets/stylesheets/elabs/app/_licenses.scss +0 -6
  266. data/app/assets/stylesheets/elabs/app/_link-to-top.scss +0 -8
  267. data/app/assets/stylesheets/elabs/app/_tabs.scss +0 -54
  268. data/app/assets/stylesheets/elabs/app/_tags.scss +0 -6
  269. data/app/assets/stylesheets/elabs/app/_toolbars.scss +0 -3
  270. data/app/assets/stylesheets/elabs/app/_users.scss +0 -21
  271. data/app/assets/stylesheets/elabs/app/admin-members/_forms.scss +0 -13
  272. data/app/assets/stylesheets/elabs/app/admin-members/_indexes.scss +0 -46
  273. data/app/assets/stylesheets/elabs/app/admin-members/_layout.scss +0 -17
  274. data/app/assets/stylesheets/elabs/app/areas/_devise.scss +0 -31
  275. data/app/assets/stylesheets/elabs/app/components/_cards.scss +0 -16
  276. data/app/assets/stylesheets/elabs/app/components/_container.scss +0 -4
  277. data/app/assets/stylesheets/elabs/app/mixins/_classifier-card.scss +0 -16
  278. data/app/assets/stylesheets/elabs/app/mixins/_content-card.scss +0 -72
  279. data/app/assets/stylesheets/elabs/app/mixins/_content-full.scss +0 -77
  280. data/app/assets/stylesheets/elabs/app/widgets/_git-cards.scss +0 -88
  281. data/app/assets/stylesheets/elabs/lib/fontawesome/_icons.scss +0 -1118
  282. data/app/assets/stylesheets/elabs/lib/knacss/_knacss-variables.scss +0 -239
  283. data/app/views/elabs/albums/_album.html.haml +0 -38
  284. data/app/views/elabs/articles/_article.html.haml +0 -30
  285. data/app/views/elabs/languages/_associations.html.haml +0 -61
  286. data/app/views/elabs/layouts/_shortcode_open_to_see.html.haml +0 -2
  287. data/app/views/elabs/layouts/admin_application.html.haml +0 -21
  288. data/app/views/elabs/layouts/member_application.html.haml +0 -24
  289. data/app/views/elabs/layouts/widgets/vue/_all_widgets.html.haml +0 -5
  290. data/app/views/elabs/licenses/_associations.html.haml +0 -61
  291. data/app/views/elabs/notes/_note.html.haml +0 -31
  292. data/app/views/elabs/projects/_associations.html.haml +0 -54
  293. data/app/views/elabs/projects/_project.html.haml +0 -29
  294. data/app/views/elabs/tags/_associations.html.haml +0 -61
  295. data/app/views/elabs/uploads/_upload.html.haml +0 -41
  296. data/app/views/elabs/users/_associations.html.haml +0 -61
  297. data/db/seeds.rb +0 -10
  298. data/db/seeds_development.rb +0 -21
  299. data/db/seeds_production.rb +0 -0
  300. data/lib/assets/javascripts/codemirror-5.39.2/addon/mode/overlay.js +0 -90
  301. data/lib/assets/javascripts/codemirror-5.39.2/lib/codemirror.js +0 -9684
  302. data/lib/assets/javascripts/codemirror-5.39.2/mode/clike/clike.js +0 -834
  303. data/lib/assets/javascripts/codemirror-5.39.2/mode/css/css.js +0 -832
  304. data/lib/assets/javascripts/codemirror-5.39.2/mode/gfm/gfm.js +0 -129
  305. data/lib/assets/javascripts/codemirror-5.39.2/mode/htmlmixed/htmlmixed.js +0 -152
  306. data/lib/assets/javascripts/codemirror-5.39.2/mode/javascript/javascript.js +0 -896
  307. data/lib/assets/javascripts/codemirror-5.39.2/mode/markdown/markdown.js +0 -882
  308. data/lib/assets/javascripts/codemirror-5.39.2/mode/meta.js +0 -217
  309. data/lib/assets/javascripts/codemirror-5.39.2/mode/xml/xml.js +0 -402
  310. data/lib/assets/javascripts/highlight.js-9.12.0/highlight.pack.js +0 -2
  311. data/lib/assets/stylesheets/codemirror-5.39.2/lib/codemirror.css +0 -346
  312. data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-dark.css +0 -38
  313. data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-light.css +0 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75bab8c8f62a2628529aab8f110eacd5fc1408bc94a7f595e7174f20028e715b
4
- data.tar.gz: 1ba31dd537c39379523ae34aa4ed95b0557469d712af34b2d8ce422a75b51e32
3
+ metadata.gz: 96d9b9da1b647b7be83ed9bc4716f58a51d349da89f0de782e56051653babbf9
4
+ data.tar.gz: f77f787573d171e8a38b24b4c1f6e3f22868f3d95d5d279c48fc1da34991863b
5
5
  SHA512:
6
- metadata.gz: 3eb92ccbf84c2a6c94c58cf7edc5c431fa46a6108233d60dd989771a5818a8a4ac1f3fda7d94960302861e9ebf21ddd03a848b1cc201516b0a3fd8ed7d5d396e
7
- data.tar.gz: 04e89c6f2a90bef67578927f80087438f48f903e2263bdeadc43bceaf8bcdf9e7faaf5346f8803ae01572838fbb6c31cd1129304542a35e38c9b2ffc89f5e07b
6
+ metadata.gz: f582fb691ef01ef81eae2e178aa8ed9a571aae89ea61813426965beab27855e7fd977df5b30fb6c4c3f2b0e3383f7a72426e7f6a9ee305d79779ee0fd2f9a325
7
+ data.tar.gz: 6865bc19cded9c6fc7dbfc0aaea287f06ea7ab793aefc5dbf97272ed1467254329d23729354d2626e6afc65c196b85d9c938c35729144c8deae26dae9cebcfd5
@@ -17,6 +17,7 @@ stages:
17
17
  - prepare
18
18
  - code-lint
19
19
  - test
20
+ - dependencies-check
20
21
 
21
22
  bundle:
22
23
  stage: prepare
@@ -91,3 +92,11 @@ brakeman:
91
92
  - bundle exec brakeman
92
93
  dependencies:
93
94
  - bundle
95
+
96
+ bundle/outdated:
97
+ stage: dependencies-check
98
+ allow_failure: true
99
+ script:
100
+ - rm -rf .bundle
101
+ - bundle install
102
+ - bundle outdated --strict
@@ -1 +1 @@
1
- 8
1
+ 8.12.0
@@ -57,3 +57,7 @@ Style/ClassAndModuleChildren:
57
57
  Lint/UselessAssignment:
58
58
  Exclude:
59
59
  - spec/controllers/*.rb
60
+
61
+ Layout/AlignHash:
62
+ EnforcedColonStyle: table
63
+ EnforcedHashRocketStyle: table
@@ -1,4 +1,7 @@
1
1
  ---
2
+ ignoreFiles:
3
+ - app/assets/stylesheets/elabs/lib/fontawesome/_icons.scss
4
+ - app/assets/stylesheets/elabs/lib/knacss/_knacss_variables.scss
2
5
  plugins:
3
6
  - stylelint-scss
4
7
  rules:
@@ -158,7 +161,11 @@ rules:
158
161
  property-no-unknown: true
159
162
  property-no-vendor-prefix: true
160
163
  # property-whitelist: []
161
- rule-empty-line-before: always
164
+ rule-empty-line-before:
165
+ - always
166
+ - ignore:
167
+ - after-comment
168
+ # - after-rule: never
162
169
  selector-attribute-brackets-space-inside: never
163
170
  # selector-attribute-operator-blacklist: []
164
171
  selector-attribute-operator-space-after: never
@@ -184,7 +191,10 @@ rules:
184
191
  selector-max-id: 1
185
192
  selector-max-pseudo-class: 2
186
193
  # selector-max-specificity: 1,2,3
187
- selector-max-type: 1
194
+ selector-max-type:
195
+ - 1
196
+ - ignore:
197
+ - descendant
188
198
  selector-max-universal: 1
189
199
  selector-nested-pattern: ''
190
200
  selector-no-qualifying-type: true
@@ -1,6 +1,86 @@
1
1
  # Change Log
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ ## [5.0.0] - 2018-12-31 - Announcements, redesign
5
+
6
+ Updating to this version **breaks** the original style and layout.
7
+
8
+ ### Added
9
+
10
+ - New "license-icons" webfont to provide licenses icons.
11
+ - `icon` helper now have a new `pack` parameter, which allows to specify
12
+ a custom icon pack.
13
+ - A `elabs:images` generator has been added, to copy images for override
14
+ - Admins can make announces for specific targets (global, members or admins)
15
+ that are displayed in public and member layouts. Announcements are
16
+ dismissible, this information being stored in localStorage.
17
+ - A _really_ simple system to avoid dumb bots on comments and reports:
18
+ an additional field is added to the form, the user is asked to leave
19
+ it blank. The field is hidden by JS on page load, for people who use
20
+ JS everywhere. If the field is filled, a success message is displayed
21
+ but nothing is actually saved. This can be disabled with the
22
+ `Elabs:.trap_dumb_bots` option in the initializer.
23
+ - JS helpers: new `hasClass(element, className)` and
24
+ `toggleClass(element, className)` methods
25
+ - SCSS elements: ability to create dropdown menus
26
+
27
+ ### Changed
28
+
29
+ - DeviseViews generator is now DeviseMailerViews, as it's what it does.
30
+ - Helpers are split in more files for more sense.
31
+ - The way comment notifications are managed is changed: notification now
32
+ points to the comment. All existing comment notification are deleted.
33
+ - Shortcodes for content types and users now uses slugs
34
+
35
+ ### Improved
36
+
37
+ - Fonts an images are no longer in "public" folder. They have been moved
38
+ in `app/assets` and are now processed by the assets pipeline
39
+ - Shortcode helpers were improved, and tests are now more precise on the
40
+ shortcodes behaviors
41
+ - Cards for content types are now a generic partial. Edit
42
+ `layout/_content_card` to override it
43
+ - "Related content" areas with tabs are now a generic partial. Edit
44
+ `layout/_content_associations` to override them.
45
+ - Forms for content now have a `_form_commons` partial for generic inputs
46
+ - Comments:
47
+ - Comments can be archived and deleted
48
+ - Associated notification are removed on delete/archive
49
+ - Notifications links displays content title for comments notifications.
50
+ - Notifications are deleted when reports are destroyed
51
+ - All SCSS files are now sorted in better sub-folders:
52
+ - "app/admin-members" stays the same for now
53
+ - "app/components" for styles applied to whole _widgets_
54
+ - "app/elements" for standalone elements (i.e: button, form, badge,
55
+ ...)
56
+ - "app/helpers" for elements to be extended (i.e: `%clickable`
57
+ - "app/layout" for layout elements (i.e: pages, typo, ...)
58
+ - "app/mixins" stays the same.
59
+ - Overall style was enhanced:
60
+ - Responsive design
61
+ - More space around elements
62
+ - Dropdowns menu
63
+ - Popping panels
64
+ - ...
65
+ - Variables were extracted from SCSS components and put in a big
66
+ `_variables.scs` file
67
+ - Language page now only shows languages with content
68
+ - In "Related content" areas:
69
+ - the default tab is now the first with content
70
+ - the "Show all" link is disabled when there is no related content
71
+ - All Ruby and Node dependencies were updated
72
+
73
+ ### Removed
74
+
75
+ - Yarn command `sass:lint-fix` is no longer available: stylelint ignores
76
+ the inline "disable" rules when autofixing; resulting in a total mess
77
+ when executed.
78
+
79
+ ### Fixed
80
+
81
+ - Licenses icons are removed from `/licenses/xxx` page titles, so no
82
+ html is inserted in the layout title
83
+
4
84
  ## [4.0.0] - 2018-10-11 - RSS, slugs ans shortcodes
5
85
  ### Added
6
86
 
@@ -42,7 +122,7 @@ All notable changes to this project will be documented in this file.
42
122
  - languages/licenses/tags/users classifiers and their nested
43
123
  resources (i.e: `/languages/en/projects`)
44
124
  - albums/articles/notes/projects/uploads and projects nested resources
45
- - Customized datetime formats were added. Sadly, it' in yml files
125
+ - Customized datetime formats were added. Sadly, it's in yml files
46
126
  located in `config/locales/<lng>.yml` until we can export this to
47
127
  gettext.
48
128
 
@@ -146,17 +226,6 @@ All notable changes to this project will be documented in this file.
146
226
  return `:nothing` if content is already unpublished or locked.
147
227
  - Sort order in public views for users, tags, languages and licenses
148
228
 
149
- ## Planned
150
-
151
- Note that the elements in this list may change during development; it' a
152
- general idea of what will be done next.
153
- - [3.0.0] - Notifications
154
- - [4.0.0] - Urls table to attach urls to content, share favorites
155
- - [5.0.0] - Teams to attach user and distant people to projects
156
- - [6.0.0] - Projects: commits aggregation
157
- - [7.0.0] - Users: service status aggregation without storage for now
158
- - [8.0.0] - Raw content for everything
159
-
160
229
  ## [2.0.1] - 2018-09-10 - JSON views
161
230
  ### Added
162
231
 
data/Gemfile CHANGED
@@ -63,7 +63,7 @@ group :test do
63
63
  gem 'database_cleaner'
64
64
  # Factories
65
65
  gem 'factory_bot_rails'
66
- gem 'faker', git: 'https://github.com/el-cms/faker.git', branch: 'elabs'
66
+ gem 'faker', github: 'stympy/faker', ref: '42a51f9'
67
67
  # Linters
68
68
  gem 'haml_lint', require: false
69
69
  gem 'rubocop'
@@ -1,39 +1,39 @@
1
1
  GIT
2
- remote: https://github.com/el-cms/faker.git
3
- revision: b776fb025871d0bc9f38a32730d241cff8e159ab
4
- branch: elabs
2
+ remote: https://github.com/stympy/faker.git
3
+ revision: 42a51f9732a44805d02ee6295095f0e964f1706f
4
+ ref: 42a51f9
5
5
  specs:
6
- faker (1.8.7)
6
+ faker (1.9.1)
7
7
  i18n (>= 0.7)
8
8
 
9
9
  PATH
10
10
  remote: .
11
11
  specs:
12
- elabs (4.0.0)
12
+ elabs (5.0.0)
13
13
  rails (~> 5.2.1)
14
14
 
15
15
  GEM
16
16
  remote: https://rubygems.org/
17
17
  specs:
18
- actioncable (5.2.1)
19
- actionpack (= 5.2.1)
18
+ actioncable (5.2.2)
19
+ actionpack (= 5.2.2)
20
20
  nio4r (~> 2.0)
21
21
  websocket-driver (>= 0.6.1)
22
- actionmailer (5.2.1)
23
- actionpack (= 5.2.1)
24
- actionview (= 5.2.1)
25
- activejob (= 5.2.1)
22
+ actionmailer (5.2.2)
23
+ actionpack (= 5.2.2)
24
+ actionview (= 5.2.2)
25
+ activejob (= 5.2.2)
26
26
  mail (~> 2.5, >= 2.5.4)
27
27
  rails-dom-testing (~> 2.0)
28
- actionpack (5.2.1)
29
- actionview (= 5.2.1)
30
- activesupport (= 5.2.1)
28
+ actionpack (5.2.2)
29
+ actionview (= 5.2.2)
30
+ activesupport (= 5.2.2)
31
31
  rack (~> 2.0)
32
32
  rack-test (>= 0.6.3)
33
33
  rails-dom-testing (~> 2.0)
34
34
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
35
- actionview (5.2.1)
36
- activesupport (= 5.2.1)
35
+ actionview (5.2.2)
36
+ activesupport (= 5.2.2)
37
37
  builder (~> 3.1)
38
38
  erubi (~> 1.4)
39
39
  rails-dom-testing (~> 2.0)
@@ -41,20 +41,20 @@ GEM
41
41
  active_link_to (1.0.5)
42
42
  actionpack
43
43
  addressable
44
- activejob (5.2.1)
45
- activesupport (= 5.2.1)
44
+ activejob (5.2.2)
45
+ activesupport (= 5.2.2)
46
46
  globalid (>= 0.3.6)
47
- activemodel (5.2.1)
48
- activesupport (= 5.2.1)
49
- activerecord (5.2.1)
50
- activemodel (= 5.2.1)
51
- activesupport (= 5.2.1)
47
+ activemodel (5.2.2)
48
+ activesupport (= 5.2.2)
49
+ activerecord (5.2.2)
50
+ activemodel (= 5.2.2)
51
+ activesupport (= 5.2.2)
52
52
  arel (>= 9.0)
53
- activestorage (5.2.1)
54
- actionpack (= 5.2.1)
55
- activerecord (= 5.2.1)
53
+ activestorage (5.2.2)
54
+ actionpack (= 5.2.2)
55
+ activerecord (= 5.2.2)
56
56
  marcel (~> 0.3.1)
57
- activesupport (5.2.1)
57
+ activesupport (5.2.2)
58
58
  concurrent-ruby (~> 1.0, >= 1.0.2)
59
59
  i18n (>= 0.7, < 2)
60
60
  minitest (~> 5.1)
@@ -65,30 +65,31 @@ GEM
65
65
  io-like (~> 0.3.0)
66
66
  arel (9.0.0)
67
67
  ast (2.4.0)
68
- backports (3.11.3)
68
+ backports (3.11.4)
69
69
  bcrypt (3.1.12)
70
70
  bindex (0.5.0)
71
71
  brakeman (4.3.1)
72
72
  builder (3.2.3)
73
73
  byebug (10.0.2)
74
- capybara (3.6.0)
74
+ capybara (3.12.0)
75
75
  addressable
76
76
  mini_mime (>= 0.1.3)
77
77
  nokogiri (~> 1.8)
78
78
  rack (>= 1.6.0)
79
79
  rack-test (>= 0.6.3)
80
- xpath (~> 3.1)
81
- capybara-screenshot (1.0.21)
80
+ regexp_parser (~> 1.2)
81
+ xpath (~> 3.2)
82
+ capybara-screenshot (1.0.22)
82
83
  capybara (>= 1.0, < 4)
83
84
  launchy
84
85
  childprocess (0.9.0)
85
86
  ffi (~> 1.0, >= 1.0.11)
86
- chromedriver-helper (1.2.0)
87
+ chromedriver-helper (2.1.0)
87
88
  archive-zip (~> 0.10)
88
89
  nokogiri (~> 1.8)
89
- commonmarker (0.17.13)
90
+ commonmarker (0.18.2)
90
91
  ruby-enum (~> 0.5)
91
- concurrent-ruby (1.0.5)
92
+ concurrent-ruby (1.1.4)
92
93
  crass (1.0.4)
93
94
  cucumber (3.1.2)
94
95
  builder (>= 2.1.2)
@@ -99,10 +100,10 @@ GEM
99
100
  gherkin (~> 5.1.0)
100
101
  multi_json (>= 1.7.5, < 2.0)
101
102
  multi_test (>= 0.1.2)
102
- cucumber-core (3.2.0)
103
+ cucumber-core (3.2.1)
103
104
  backports (>= 3.8.0)
104
105
  cucumber-tag_expressions (~> 1.1.0)
105
- gherkin (>= 5.0.0)
106
+ gherkin (~> 5.0)
106
107
  cucumber-expressions (6.0.1)
107
108
  cucumber-rails (1.6.0)
108
109
  capybara (>= 1.1.2, < 4)
@@ -121,14 +122,14 @@ GEM
121
122
  warden (~> 1.2.3)
122
123
  diff-lcs (1.3)
123
124
  docile (1.3.1)
124
- erubi (1.7.1)
125
+ erubi (1.8.0)
125
126
  erubis (2.7.0)
126
- factory_bot (4.11.0)
127
+ factory_bot (4.11.1)
127
128
  activesupport (>= 3.0.0)
128
- factory_bot_rails (4.11.0)
129
- factory_bot (~> 4.11.0)
129
+ factory_bot_rails (4.11.1)
130
+ factory_bot (~> 4.11.1)
130
131
  railties (>= 3.0.0)
131
- fast_gettext (1.7.0)
132
+ fast_gettext (2.0.0)
132
133
  ffi (1.9.25)
133
134
  gettext (3.2.9)
134
135
  locale (>= 2.0.5)
@@ -158,11 +159,11 @@ GEM
158
159
  haml (>= 4.0, < 6)
159
160
  nokogiri (>= 1.6.0)
160
161
  ruby_parser (~> 3.5)
161
- i18n (1.1.0)
162
+ i18n (1.3.0)
162
163
  concurrent-ruby (~> 1.0)
163
164
  io-like (0.3.0)
164
165
  jaro_winkler (1.5.1)
165
- jbuilder (2.7.0)
166
+ jbuilder (2.8.0)
166
167
  activesupport (>= 4.2.0)
167
168
  multi_json (>= 1.2)
168
169
  json (2.1.0)
@@ -186,87 +187,88 @@ GEM
186
187
  rb-inotify (~> 0.9, >= 0.9.7)
187
188
  ruby_dep (~> 1.2)
188
189
  locale (2.1.2)
189
- loofah (2.2.2)
190
+ loofah (2.2.3)
190
191
  crass (~> 1.0.2)
191
192
  nokogiri (>= 1.5.9)
192
- mail (2.7.0)
193
+ mail (2.7.1)
193
194
  mini_mime (>= 0.1.1)
194
195
  marcel (0.3.3)
195
196
  mimemagic (~> 0.3.2)
196
- method_source (0.9.0)
197
+ method_source (0.9.2)
197
198
  mime-types (3.2.2)
198
199
  mime-types-data (~> 3.2015)
199
200
  mime-types-data (3.2018.0812)
200
- mimemagic (0.3.2)
201
- mini_magick (4.8.0)
201
+ mimemagic (0.3.3)
202
+ mini_magick (4.9.2)
202
203
  mini_mime (1.0.1)
203
- mini_portile2 (2.3.0)
204
- mini_racer (0.2.0)
204
+ mini_portile2 (2.4.0)
205
+ mini_racer (0.2.4)
205
206
  libv8 (>= 6.3)
206
207
  minitest (5.11.3)
207
208
  multi_json (1.13.1)
208
209
  multi_test (0.1.2)
209
210
  nio4r (2.3.1)
210
- nokogiri (1.8.4)
211
- mini_portile2 (~> 2.3.0)
211
+ nokogiri (1.9.1)
212
+ mini_portile2 (~> 2.4.0)
212
213
  orm_adapter (0.5.0)
213
214
  parallel (1.12.1)
214
- parser (2.5.1.2)
215
+ parser (2.5.3.0)
215
216
  ast (~> 2.4.0)
216
- pg (1.1.0)
217
+ pg (1.1.3)
217
218
  powerpack (0.1.2)
218
219
  public_suffix (3.0.3)
219
- rack (2.0.5)
220
+ rack (2.0.6)
220
221
  rack-test (1.1.0)
221
222
  rack (>= 1.0, < 3)
222
- rails (5.2.1)
223
- actioncable (= 5.2.1)
224
- actionmailer (= 5.2.1)
225
- actionpack (= 5.2.1)
226
- actionview (= 5.2.1)
227
- activejob (= 5.2.1)
228
- activemodel (= 5.2.1)
229
- activerecord (= 5.2.1)
230
- activestorage (= 5.2.1)
231
- activesupport (= 5.2.1)
223
+ rails (5.2.2)
224
+ actioncable (= 5.2.2)
225
+ actionmailer (= 5.2.2)
226
+ actionpack (= 5.2.2)
227
+ actionview (= 5.2.2)
228
+ activejob (= 5.2.2)
229
+ activemodel (= 5.2.2)
230
+ activerecord (= 5.2.2)
231
+ activestorage (= 5.2.2)
232
+ activesupport (= 5.2.2)
232
233
  bundler (>= 1.3.0)
233
- railties (= 5.2.1)
234
+ railties (= 5.2.2)
234
235
  sprockets-rails (>= 2.0.0)
235
- rails-controller-testing (1.0.2)
236
- actionpack (~> 5.x, >= 5.0.1)
237
- actionview (~> 5.x, >= 5.0.1)
238
- activesupport (~> 5.x)
236
+ rails-controller-testing (1.0.4)
237
+ actionpack (>= 5.0.1.x)
238
+ actionview (>= 5.0.1.x)
239
+ activesupport (>= 5.0.1.x)
239
240
  rails-dom-testing (2.0.3)
240
241
  activesupport (>= 4.2.0)
241
242
  nokogiri (>= 1.6)
242
243
  rails-html-sanitizer (1.0.4)
243
244
  loofah (~> 2.2, >= 2.2.2)
244
- rails-i18n (5.1.1)
245
+ rails-i18n (5.1.2)
245
246
  i18n (>= 0.7, < 2)
246
247
  railties (>= 5.0, < 6)
247
- railties (5.2.1)
248
- actionpack (= 5.2.1)
249
- activesupport (= 5.2.1)
248
+ railties (5.2.2)
249
+ actionpack (= 5.2.2)
250
+ activesupport (= 5.2.2)
250
251
  method_source
251
252
  rake (>= 0.8.7)
252
253
  thor (>= 0.19.0, < 2.0)
253
254
  rainbow (3.0.0)
254
- rake (12.3.1)
255
+ rake (12.3.2)
255
256
  rb-fsevent (0.10.3)
256
- rb-inotify (0.9.10)
257
- ffi (>= 0.5.0, < 2)
257
+ rb-inotify (0.10.0)
258
+ ffi (~> 1.0)
259
+ regexp_parser (1.3.0)
258
260
  responders (2.4.0)
259
261
  actionpack (>= 4.2.0, < 5.3)
260
262
  railties (>= 4.2.0, < 5.3)
261
263
  rspec-core (3.8.0)
262
264
  rspec-support (~> 3.8.0)
263
- rspec-expectations (3.8.1)
265
+ rspec-expectations (3.8.2)
264
266
  diff-lcs (>= 1.2.0, < 2.0)
265
267
  rspec-support (~> 3.8.0)
266
268
  rspec-mocks (3.8.0)
267
269
  diff-lcs (>= 1.2.0, < 2.0)
268
270
  rspec-support (~> 3.8.0)
269
- rspec-rails (3.8.0)
271
+ rspec-rails (3.8.1)
270
272
  actionpack (>= 3.0)
271
273
  activesupport (>= 3.0)
272
274
  railties (>= 3.0)
@@ -275,22 +277,22 @@ GEM
275
277
  rspec-mocks (~> 3.8.0)
276
278
  rspec-support (~> 3.8.0)
277
279
  rspec-support (3.8.0)
278
- rubocop (0.58.2)
280
+ rubocop (0.61.1)
279
281
  jaro_winkler (~> 1.5.1)
280
282
  parallel (~> 1.10)
281
283
  parser (>= 2.5, != 2.5.1.1)
282
284
  powerpack (~> 0.1)
283
285
  rainbow (>= 2.2.2, < 4.0)
284
286
  ruby-progressbar (~> 1.7)
285
- unicode-display_width (~> 1.0, >= 1.0.1)
287
+ unicode-display_width (~> 1.4.0)
286
288
  ruby-enum (0.7.2)
287
289
  i18n
288
290
  ruby-progressbar (1.10.0)
289
291
  ruby_dep (1.5.0)
290
- ruby_parser (3.11.0)
292
+ ruby_parser (3.12.0)
291
293
  sexp_processor (~> 4.9)
292
- rubyzip (1.2.1)
293
- sass (3.5.7)
294
+ rubyzip (1.2.2)
295
+ sass (3.7.2)
294
296
  sass-listen (~> 4.0.0)
295
297
  sass-listen (4.0.0)
296
298
  rb-fsevent (~> 0.9, >= 0.9.4)
@@ -301,9 +303,9 @@ GEM
301
303
  sprockets (>= 2.8, < 4.0)
302
304
  sprockets-rails (>= 2.0, < 4.0)
303
305
  tilt (>= 1.1, < 3)
304
- selenium-webdriver (3.14.0)
306
+ selenium-webdriver (3.141.0)
305
307
  childprocess (~> 0.5)
306
- rubyzip (~> 1.2)
308
+ rubyzip (~> 1.2, >= 1.2.2)
307
309
  sexp_processor (4.11.0)
308
310
  simplecov (0.16.1)
309
311
  docile (~> 1.1)
@@ -325,15 +327,15 @@ GEM
325
327
  sysexits (1.2.0)
326
328
  temple (0.8.0)
327
329
  text (1.3.1)
328
- thor (0.20.0)
330
+ thor (0.20.3)
329
331
  thread_safe (0.3.6)
330
- tilt (2.0.8)
332
+ tilt (2.0.9)
331
333
  tzinfo (1.2.5)
332
334
  thread_safe (~> 0.1)
333
- unicode-display_width (1.4.0)
334
- warden (1.2.7)
335
- rack (>= 1.0)
336
- web-console (3.6.2)
335
+ unicode-display_width (1.4.1)
336
+ warden (1.2.8)
337
+ rack (>= 2.0.6)
338
+ web-console (3.7.0)
337
339
  actionview (>= 5.0)
338
340
  activemodel (>= 5.0)
339
341
  bindex (>= 0.4.0)
@@ -341,7 +343,7 @@ GEM
341
343
  websocket-driver (0.7.0)
342
344
  websocket-extensions (>= 0.1.0)
343
345
  websocket-extensions (0.1.3)
344
- xpath (3.1.0)
346
+ xpath (3.2.0)
345
347
  nokogiri (~> 1.8)
346
348
 
347
349
  PLATFORMS
@@ -385,4 +387,4 @@ DEPENDENCIES
385
387
  web-console (>= 3.3.0)
386
388
 
387
389
  BUNDLED WITH
388
- 1.16.2
390
+ 1.17.2