elabs 4.0.0 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +9 -0
- data/.node-version +1 -1
- data/.rubocop.yml +4 -0
- data/.stylelintrc.yml +12 -2
- data/CHANGELOG.md +81 -12
- data/Gemfile +1 -1
- data/Gemfile.lock +96 -94
- data/README.md +2 -0
- data/ROADMAP.md +4 -2
- data/app/assets/config/elabs_manifest.js +2 -1
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.eot +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.svg +1148 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.ttf +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff2 +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.eot +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.svg +467 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.ttf +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff2 +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.eot +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.svg +2231 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.ttf +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff2 +0 -0
- data/app/assets/fonts/elabs/OpenSans/Apache License.txt +201 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Bold.ttf +0 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Light.ttf +0 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Regular.ttf +0 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Semibold.ttf +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.eot +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.svg +51 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.ttf +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.woff +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.woff2 +0 -0
- data/app/assets/images/elabs/preview_placeholder.png +0 -0
- data/app/assets/images/elabs/preview_placeholder_nsfw.png +0 -0
- data/app/assets/javascripts/elabs/announcements.js +33 -0
- data/app/assets/javascripts/elabs/application.js.erb +17 -14
- data/app/assets/javascripts/elabs/forms.js +0 -1
- data/app/assets/javascripts/elabs/helpers-markdown.js +2 -2
- data/app/assets/javascripts/elabs/helpers.js +17 -0
- data/app/assets/javascripts/elabs/menu.js +5 -0
- data/app/assets/stylesheets/elabs/_fonts.scss +32 -0
- data/app/assets/stylesheets/elabs/_variables.scss +286 -5
- data/app/assets/stylesheets/elabs/app/components/_act.scss +83 -0
- data/app/assets/stylesheets/elabs/app/components/_announcement.scss +41 -0
- data/app/assets/stylesheets/elabs/app/components/_classifier_types.scss +43 -0
- data/app/assets/stylesheets/elabs/app/components/_comment.scss +29 -0
- data/app/assets/stylesheets/elabs/app/components/_content_relations.scss +53 -0
- data/app/assets/stylesheets/elabs/app/components/_content_statuses.scss +39 -0
- data/app/assets/stylesheets/elabs/app/components/_content_types.scss +41 -0
- data/app/assets/stylesheets/elabs/app/components/_git_cards.scss +122 -0
- data/app/assets/stylesheets/elabs/app/elements/_alerts.scss +3 -0
- data/app/assets/stylesheets/elabs/app/elements/_badges.scss +17 -0
- data/app/assets/stylesheets/elabs/app/elements/_buttons.scss +34 -0
- data/app/assets/stylesheets/elabs/app/elements/_dropdowns.scss +78 -0
- data/app/assets/stylesheets/elabs/app/elements/_empty.scss +31 -0
- data/app/assets/stylesheets/elabs/app/elements/_errors.scss +15 -0
- data/app/assets/stylesheets/elabs/app/elements/_filter_link.scss +23 -0
- data/app/assets/stylesheets/elabs/app/elements/_fixed_links.scss +19 -0
- data/app/assets/stylesheets/elabs/app/elements/_forms.scss +123 -0
- data/app/assets/stylesheets/elabs/app/elements/_icons.scss +74 -0
- data/app/assets/stylesheets/elabs/app/{_medias.scss → elements/_medias.scss} +2 -0
- data/app/assets/stylesheets/elabs/app/{_modals.scss → elements/_modals.scss} +8 -4
- data/app/assets/stylesheets/elabs/app/elements/_nsfw.scss +41 -0
- data/app/assets/stylesheets/elabs/app/{_pagination.scss → elements/_pagination.scss} +0 -0
- data/app/assets/stylesheets/elabs/app/{_tables.scss → elements/_tables.scss} +2 -2
- data/app/assets/stylesheets/elabs/app/elements/_tabs.scss +73 -0
- data/app/assets/stylesheets/elabs/app/helpers/_cards.scss +80 -0
- data/app/assets/stylesheets/elabs/app/helpers/_containers.scss +7 -0
- data/app/assets/stylesheets/elabs/app/helpers/_states.scss +3 -0
- data/app/assets/stylesheets/elabs/app/{_helpers.scss → helpers/_typo.scss} +6 -4
- data/app/assets/stylesheets/elabs/app/layouts/_acts.scss +25 -0
- data/app/assets/stylesheets/elabs/app/layouts/_classifiers.scss +32 -0
- data/app/assets/stylesheets/elabs/app/{_comments.scss → layouts/_comments.scss} +0 -2
- data/app/assets/stylesheets/elabs/app/layouts/_devise.scss +65 -0
- data/app/assets/stylesheets/elabs/app/layouts/_layout.scss +40 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page.scss +14 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_content.scss +13 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_footer.scss +20 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_header.scss +146 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_menu.scss +232 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_messages.scss +4 -0
- data/app/assets/stylesheets/elabs/app/layouts/_private_layout.scss +78 -0
- data/app/assets/stylesheets/elabs/app/{_typo.scss → layouts/_typo.scss} +3 -0
- data/app/assets/stylesheets/elabs/app/mixins/_classifier_card.scss +43 -0
- data/app/assets/stylesheets/elabs/app/mixins/_content_card.scss +103 -0
- data/app/assets/stylesheets/elabs/app/mixins/_content_full.scss +158 -0
- data/app/assets/stylesheets/elabs/app/mixins/{_content-inline.scss → _content_inline.scss} +0 -0
- data/app/assets/stylesheets/elabs/lib/_codemirror.scss +2 -2
- data/app/assets/stylesheets/elabs/{_colors.scss → lib/_colors_reference.scss} +0 -52
- data/app/assets/stylesheets/elabs/lib/_license_icons.scss +121 -0
- data/app/assets/stylesheets/elabs/lib/fontawesome/_fontawesome.scss +1 -1
- data/app/assets/stylesheets/elabs/lib/fontawesome/_fonts.scss +18 -18
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss.scss +1 -1
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss_variables.scss +227 -0
- data/app/assets/stylesheets/elabs/style.scss +62 -57
- data/app/controllers/elabs/admin/admin_application_controller.rb +1 -1
- data/app/controllers/elabs/admin/announcements_controller.rb +71 -0
- data/app/controllers/elabs/concerns/elabs_controller.rb +3 -0
- data/app/controllers/elabs/content_application_controller.rb +4 -0
- data/app/controllers/elabs/elabs_public_controller.rb +15 -0
- data/app/controllers/elabs/languages_controller.rb +1 -5
- data/app/controllers/elabs/member/comments_controller.rb +42 -0
- data/app/controllers/elabs/member/member_application_controller.rb +1 -1
- data/app/controllers/elabs/reports_controller.rb +2 -0
- data/app/helpers/elabs/acts_helper.rb +7 -2
- data/app/helpers/elabs/application_helper.rb +8 -50
- data/app/helpers/elabs/content_filters_helper.rb +17 -24
- data/app/helpers/elabs/content_helper.rb +8 -35
- data/app/helpers/elabs/content_renderer_helper.rb +4 -112
- data/app/helpers/elabs/form_helper.rb +11 -11
- data/app/helpers/elabs/icons_helper.rb +63 -0
- data/app/helpers/elabs/{admin_content_helper.rb → links_admin_helper.rb} +1 -1
- data/app/helpers/elabs/links_helper.rb +58 -0
- data/app/helpers/elabs/{member_content_helper.rb → links_member_helper.rb} +2 -2
- data/app/helpers/elabs/notification_helper.rb +17 -3
- data/app/helpers/elabs/shortcodes_helper.rb +108 -0
- data/app/helpers/elabs/thumbnails_helper.rb +1 -1
- data/app/models/elabs/album.rb +14 -0
- data/app/models/elabs/announcement.rb +33 -0
- data/app/models/elabs/article.rb +14 -0
- data/app/models/elabs/comment.rb +10 -4
- data/app/models/elabs/note.rb +14 -0
- data/app/models/elabs/project.rb +12 -0
- data/app/models/elabs/report.rb +1 -0
- data/app/models/elabs/upload.rb +16 -0
- data/app/models/elabs/user.rb +2 -1
- data/app/views/elabs/acts/_filters.html.haml +3 -2
- data/app/views/elabs/acts/index.html.haml +2 -13
- data/app/views/elabs/admin/announcements/_announcement.json.jbuilder +10 -0
- data/app/views/elabs/admin/announcements/_form.html.haml +52 -0
- data/app/views/elabs/admin/announcements/edit.html.haml +3 -0
- data/app/views/elabs/admin/announcements/index.html.haml +28 -0
- data/app/views/elabs/admin/announcements/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/announcements/new.html.haml +3 -0
- data/app/views/elabs/admin/licenses/index.html.haml +2 -2
- data/app/views/elabs/admin/uploads/_upload.json.jbuilder +3 -3
- data/app/views/elabs/albums/_card_content.html.haml +8 -0
- data/app/views/elabs/albums/_filters.html.haml +5 -3
- data/app/views/elabs/albums/index.html.haml +1 -1
- data/app/views/elabs/albums/show.html.haml +38 -29
- data/app/views/elabs/articles/_filters.html.haml +5 -3
- data/app/views/elabs/articles/index.html.haml +1 -1
- data/app/views/elabs/articles/show.html.haml +33 -25
- data/app/views/elabs/auth/confirmations/new.html.haml +1 -1
- data/app/views/elabs/auth/passwords/edit.html.haml +1 -1
- data/app/views/elabs/auth/passwords/new.html.haml +1 -1
- data/app/views/elabs/auth/registrations/new.html.haml +7 -2
- data/app/views/elabs/auth/sessions/_new.html.haml +1 -1
- data/app/views/elabs/auth/unlocks/new.html.haml +1 -1
- data/app/views/elabs/comments/_comments.html.haml +29 -20
- data/app/views/elabs/comments/_form.html.haml +40 -36
- data/app/views/elabs/languages/_filters.html.haml +3 -5
- data/app/views/elabs/languages/index.html.haml +12 -13
- data/app/views/elabs/languages/show.html.haml +36 -31
- data/app/views/elabs/layouts/_announcements.html.haml +9 -0
- data/app/views/elabs/layouts/_content_associations.html.haml +89 -0
- data/app/views/elabs/layouts/_content_card.html.haml +41 -0
- data/app/views/elabs/layouts/_flash_messages.html.haml +4 -0
- data/app/views/elabs/layouts/_footer.html.haml +18 -10
- data/app/views/elabs/layouts/_form_honeypot.html.haml +12 -0
- data/app/views/elabs/layouts/_hidden_entry.html.haml +1 -1
- data/app/views/elabs/layouts/_hidden_entry_full.html.haml +4 -2
- data/app/views/elabs/layouts/_hidden_entry_inline.html.haml +1 -1
- data/app/views/elabs/layouts/_language_menu.html.haml +2 -2
- data/app/views/elabs/layouts/_menu.html.haml +58 -75
- data/app/views/elabs/layouts/_menu_admin.html.haml +40 -0
- data/app/views/elabs/layouts/_menu_member.html.haml +57 -0
- data/app/views/elabs/layouts/application.html.haml +24 -13
- data/app/views/elabs/layouts/application_admin.html.haml +33 -0
- data/app/views/elabs/layouts/application_member.html.haml +36 -0
- data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_albums.html.haml +0 -0
- data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_projects.html.haml +0 -0
- data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_tags.html.haml +0 -0
- data/app/views/elabs/layouts/{_shortcode_infinite_loop.html.haml → shortcodes/_infinite_loop.html.haml} +1 -1
- data/app/views/elabs/layouts/{_shortcode_infinite_loop_inline.html.haml → shortcodes/_infinite_loop_inline.html.haml} +0 -0
- data/app/views/elabs/layouts/{_shortcode_missing_content.html.haml → shortcodes/_missing_content.html.haml} +1 -1
- data/app/views/elabs/layouts/{_shortcode_missing_content_inline.html.haml → shortcodes/_missing_content_inline.html.haml} +0 -0
- data/app/views/elabs/layouts/shortcodes/_open_to_see.html.haml +2 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_card.html.haml +1 -1
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_inline.html.haml +0 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_user_card.html.haml +0 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_group_card.html.haml +1 -1
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_card.html.haml +1 -1
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_inline.html.haml +0 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_user_card.html.haml +1 -1
- data/app/views/elabs/layouts/shortcodes/widgets/vue/_all_widgets.html.haml +5 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_repo_card_vue.html.haml +8 -8
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_user_card_vue.html.haml +5 -5
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_group_card_vue.html.haml +5 -5
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_repo_card_vue.html.haml +8 -8
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_user_card_vue.html.haml +4 -4
- data/app/views/elabs/licenses/_filters.html.haml +3 -2
- data/app/views/elabs/licenses/index.html.haml +14 -12
- data/app/views/elabs/licenses/show.html.haml +40 -34
- data/app/views/elabs/member/albums/_form.html.haml +1 -43
- data/app/views/elabs/member/articles/_form.html.haml +1 -39
- data/app/views/elabs/member/layouts/_form_commons.html.haml +55 -0
- data/app/views/elabs/member/notes/_form.html.haml +1 -39
- data/app/views/elabs/member/preferences/edit.html.haml +1 -2
- data/app/views/elabs/member/projects/_form.html.haml +3 -38
- data/app/views/elabs/member/uploads/_form.html.haml +1 -42
- data/app/views/elabs/member/uploads/_upload.json.jbuilder +3 -3
- data/app/views/elabs/member/users/edit.html.haml +3 -4
- data/app/views/elabs/notes/_filters.html.haml +5 -3
- data/app/views/elabs/notes/index.html.haml +1 -1
- data/app/views/elabs/notes/show.html.haml +33 -25
- data/app/views/elabs/projects/_filters.html.haml +5 -3
- data/app/views/elabs/projects/index.html.haml +1 -1
- data/app/views/elabs/projects/show.html.haml +68 -62
- data/app/views/elabs/reports/_form.html.haml +2 -0
- data/app/views/elabs/tags/_filters.html.haml +3 -2
- data/app/views/elabs/tags/index.html.haml +11 -11
- data/app/views/elabs/tags/show.html.haml +31 -28
- data/app/views/elabs/uploads/_filters.html.haml +5 -3
- data/app/views/elabs/uploads/_preview.html.haml +5 -4
- data/app/views/elabs/uploads/_thumbnail.html.haml +9 -0
- data/app/views/elabs/uploads/_upload.json.jbuilder +3 -3
- data/app/views/elabs/uploads/index.html.haml +1 -1
- data/app/views/elabs/uploads/show.html.haml +45 -39
- data/app/views/elabs/users/_filters.html.haml +3 -2
- data/app/views/elabs/users/_user.html.haml +3 -3
- data/app/views/elabs/users/show.html.haml +48 -43
- data/config/routes.rb +13 -8
- data/db/migrate/20181025084232_add_archived_field_to_comments.rb +5 -0
- data/db/migrate/20181026071743_delete_comment_notifications.rb +5 -0
- data/db/migrate/20181030063505_create_announcements.rb +14 -0
- data/docs/CODEOWNERS +10 -0
- data/docs/migrating.md +16 -1
- data/docs/shortcodes_guide.md +51 -0
- data/lib/assets/javascripts/README-highlight.js.md +5 -5
- data/lib/assets/javascripts/highlight.js-9.13.1/highlight.pack.js +2 -0
- data/lib/assets/stylesheets/{highlight.js-9.12.0 → highlight.js-9.13.1}/styles/atelier-sulphurpool-light.css +0 -0
- data/lib/elabs.rb +8 -0
- data/lib/elabs/version.rb +1 -1
- data/lib/generators/elabs/{devise_views_generator.rb → devise_mailer_views_generator.rb} +2 -2
- data/lib/generators/elabs/images_generator.rb +24 -0
- data/lib/generators/elabs/required_assets_generator.rb +0 -2
- data/lib/generators/templates/elabs.rb +3 -0
- data/locale/app.pot +132 -19
- data/locale/en/app.edit.po +130 -17
- data/locale/en/app.po +130 -17
- data/locale/fr/app.edit.po +145 -28
- data/locale/fr/app.po +141 -27
- data/package.json +10 -12
- data/yarn.lock +885 -668
- metadata +136 -97
- data/app/assets/stylesheets/elabs/_icons.scss +0 -17
- data/app/assets/stylesheets/elabs/app/_acts.scss +0 -69
- data/app/assets/stylesheets/elabs/app/_alerts.scss +0 -3
- data/app/assets/stylesheets/elabs/app/_badges.scss +0 -11
- data/app/assets/stylesheets/elabs/app/_buttons.scss +0 -29
- data/app/assets/stylesheets/elabs/app/_content.scss +0 -25
- data/app/assets/stylesheets/elabs/app/_content_statuses.scss +0 -32
- data/app/assets/stylesheets/elabs/app/_content_uploads.scss +0 -39
- data/app/assets/stylesheets/elabs/app/_empty.scss +0 -19
- data/app/assets/stylesheets/elabs/app/_errors.scss +0 -9
- data/app/assets/stylesheets/elabs/app/_filter_links.scss +0 -27
- data/app/assets/stylesheets/elabs/app/_forms.scss +0 -74
- data/app/assets/stylesheets/elabs/app/_languages.scss +0 -6
- data/app/assets/stylesheets/elabs/app/_layout.scss +0 -206
- data/app/assets/stylesheets/elabs/app/_licenses.scss +0 -6
- data/app/assets/stylesheets/elabs/app/_link-to-top.scss +0 -8
- data/app/assets/stylesheets/elabs/app/_tabs.scss +0 -54
- data/app/assets/stylesheets/elabs/app/_tags.scss +0 -6
- data/app/assets/stylesheets/elabs/app/_toolbars.scss +0 -3
- data/app/assets/stylesheets/elabs/app/_users.scss +0 -21
- data/app/assets/stylesheets/elabs/app/admin-members/_forms.scss +0 -13
- data/app/assets/stylesheets/elabs/app/admin-members/_indexes.scss +0 -46
- data/app/assets/stylesheets/elabs/app/admin-members/_layout.scss +0 -17
- data/app/assets/stylesheets/elabs/app/areas/_devise.scss +0 -31
- data/app/assets/stylesheets/elabs/app/components/_cards.scss +0 -16
- data/app/assets/stylesheets/elabs/app/components/_container.scss +0 -4
- data/app/assets/stylesheets/elabs/app/mixins/_classifier-card.scss +0 -16
- data/app/assets/stylesheets/elabs/app/mixins/_content-card.scss +0 -72
- data/app/assets/stylesheets/elabs/app/mixins/_content-full.scss +0 -77
- data/app/assets/stylesheets/elabs/app/widgets/_git-cards.scss +0 -88
- data/app/assets/stylesheets/elabs/lib/fontawesome/_icons.scss +0 -1118
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss-variables.scss +0 -239
- data/app/views/elabs/albums/_album.html.haml +0 -38
- data/app/views/elabs/articles/_article.html.haml +0 -30
- data/app/views/elabs/languages/_associations.html.haml +0 -61
- data/app/views/elabs/layouts/_shortcode_open_to_see.html.haml +0 -2
- data/app/views/elabs/layouts/admin_application.html.haml +0 -21
- data/app/views/elabs/layouts/member_application.html.haml +0 -24
- data/app/views/elabs/layouts/widgets/vue/_all_widgets.html.haml +0 -5
- data/app/views/elabs/licenses/_associations.html.haml +0 -61
- data/app/views/elabs/notes/_note.html.haml +0 -31
- data/app/views/elabs/projects/_associations.html.haml +0 -54
- data/app/views/elabs/projects/_project.html.haml +0 -29
- data/app/views/elabs/tags/_associations.html.haml +0 -61
- data/app/views/elabs/uploads/_upload.html.haml +0 -41
- data/app/views/elabs/users/_associations.html.haml +0 -61
- data/db/seeds.rb +0 -10
- data/db/seeds_development.rb +0 -21
- data/db/seeds_production.rb +0 -0
- data/lib/assets/javascripts/codemirror-5.39.2/addon/mode/overlay.js +0 -90
- data/lib/assets/javascripts/codemirror-5.39.2/lib/codemirror.js +0 -9684
- data/lib/assets/javascripts/codemirror-5.39.2/mode/clike/clike.js +0 -834
- data/lib/assets/javascripts/codemirror-5.39.2/mode/css/css.js +0 -832
- data/lib/assets/javascripts/codemirror-5.39.2/mode/gfm/gfm.js +0 -129
- data/lib/assets/javascripts/codemirror-5.39.2/mode/htmlmixed/htmlmixed.js +0 -152
- data/lib/assets/javascripts/codemirror-5.39.2/mode/javascript/javascript.js +0 -896
- data/lib/assets/javascripts/codemirror-5.39.2/mode/markdown/markdown.js +0 -882
- data/lib/assets/javascripts/codemirror-5.39.2/mode/meta.js +0 -217
- data/lib/assets/javascripts/codemirror-5.39.2/mode/xml/xml.js +0 -402
- data/lib/assets/javascripts/highlight.js-9.12.0/highlight.pack.js +0 -2
- data/lib/assets/stylesheets/codemirror-5.39.2/lib/codemirror.css +0 -346
- data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-dark.css +0 -38
- 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96d9b9da1b647b7be83ed9bc4716f58a51d349da89f0de782e56051653babbf9
|
4
|
+
data.tar.gz: f77f787573d171e8a38b24b4c1f6e3f22868f3d95d5d279c48fc1da34991863b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f582fb691ef01ef81eae2e178aa8ed9a571aae89ea61813426965beab27855e7fd977df5b30fb6c4c3f2b0e3383f7a72426e7f6a9ee305d79779ee0fd2f9a325
|
7
|
+
data.tar.gz: 6865bc19cded9c6fc7dbfc0aaea287f06ea7ab793aefc5dbf97272ed1467254329d23729354d2626e6afc65c196b85d9c938c35729144c8deae26dae9cebcfd5
|
data/.gitlab-ci.yml
CHANGED
@@ -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
|
data/.node-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
8
|
1
|
+
8.12.0
|
data/.rubocop.yml
CHANGED
data/.stylelintrc.yml
CHANGED
@@ -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:
|
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:
|
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
|
data/CHANGELOG.md
CHANGED
@@ -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',
|
66
|
+
gem 'faker', github: 'stympy/faker', ref: '42a51f9'
|
67
67
|
# Linters
|
68
68
|
gem 'haml_lint', require: false
|
69
69
|
gem 'rubocop'
|
data/Gemfile.lock
CHANGED
@@ -1,39 +1,39 @@
|
|
1
1
|
GIT
|
2
|
-
remote: https://github.com/
|
3
|
-
revision:
|
4
|
-
|
2
|
+
remote: https://github.com/stympy/faker.git
|
3
|
+
revision: 42a51f9732a44805d02ee6295095f0e964f1706f
|
4
|
+
ref: 42a51f9
|
5
5
|
specs:
|
6
|
-
faker (1.
|
6
|
+
faker (1.9.1)
|
7
7
|
i18n (>= 0.7)
|
8
8
|
|
9
9
|
PATH
|
10
10
|
remote: .
|
11
11
|
specs:
|
12
|
-
elabs (
|
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.
|
19
|
-
actionpack (= 5.2.
|
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.
|
23
|
-
actionpack (= 5.2.
|
24
|
-
actionview (= 5.2.
|
25
|
-
activejob (= 5.2.
|
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.
|
29
|
-
actionview (= 5.2.
|
30
|
-
activesupport (= 5.2.
|
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.
|
36
|
-
activesupport (= 5.2.
|
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.
|
45
|
-
activesupport (= 5.2.
|
44
|
+
activejob (5.2.2)
|
45
|
+
activesupport (= 5.2.2)
|
46
46
|
globalid (>= 0.3.6)
|
47
|
-
activemodel (5.2.
|
48
|
-
activesupport (= 5.2.
|
49
|
-
activerecord (5.2.
|
50
|
-
activemodel (= 5.2.
|
51
|
-
activesupport (= 5.2.
|
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.
|
54
|
-
actionpack (= 5.2.
|
55
|
-
activerecord (= 5.2.
|
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.
|
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.
|
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.
|
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
|
-
|
81
|
-
|
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.
|
87
|
+
chromedriver-helper (2.1.0)
|
87
88
|
archive-zip (~> 0.10)
|
88
89
|
nokogiri (~> 1.8)
|
89
|
-
commonmarker (0.
|
90
|
+
commonmarker (0.18.2)
|
90
91
|
ruby-enum (~> 0.5)
|
91
|
-
concurrent-ruby (1.
|
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.
|
103
|
+
cucumber-core (3.2.1)
|
103
104
|
backports (>= 3.8.0)
|
104
105
|
cucumber-tag_expressions (~> 1.1.0)
|
105
|
-
gherkin (
|
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.
|
125
|
+
erubi (1.8.0)
|
125
126
|
erubis (2.7.0)
|
126
|
-
factory_bot (4.11.
|
127
|
+
factory_bot (4.11.1)
|
127
128
|
activesupport (>= 3.0.0)
|
128
|
-
factory_bot_rails (4.11.
|
129
|
-
factory_bot (~> 4.11.
|
129
|
+
factory_bot_rails (4.11.1)
|
130
|
+
factory_bot (~> 4.11.1)
|
130
131
|
railties (>= 3.0.0)
|
131
|
-
fast_gettext (
|
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.
|
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.
|
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.
|
190
|
+
loofah (2.2.3)
|
190
191
|
crass (~> 1.0.2)
|
191
192
|
nokogiri (>= 1.5.9)
|
192
|
-
mail (2.7.
|
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.
|
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.
|
201
|
-
mini_magick (4.
|
201
|
+
mimemagic (0.3.3)
|
202
|
+
mini_magick (4.9.2)
|
202
203
|
mini_mime (1.0.1)
|
203
|
-
mini_portile2 (2.
|
204
|
-
mini_racer (0.2.
|
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.
|
211
|
-
mini_portile2 (~> 2.
|
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.
|
215
|
+
parser (2.5.3.0)
|
215
216
|
ast (~> 2.4.0)
|
216
|
-
pg (1.1.
|
217
|
+
pg (1.1.3)
|
217
218
|
powerpack (0.1.2)
|
218
219
|
public_suffix (3.0.3)
|
219
|
-
rack (2.0.
|
220
|
+
rack (2.0.6)
|
220
221
|
rack-test (1.1.0)
|
221
222
|
rack (>= 1.0, < 3)
|
222
|
-
rails (5.2.
|
223
|
-
actioncable (= 5.2.
|
224
|
-
actionmailer (= 5.2.
|
225
|
-
actionpack (= 5.2.
|
226
|
-
actionview (= 5.2.
|
227
|
-
activejob (= 5.2.
|
228
|
-
activemodel (= 5.2.
|
229
|
-
activerecord (= 5.2.
|
230
|
-
activestorage (= 5.2.
|
231
|
-
activesupport (= 5.2.
|
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.
|
234
|
+
railties (= 5.2.2)
|
234
235
|
sprockets-rails (>= 2.0.0)
|
235
|
-
rails-controller-testing (1.0.
|
236
|
-
actionpack (
|
237
|
-
actionview (
|
238
|
-
activesupport (
|
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.
|
245
|
+
rails-i18n (5.1.2)
|
245
246
|
i18n (>= 0.7, < 2)
|
246
247
|
railties (>= 5.0, < 6)
|
247
|
-
railties (5.2.
|
248
|
-
actionpack (= 5.2.
|
249
|
-
activesupport (= 5.2.
|
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.
|
255
|
+
rake (12.3.2)
|
255
256
|
rb-fsevent (0.10.3)
|
256
|
-
rb-inotify (0.
|
257
|
-
ffi (
|
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.
|
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.
|
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.
|
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.
|
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.
|
292
|
+
ruby_parser (3.12.0)
|
291
293
|
sexp_processor (~> 4.9)
|
292
|
-
rubyzip (1.2.
|
293
|
-
sass (3.
|
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.
|
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.
|
330
|
+
thor (0.20.3)
|
329
331
|
thread_safe (0.3.6)
|
330
|
-
tilt (2.0.
|
332
|
+
tilt (2.0.9)
|
331
333
|
tzinfo (1.2.5)
|
332
334
|
thread_safe (~> 0.1)
|
333
|
-
unicode-display_width (1.4.
|
334
|
-
warden (1.2.
|
335
|
-
rack (>=
|
336
|
-
web-console (3.
|
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.
|
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.
|
390
|
+
1.17.2
|