keppler 2.1.17 → 2.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/installer/core/.gitignore +88 -0
- data/installer/core/app/views/admin/layouts/_sidebar.html.haml +2 -2
- data/installer/core/rockets/keppler_frontend/app/controllers/keppler_frontend/app/frontend_controller.rb +0 -1
- data/installer/core/rockets/keppler_frontend/app/models/keppler_frontend/view.rb +1 -1
- data/installer/core/rockets/keppler_frontend/config/data/views.yml +1 -1
- data/lib/keppler/version.rb +1 -1
- data/testing-with-2.1.18/.gitignore +88 -0
- data/testing-with-2.1.18/.ruby-version +1 -0
- data/testing-with-2.1.18/Gemfile +149 -0
- data/testing-with-2.1.18/Gemfile.lock +645 -0
- data/testing-with-2.1.18/Guardfile +18 -0
- data/testing-with-2.1.18/LICENSE +674 -0
- data/testing-with-2.1.18/README.md +134 -0
- data/testing-with-2.1.18/Rakefile +6 -0
- data/testing-with-2.1.18/_config.yml +1 -0
- data/testing-with-2.1.18/app/assets/images/.keep +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/astronauta_keppler.svg +123 -0
- data/testing-with-2.1.18/app/assets/images/admin/avatar_keppler.svg +100 -0
- data/testing-with-2.1.18/app/assets/images/admin/en.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/es.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/favicon.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/image_default.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/logo.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/logo2.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/profile-menu.jpg +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/search.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice-icon-orange.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice-icon.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice_white.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/Cohete_nubes_new.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/Home_Keppler.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/Home_Keppler2.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/fondo.svg +19 -0
- data/testing-with-2.1.18/app/assets/images/app/keppler-front.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/slice-front.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/slice.png +0 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/application.coffee +25 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-colorpicker.js +1322 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/fileinput.js +4463 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/locales/LANG.js +100 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/locales/es.js +100 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/piexif.js +2471 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/piexif.min.js +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/purify.js +812 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/purify.min.js +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/sortable.js +1590 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/sortable.min.js +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/code_editor.js +94 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/comment/comment.js +209 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/comment/continuecomment.js +78 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/dialog/dialog.css +32 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/dialog/dialog.js +161 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/autorefresh.js +47 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/fullscreen.css +6 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/fullscreen.js +41 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/panel.js +123 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/placeholder.js +63 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/rulers.js +51 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/closebrackets.js +194 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/closetag.js +175 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/continuelist.js +89 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/matchbrackets.js +145 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/matchtags.js +66 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/trailingspace.js +27 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/brace-fold.js +105 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/comment-fold.js +59 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/foldcode.js +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/foldgutter.css +20 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/foldgutter.js +146 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/indent-fold.js +48 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/markdown-fold.js +49 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/xml-fold.js +184 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/anyword-hint.js +41 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/css-hint.js +60 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/html-hint.js +348 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/javascript-hint.js +157 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/show-hint.css +36 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/show-hint.js +433 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/sql-hint.js +299 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/xml-hint.js +110 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/loadmode.js +64 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/multiplex.js +131 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/overlay.js +90 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/simple.js +216 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/annotatescrollbar.js +122 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/scrollpastend.js +48 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/simplescrollbars.css +66 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/simplescrollbars.js +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/jump-to-line.js +49 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/match-highlighter.js +165 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/matchesonscrollbar.css +8 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/matchesonscrollbar.js +97 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/search.js +252 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/searchcursor.js +293 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/codemirror.js +9683 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/keymap/sublime.js +691 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/css.js +832 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/gss.html +103 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/index.html +75 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/less.html +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/scss.html +157 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/haml/haml.js +161 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/haml/index.html +79 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlembedded/index.html +60 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlmixed/htmlmixed.js +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlmixed/index.html +100 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/index.html +114 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/javascript.js +896 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/json-ld.html +72 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/typescript.html +61 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/ruby/index.html +183 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/ruby/ruby.js +296 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/vue/index.html +69 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/vue/vue.js +77 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/xml/index.html +61 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/xml/xml.js +402 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml-frontmatter/index.html +121 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +68 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml/index.html +80 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml/yaml.js +119 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/file_uploader.coffee +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/img_preview.js +32 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/jscolor.js +1855 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/main.coffee +58 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/notification.js +14 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/ruby_console.js +14 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sidebar.js +24 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sort.coffee +8 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/swal.js +39 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sweetalert2/delete-confirm.js +118 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sweetalert2/sweetalert2.all.min.js +2 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/switch.js +6 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/tooltips.coffee +4 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/upload_records.coffee +8 -0
- data/testing-with-2.1.18/app/assets/javascripts/app/application.js.coffee +9 -0
- data/testing-with-2.1.18/app/assets/javascripts/app/google_analytics.js.coffee +5 -0
- data/testing-with-2.1.18/app/assets/javascripts/ckeditor/config.js +130 -0
- data/testing-with-2.1.18/app/assets/javascripts/errors/application.js.coffee +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/errors/errors.js +113 -0
- data/testing-with-2.1.18/app/assets/javascripts/vue_admin/index.js +111 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/application.scss +48 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/fileinput-rtl.scss +133 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/fileinput.scss +760 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/themes/explorer-fa/theme.scss +213 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/themes/explorer-fas/theme.scss +213 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/themes/explorer/theme.scss +213 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/comment/comment.js +209 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/comment/continuecomment.js +78 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/dialog/dialog.css +32 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/dialog/dialog.js +161 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/autorefresh.js +47 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/fullscreen.css +6 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/fullscreen.js +41 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/panel.js +123 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/placeholder.js +63 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/rulers.js +51 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/closebrackets.js +194 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/closetag.js +175 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/continuelist.js +89 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/matchbrackets.js +145 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/matchtags.js +66 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/trailingspace.js +27 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/brace-fold.js +105 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/comment-fold.js +59 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/foldcode.js +152 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/foldgutter.css +20 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/foldgutter.js +146 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/indent-fold.js +48 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/markdown-fold.js +49 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/xml-fold.js +184 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/anyword-hint.js +41 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/css-hint.js +60 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/html-hint.js +348 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/javascript-hint.js +157 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/show-hint.css +36 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/show-hint.js +433 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/sql-hint.js +299 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/xml-hint.js +110 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/annotatescrollbar.js +122 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/scrollpastend.js +48 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/simplescrollbars.css +66 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/simplescrollbars.js +152 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/jump-to-line.js +49 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/match-highlighter.js +165 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/matchesonscrollbar.css +8 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/matchesonscrollbar.js +97 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/search.js +252 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/searchcursor.js +293 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/codemirror.css +366 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/theme/monokai.css +41 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/layouts/_footer.scss +5 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/layouts/_settings.scss +51 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/navigation/_navbar.scss +187 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/navigation/_sidebar.scss +207 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/navigation/_turbolinks.scss +4 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/paginator/_paginator.scss +53 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/ZXuke1cDvLCKLDcimxB44_lu.woff2 +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/boxicons.css +2918 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts.css +8 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.eot +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.ttf +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.woff +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.woff2 +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.eot +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.svg +808 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.ttf +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.woff +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.woff2 +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/icons.css +778 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_appearance.scss +5 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_bootstrap-colorpicker.scss +269 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_customize.scss +22 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_datepicker.scss +1086 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_devise.scss +189 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_files.scss +229 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_form.scss +190 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_index.scss +466 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_listing.scss +40 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_preloader.scss +224 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_rockets.scss +13 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_roles.scss +3 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_search.scss +244 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_show.scss +23 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_switchs.scss +143 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_themes.scss +45 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_timepicker.scss +14 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_user.scss +6 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_base.scss +65 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_mixins.scss +26 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_theme.scss +124 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_variables.scss +109 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/application.scss +30 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/base/_base_project.scss +17 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/base/_typography.scss +1 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/components/_buttons.scss +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/components/_inputs.scss +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/components/_navbar.scss +21 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/layout/_container.scss +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/layout/_footer.scss +15 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/layout/_header.scss +39 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/pages/_front.sass +83 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_bootstrap_override.scss +37 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_font_awesome.scss +2 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_keppler.scss +161 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_npogress.scss +2 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/utils/_mixins.scss +18 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/utils/_variables.scss +28 -0
- data/testing-with-2.1.18/app/assets/stylesheets/errors/application.scss +3 -0
- data/testing-with-2.1.18/app/assets/stylesheets/errors/errors.scss +161 -0
- data/testing-with-2.1.18/app/assets/stylesheets/vendor/admin-lte/_skin-blue.scss +141 -0
- data/testing-with-2.1.18/app/assets/stylesheets/vendor/sweetalert2/sweetalert2.scss +11 -0
- data/testing-with-2.1.18/app/controllers/admin/admin_controller.rb +95 -0
- data/testing-with-2.1.18/app/controllers/admin/meta_tags_controller.rb +118 -0
- data/testing-with-2.1.18/app/controllers/admin/permissions_controller.rb +55 -0
- data/testing-with-2.1.18/app/controllers/admin/rockets_controller.rb +95 -0
- data/testing-with-2.1.18/app/controllers/admin/roles_controller.rb +124 -0
- data/testing-with-2.1.18/app/controllers/admin/scripts_controller.rb +104 -0
- data/testing-with-2.1.18/app/controllers/admin/seos_controller.rb +31 -0
- data/testing-with-2.1.18/app/controllers/admin/settings_controller.rb +131 -0
- data/testing-with-2.1.18/app/controllers/admin/users_controller.rb +122 -0
- data/testing-with-2.1.18/app/controllers/app/app_controller.rb +38 -0
- data/testing-with-2.1.18/app/controllers/app/front_controller.rb +8 -0
- data/testing-with-2.1.18/app/controllers/application_controller.rb +151 -0
- data/testing-with-2.1.18/app/controllers/concerns/.keep +0 -0
- data/testing-with-2.1.18/app/controllers/concerns/devise_params.rb +33 -0
- data/testing-with-2.1.18/app/controllers/concerns/mailer_config.rb +37 -0
- data/testing-with-2.1.18/app/controllers/concerns/object_query.rb +50 -0
- data/testing-with-2.1.18/app/controllers/concerns/settings.rb +105 -0
- data/testing-with-2.1.18/app/controllers/devise/sessions_controller.rb +108 -0
- data/testing-with-2.1.18/app/controllers/errors_controller.rb +30 -0
- data/testing-with-2.1.18/app/helpers/admin_helper.rb +138 -0
- data/testing-with-2.1.18/app/helpers/application_helper.rb +33 -0
- data/testing-with-2.1.18/app/helpers/fronts_helper.rb +38 -0
- data/testing-with-2.1.18/app/helpers/rockets_helper.rb +8 -0
- data/testing-with-2.1.18/app/helpers/roles_helper.rb +5 -0
- data/testing-with-2.1.18/app/helpers/scaffolds_helper.rb +5 -0
- data/testing-with-2.1.18/app/inputs/keppler_boolean_input.rb +52 -0
- data/testing-with-2.1.18/app/inputs/keppler_file_input.rb +124 -0
- data/testing-with-2.1.18/app/mailers/.keep +0 -0
- data/testing-with-2.1.18/app/mailers/application_mailer.rb +42 -0
- data/testing-with-2.1.18/app/models/.keep +0 -0
- data/testing-with-2.1.18/app/models/appearance.rb +7 -0
- data/testing-with-2.1.18/app/models/application_record.rb +6 -0
- data/testing-with-2.1.18/app/models/concerns/.keep +0 -0
- data/testing-with-2.1.18/app/models/concerns/activity_history.rb +11 -0
- data/testing-with-2.1.18/app/models/concerns/clone_record.rb +14 -0
- data/testing-with-2.1.18/app/models/concerns/downloadable.rb +16 -0
- data/testing-with-2.1.18/app/models/concerns/searchable.rb +27 -0
- data/testing-with-2.1.18/app/models/concerns/sortable.rb +13 -0
- data/testing-with-2.1.18/app/models/concerns/uploadable.rb +13 -0
- data/testing-with-2.1.18/app/models/front.rb +5 -0
- data/testing-with-2.1.18/app/models/google_analytics_setting.rb +6 -0
- data/testing-with-2.1.18/app/models/meta_tag.rb +54 -0
- data/testing-with-2.1.18/app/models/permission.rb +6 -0
- data/testing-with-2.1.18/app/models/rocket.rb +105 -0
- data/testing-with-2.1.18/app/models/role.rb +134 -0
- data/testing-with-2.1.18/app/models/script.rb +21 -0
- data/testing-with-2.1.18/app/models/seo.rb +49 -0
- data/testing-with-2.1.18/app/models/setting.rb +19 -0
- data/testing-with-2.1.18/app/models/smtp_setting.rb +7 -0
- data/testing-with-2.1.18/app/models/social_account.rb +6 -0
- data/testing-with-2.1.18/app/models/user.rb +75 -0
- data/testing-with-2.1.18/app/policies/application_policy.rb +18 -0
- data/testing-with-2.1.18/app/policies/controller_policy.rb +59 -0
- data/testing-with-2.1.18/app/policies/meta_tag_policy.rb +11 -0
- data/testing-with-2.1.18/app/policies/permission_policy.rb +23 -0
- data/testing-with-2.1.18/app/policies/rocket_policy.rb +11 -0
- data/testing-with-2.1.18/app/policies/role_policy.rb +31 -0
- data/testing-with-2.1.18/app/policies/script_policy.rb +11 -0
- data/testing-with-2.1.18/app/policies/seo_policy.rb +23 -0
- data/testing-with-2.1.18/app/policies/setting_policy.rb +15 -0
- data/testing-with-2.1.18/app/policies/user_policy.rb +19 -0
- data/testing-with-2.1.18/app/services/admin/appearance_service.rb +49 -0
- data/testing-with-2.1.18/app/services/admin/git_handler.rb +28 -0
- data/testing-with-2.1.18/app/uploaders/attachment_uploader.rb +61 -0
- data/testing-with-2.1.18/app/uploaders/ckeditor_attachment_file_uploader.rb +38 -0
- data/testing-with-2.1.18/app/uploaders/ckeditor_picture_uploader.rb +49 -0
- data/testing-with-2.1.18/app/uploaders/template_uploader.rb +44 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_footer.html.haml +0 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_git_info.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_head.html.haml +7 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_keppler_boolean_script.haml +12 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_listing_preloader.haml +4 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_messages.html.haml +4 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_navigation.html.haml +59 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_preloader.html.haml +14 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_sidebar.html.haml +83 -0
- data/testing-with-2.1.18/app/views/admin/layouts/application.html.haml +23 -0
- data/testing-with-2.1.18/app/views/admin/layouts/index/remote_messages.js.haml +9 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/_form.html.haml +35 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/_listing.html.haml +40 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/edit.html.haml +2 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/index.html.haml +69 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/new.html.haml +2 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/show.html.haml +28 -0
- data/testing-with-2.1.18/app/views/admin/permissions/_switch.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/permissions/add.html.haml +95 -0
- data/testing-with-2.1.18/app/views/admin/permissions/create.html.haml +0 -0
- data/testing-with-2.1.18/app/views/admin/permissions/create.js.erb +2 -0
- data/testing-with-2.1.18/app/views/admin/permissions/show.js.erb +2 -0
- data/testing-with-2.1.18/app/views/admin/permissions/toggle_permissions.js.erb +6 -0
- data/testing-with-2.1.18/app/views/admin/rockets/_create_rocket.haml +61 -0
- data/testing-with-2.1.18/app/views/admin/rockets/_install_rocket.haml +28 -0
- data/testing-with-2.1.18/app/views/admin/rockets/rockets.haml +54 -0
- data/testing-with-2.1.18/app/views/admin/roles/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/roles/_form.html.haml +27 -0
- data/testing-with-2.1.18/app/views/admin/roles/_listing.html.haml +42 -0
- data/testing-with-2.1.18/app/views/admin/roles/_switch.html.haml +24 -0
- data/testing-with-2.1.18/app/views/admin/roles/edit.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/roles/index.html.haml +64 -0
- data/testing-with-2.1.18/app/views/admin/roles/new.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/roles/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/roles/show.html.haml +29 -0
- data/testing-with-2.1.18/app/views/admin/scripts/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/scripts/_form.html.haml +30 -0
- data/testing-with-2.1.18/app/views/admin/scripts/_listing.html.haml +40 -0
- data/testing-with-2.1.18/app/views/admin/scripts/edit.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/scripts/index.html.haml +70 -0
- data/testing-with-2.1.18/app/views/admin/scripts/new.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/scripts/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/scripts/show.html.haml +28 -0
- data/testing-with-2.1.18/app/views/admin/seos/robots.html.haml +35 -0
- data/testing-with-2.1.18/app/views/admin/seos/sitemap.html.haml +36 -0
- data/testing-with-2.1.18/app/views/admin/settings/_form.html.haml +10 -0
- data/testing-with-2.1.18/app/views/admin/settings/components/_preview.html.haml +30 -0
- data/testing-with-2.1.18/app/views/admin/settings/edit.html.haml +4 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_appearance.html.haml +64 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_basic_information.html.haml +40 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_email_setting.html.haml +18 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_google_analytics_setting.html.haml +21 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_social_accounts.html.haml +43 -0
- data/testing-with-2.1.18/app/views/admin/users/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/users/_form.html.haml +45 -0
- data/testing-with-2.1.18/app/views/admin/users/_listing.html.haml +47 -0
- data/testing-with-2.1.18/app/views/admin/users/delete_avatar.js.haml +3 -0
- data/testing-with-2.1.18/app/views/admin/users/edit.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/users/filter_by_role.js.erb +9 -0
- data/testing-with-2.1.18/app/views/admin/users/index.html.haml +69 -0
- data/testing-with-2.1.18/app/views/admin/users/new.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/users/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/users/show.html.haml +34 -0
- data/testing-with-2.1.18/app/views/app/front/index.html.haml +223 -0
- data/testing-with-2.1.18/app/views/app/front/message.haml +1 -0
- data/testing-with-2.1.18/app/views/app/layouts/_footer.html.haml +3 -0
- data/testing-with-2.1.18/app/views/app/layouts/_google_analytics.html.haml +13 -0
- data/testing-with-2.1.18/app/views/app/layouts/_head.html.haml +15 -0
- data/testing-with-2.1.18/app/views/app/layouts/_messages.html.haml +6 -0
- data/testing-with-2.1.18/app/views/app/layouts/_meta_tags.html.haml +40 -0
- data/testing-with-2.1.18/app/views/app/layouts/_navigation.html.haml +13 -0
- data/testing-with-2.1.18/app/views/app/layouts/_navigation_links.html.haml +6 -0
- data/testing-with-2.1.18/app/views/app/layouts/application.html.haml +10 -0
- data/testing-with-2.1.18/app/views/application_mailer/testing.html.haml +1 -0
- data/testing-with-2.1.18/app/views/devise/confirmations/new.html.erb +16 -0
- data/testing-with-2.1.18/app/views/devise/mailer/reset_password_instructions.html.haml +6 -0
- data/testing-with-2.1.18/app/views/devise/passwords/edit.html.haml +31 -0
- data/testing-with-2.1.18/app/views/devise/passwords/new.html.haml +27 -0
- data/testing-with-2.1.18/app/views/devise/registrations/edit.html.erb +48 -0
- data/testing-with-2.1.18/app/views/devise/registrations/new.html.erb +19 -0
- data/testing-with-2.1.18/app/views/devise/sessions/new.html.haml +35 -0
- data/testing-with-2.1.18/app/views/devise/shared/_links.html.erb +21 -0
- data/testing-with-2.1.18/app/views/errors/internal_server_error.html.haml +50 -0
- data/testing-with-2.1.18/app/views/errors/not_authorized.html.haml +76 -0
- data/testing-with-2.1.18/app/views/errors/not_found.html.haml +101 -0
- data/testing-with-2.1.18/app/views/errors/unprocessable.html.haml +50 -0
- data/testing-with-2.1.18/app/views/kaminari/_first_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/kaminari/_gap.html.haml +8 -0
- data/testing-with-2.1.18/app/views/kaminari/_last_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/kaminari/_next_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/kaminari/_page.html.haml +10 -0
- data/testing-with-2.1.18/app/views/kaminari/_paginator.html.haml +18 -0
- data/testing-with-2.1.18/app/views/kaminari/_prev_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/layouts/errors/_head.html.haml +3 -0
- data/testing-with-2.1.18/app/views/layouts/errors/application.html.haml +11 -0
- data/testing-with-2.1.18/app/views/layouts/mailers/mailer.html.haml +3 -0
- data/testing-with-2.1.18/app/views/layouts/mailers/mailer.text.haml +1 -0
- data/testing-with-2.1.18/app/views/layouts/templates/application.html.haml +1 -0
- data/testing-with-2.1.18/app/views/public_activity/layout/_create.html.haml +44 -0
- data/testing-with-2.1.18/app/views/public_activity/layout/_destroy.html.haml +15 -0
- data/testing-with-2.1.18/app/views/public_activity/layout/_update.html.haml +44 -0
- data/testing-with-2.1.18/app/views/public_activity/session/_create.html.haml +13 -0
- data/testing-with-2.1.18/app/views/public_activity/session/_destroy.html.haml +13 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_first_page.html.haml +9 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_gap.html.haml +8 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_last_page.html.haml +9 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_next_page.html.haml +9 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_page.html.haml +10 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_paginator.html.haml +18 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_prev_page.html.haml +9 -0
- data/testing-with-2.1.18/bin/bundle +3 -0
- data/testing-with-2.1.18/bin/rails +4 -0
- data/testing-with-2.1.18/bin/rake +4 -0
- data/testing-with-2.1.18/bin/setup +29 -0
- data/testing-with-2.1.18/bin/spring +15 -0
- data/testing-with-2.1.18/bin/update +31 -0
- data/testing-with-2.1.18/bin/yarn +11 -0
- data/testing-with-2.1.18/config.ru +4 -0
- data/testing-with-2.1.18/config/application.rb +46 -0
- data/testing-with-2.1.18/config/attachments.yml +24 -0
- data/testing-with-2.1.18/config/boot.rb +7 -0
- data/testing-with-2.1.18/config/circleci/db_config.yml +51 -0
- data/testing-with-2.1.18/config/database.yml +25 -0
- data/testing-with-2.1.18/config/environment.rb +10 -0
- data/testing-with-2.1.18/config/environments/development.rb +61 -0
- data/testing-with-2.1.18/config/environments/production.rb +109 -0
- data/testing-with-2.1.18/config/environments/test.rb +45 -0
- data/testing-with-2.1.18/config/gaAuth/gauth_key.p12 +0 -0
- data/testing-with-2.1.18/config/initializers/assets.rb +14 -0
- data/testing-with-2.1.18/config/initializers/carrierwave.rb +12 -0
- data/testing-with-2.1.18/config/initializers/compression.rb +47 -0
- data/testing-with-2.1.18/config/initializers/cookies_serializer.rb +3 -0
- data/testing-with-2.1.18/config/initializers/date_formats.rb +2 -0
- data/testing-with-2.1.18/config/initializers/devise.rb +259 -0
- data/testing-with-2.1.18/config/initializers/filter_parameter_logging.rb +5 -0
- data/testing-with-2.1.18/config/initializers/inflections.rb +16 -0
- data/testing-with-2.1.18/config/initializers/keppler_configuration.rb +9 -0
- data/testing-with-2.1.18/config/initializers/mime_types.rb +6 -0
- data/testing-with-2.1.18/config/initializers/paginate_kaminari_configuration.rb +12 -0
- data/testing-with-2.1.18/config/initializers/ransack.rb +7 -0
- data/testing-with-2.1.18/config/initializers/rolify.rb +10 -0
- data/testing-with-2.1.18/config/initializers/route_traslator.rb +3 -0
- data/testing-with-2.1.18/config/initializers/session_store.rb +5 -0
- data/testing-with-2.1.18/config/initializers/simple_form.rb +170 -0
- data/testing-with-2.1.18/config/initializers/simple_form_bootstrap.rb +174 -0
- data/testing-with-2.1.18/config/initializers/simple_form_components.rb +61 -0
- data/testing-with-2.1.18/config/initializers/time_formats.rb +2 -0
- data/testing-with-2.1.18/config/initializers/wrap_parameters.rb +15 -0
- data/testing-with-2.1.18/config/jshint.yml +21 -0
- data/testing-with-2.1.18/config/locales/devise.en.yml +61 -0
- data/testing-with-2.1.18/config/locales/devise.es.yml +62 -0
- data/testing-with-2.1.18/config/locales/en.yml +477 -0
- data/testing-with-2.1.18/config/locales/es.yml +510 -0
- data/testing-with-2.1.18/config/locales/routes.en.yml +4 -0
- data/testing-with-2.1.18/config/locales/routes.es.yml +5 -0
- data/testing-with-2.1.18/config/locales/simple_form.en.yml +46 -0
- data/testing-with-2.1.18/config/locales/simple_form.es.yml +96 -0
- data/testing-with-2.1.18/config/locales/social_share_button.es.yml +10 -0
- data/testing-with-2.1.18/config/menu.yml +58 -0
- data/testing-with-2.1.18/config/permissions.yml +39 -0
- data/testing-with-2.1.18/config/puma.rb +56 -0
- data/testing-with-2.1.18/config/roles.yml +2 -0
- data/testing-with-2.1.18/config/routes.rb +191 -0
- data/testing-with-2.1.18/config/settings.yml +30 -0
- data/testing-with-2.1.18/config/sitemap.rb +30 -0
- data/testing-with-2.1.18/config/spring.rb +6 -0
- data/testing-with-2.1.18/db/migrate/20140812203549_devise_create_users.rb +50 -0
- data/testing-with-2.1.18/db/migrate/20140812210925_rolify_create_roles.rb +21 -0
- data/testing-with-2.1.18/db/migrate/20151221173228_create_activities.rb +23 -0
- data/testing-with-2.1.18/db/migrate/20160122201215_create_settings.rb +15 -0
- data/testing-with-2.1.18/db/migrate/20160126141856_create_smtp_settings.rb +15 -0
- data/testing-with-2.1.18/db/migrate/20160128131802_create_scripts.rb +12 -0
- data/testing-with-2.1.18/db/migrate/20160128151351_create_google_analytics_settings.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20160128193740_create_social_accounts.rb +26 -0
- data/testing-with-2.1.18/db/migrate/20160201134918_create_meta_tags.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20160201210520_create_appearances.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20171225023933_create_scaffolds.rb +10 -0
- data/testing-with-2.1.18/db/migrate/20180503174351_create_permissions.rb +11 -0
- data/testing-with-2.1.18/db/migrate/20180717160308_create_keppler_frontend_views.keppler_frontend.rb +17 -0
- data/testing-with-2.1.18/db/migrate/20180730194655_create_keppler_frontend_themes.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180802184429_create_keppler_capsules_capsules.keppler_capsules.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180802184430_create_keppler_capsules_capsule_fields.keppler_capsules.rb +12 -0
- data/testing-with-2.1.18/db/migrate/20180806192023_create_keppler_capsules_capsule_validations.keppler_capsules.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180806203410_create_keppler_frontend_partials.keppler_frontend.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180807204310_create_keppler_capsules_capsule_associations.keppler_capsules.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180813160624_create_keppler_languages_languages.keppler_languages.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180813160625_create_keppler_languages_fields.keppler_languages.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180818073305_create_active_storage_tables.active_storage.rb +26 -0
- data/testing-with-2.1.18/db/migrate/20180827120841_create_keppler_frontend_callback_functions.keppler_frontend.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180827154329_create_keppler_frontend_view_callbacks.keppler_frontend.rb +12 -0
- data/testing-with-2.1.18/db/migrate/20180827154647_add_position_to_users_table.rb +5 -0
- data/testing-with-2.1.18/db/migrate/20180830153221_create_keppler_frontend_functions.keppler_frontend.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180830153222_create_keppler_frontend_parameters.keppler_frontend.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180904144238_create_seos.rb +11 -0
- data/testing-with-2.1.18/db/seeds.rb +162 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_core/config +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/editor/resources_editor.dia +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/views/create_view.dia +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/views/delete_view.dia +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/views/delete_view.dia.autosave +0 -0
- data/testing-with-2.1.18/lib/generators/install_rocket/USAGE +44 -0
- data/testing-with-2.1.18/lib/generators/install_rocket/install_rocket_generator.rb +107 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/USAGE +5 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/keppler_add_module_generator.rb +324 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/controllers/controller.rb +106 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/models/model.rb +29 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/policies/policy.rb +11 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/_description.haml +13 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/_form.haml +49 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/_listing.haml +58 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/edit.haml +1 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/index.haml +70 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/new.haml +1 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/reload.js.haml +5 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/show.haml +35 -0
- data/testing-with-2.1.18/lib/generators/keppler_delete_module/USAGE +5 -0
- data/testing-with-2.1.18/lib/generators/keppler_delete_module/keppler_delete_module_generator.rb +305 -0
- data/testing-with-2.1.18/lib/generators/keppler_front/keppler_front_generator.rb +139 -0
- data/testing-with-2.1.18/lib/generators/keppler_front/templates/controllers/controller.rb +17 -0
- data/testing-with-2.1.18/lib/generators/keppler_front/templates/views/template.html.haml +225 -0
- data/testing-with-2.1.18/lib/generators/keppler_relation/keppler_relation_generator.rb +219 -0
- data/testing-with-2.1.18/lib/generators/new_rocket/USAGE +44 -0
- data/testing-with-2.1.18/lib/generators/new_rocket/new_rocket_generator.rb +258 -0
- data/testing-with-2.1.18/lib/generators/uninstall_rocket/USAGE +32 -0
- data/testing-with-2.1.18/lib/generators/uninstall_rocket/uninstall_rocket_generator.rb +140 -0
- data/testing-with-2.1.18/lib/keppler_configuration.rb +12 -0
- data/testing-with-2.1.18/lib/plugins/config/locales/en.yml +16 -0
- data/testing-with-2.1.18/lib/plugins/config/locales/es.yml +16 -0
- data/testing-with-2.1.18/lib/plugins/config/menu.yml +16 -0
- data/testing-with-2.1.18/lib/plugins/config/permissions.yml +1 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/keppler_scaffold_generator.rb +223 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/controllers/controller.rb +107 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/models/model.rb +29 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/policies/policy.rb +14 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/_description.haml +13 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/_form.haml +49 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/_listing.haml +58 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/edit.haml +1 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/index.haml +69 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/new.haml +1 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/reload.js.haml +5 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/show.haml +35 -0
- data/testing-with-2.1.18/lib/plugins/install.rb +151 -0
- data/testing-with-2.1.18/lib/plugins/layouts/application.html.haml +23 -0
- data/testing-with-2.1.18/lib/templates/haml/scaffold/_form.html.haml +10 -0
- metadata +564 -3
- data/installer/core/.sass-cache/c3e12133096533fa0f5c2d91446553934f6099d2/(__TEMPLATE__)c +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a0a8337002ce57f3a777fa0a3bf6c41d8eb0cc4b765a680c0ab43ac1074d9d4
|
4
|
+
data.tar.gz: d023f9d6354909d7709e610632a4e8fd8badf48d2a231cc18e28212221fe709a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24d39dcfa9c06d7bcf8139c2e761e8c3dd4b6e047bf3032668880421b39a3c9f242b59019ea98effe0654df48910a1d05480b0b02f97c27d9cc8bfe184c9e3ee
|
7
|
+
data.tar.gz: 10a7fcd7e4f94eeef7233c61ee6191c1dd6ece3d77ec3a43bdedec85fd38f41c853a896b50848d6d7f923ba20d80acf6a5e9558144f65527c2a42519ad8f814a
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
keppler (2.1.
|
4
|
+
keppler (2.1.18)
|
5
5
|
httparty
|
6
6
|
thor
|
7
7
|
|
@@ -13,7 +13,7 @@ GEM
|
|
13
13
|
multi_xml (>= 0.5.2)
|
14
14
|
mime-types (3.2.2)
|
15
15
|
mime-types-data (~> 3.2015)
|
16
|
-
mime-types-data (3.
|
16
|
+
mime-types-data (3.2019.0331)
|
17
17
|
multi_xml (0.6.0)
|
18
18
|
rake (10.5.0)
|
19
19
|
thor (0.20.3)
|
@@ -0,0 +1,88 @@
|
|
1
|
+
#----------------------------------------------------------------------------
|
2
|
+
# Ignore these files when commiting to a git repository.
|
3
|
+
#
|
4
|
+
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
5
|
+
#
|
6
|
+
# The original version of this file is found here:
|
7
|
+
# https://github.com/RailsApps/rails-composer/blob/master/files/gitignore.txt
|
8
|
+
#
|
9
|
+
# Corrections? Improvements? Create a GitHub issue:
|
10
|
+
# http://github.com/RailsApps/rails-composer/issues
|
11
|
+
#----------------------------------------------------------------------------
|
12
|
+
|
13
|
+
# bundler state
|
14
|
+
/.bundle
|
15
|
+
/vendor/bundle/
|
16
|
+
/vendor/ruby/
|
17
|
+
/public/uploads
|
18
|
+
# minimal Rails specific artifacts
|
19
|
+
db/*.sqlite3
|
20
|
+
db/schema.rb
|
21
|
+
/db/*.sqlite3-journal
|
22
|
+
/log
|
23
|
+
/log/*
|
24
|
+
/tmp
|
25
|
+
/tmp/*
|
26
|
+
# various artifacts
|
27
|
+
**.war
|
28
|
+
*.rbc
|
29
|
+
*.sassc
|
30
|
+
.redcar/
|
31
|
+
.sass-cache
|
32
|
+
.byebug_history
|
33
|
+
/.byebug_history
|
34
|
+
/app/assets/javascripts/guard_javascript/*
|
35
|
+
/app/assets/stylesheets/frontend/native_stylesheets/guard_stylesheets/*
|
36
|
+
/config/application.yml
|
37
|
+
/config/secrets.yml
|
38
|
+
/config/secrets.yml.example
|
39
|
+
/coverage.data
|
40
|
+
/coverage/
|
41
|
+
/db/*.javadb/
|
42
|
+
/db/*.sqlite3
|
43
|
+
/db/schema.rb
|
44
|
+
/doc/api/
|
45
|
+
/doc/app/
|
46
|
+
/doc/features.html
|
47
|
+
/doc/specs.html
|
48
|
+
/public/cache
|
49
|
+
/public/uploads
|
50
|
+
/public/stylesheets/compiled
|
51
|
+
/public/system/*
|
52
|
+
/spec/tmp/*
|
53
|
+
/cache
|
54
|
+
/capybara*
|
55
|
+
/capybara-*.html
|
56
|
+
/gems
|
57
|
+
/specifications
|
58
|
+
rerun.txt
|
59
|
+
pickle-email-*.html
|
60
|
+
.zeus.sock
|
61
|
+
|
62
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
63
|
+
# or operating system, you probably want to add a global ignore instead:
|
64
|
+
# git config --global core.excludesfile ~/.gitignore_global
|
65
|
+
#
|
66
|
+
# Here are some files you may want to ignore globally:
|
67
|
+
|
68
|
+
# scm revert files
|
69
|
+
**.orig
|
70
|
+
|
71
|
+
# Mac finder artifacts
|
72
|
+
.DS_Store
|
73
|
+
|
74
|
+
# Netbeans project directory
|
75
|
+
/nbproject/
|
76
|
+
|
77
|
+
# RubyMine project files
|
78
|
+
.idea
|
79
|
+
|
80
|
+
# Textmate project files
|
81
|
+
/*.tmproj
|
82
|
+
|
83
|
+
# vim artifacts
|
84
|
+
**.swp
|
85
|
+
|
86
|
+
# Environment files that may contain sensitive data
|
87
|
+
.env
|
88
|
+
.powenv
|
@@ -66,8 +66,8 @@
|
|
66
66
|
ev.preventDefault();
|
67
67
|
swal({
|
68
68
|
html: '<h1 class="modal-h1">Keppler <span>Admin</span></h1><div class="modal-info">' +
|
69
|
-
'<span> v 2.1.
|
70
|
-
"<span>#{t('keppler.release_date')}: 25/
|
69
|
+
'<span> v 2.1.18 </span>' +
|
70
|
+
"<span>#{t('keppler.release_date')}: 25/10/2018</span>" +
|
71
71
|
'<span>Ruby on Rails v 5.2.1</span>' +
|
72
72
|
'<ul class= "modal-social">' +
|
73
73
|
'<li><a href= "https://www.facebook.com/slicegroupxyz/" target= "_blank"><i class= "icon-social-facebook"></i></a></li>' +
|
data/lib/keppler/version.rb
CHANGED
@@ -0,0 +1,88 @@
|
|
1
|
+
#----------------------------------------------------------------------------
|
2
|
+
# Ignore these files when commiting to a git repository.
|
3
|
+
#
|
4
|
+
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
5
|
+
#
|
6
|
+
# The original version of this file is found here:
|
7
|
+
# https://github.com/RailsApps/rails-composer/blob/master/files/gitignore.txt
|
8
|
+
#
|
9
|
+
# Corrections? Improvements? Create a GitHub issue:
|
10
|
+
# http://github.com/RailsApps/rails-composer/issues
|
11
|
+
#----------------------------------------------------------------------------
|
12
|
+
|
13
|
+
# bundler state
|
14
|
+
/.bundle
|
15
|
+
/vendor/bundle/
|
16
|
+
/vendor/ruby/
|
17
|
+
/public/uploads
|
18
|
+
# minimal Rails specific artifacts
|
19
|
+
db/*.sqlite3
|
20
|
+
db/schema.rb
|
21
|
+
/db/*.sqlite3-journal
|
22
|
+
/log
|
23
|
+
/log/*
|
24
|
+
/tmp
|
25
|
+
/tmp/*
|
26
|
+
# various artifacts
|
27
|
+
**.war
|
28
|
+
*.rbc
|
29
|
+
*.sassc
|
30
|
+
.redcar/
|
31
|
+
.sass-cache
|
32
|
+
.byebug_history
|
33
|
+
/.byebug_history
|
34
|
+
/app/assets/javascripts/guard_javascript/*
|
35
|
+
/app/assets/stylesheets/frontend/native_stylesheets/guard_stylesheets/*
|
36
|
+
/config/application.yml
|
37
|
+
/config/secrets.yml
|
38
|
+
/config/secrets.yml.example
|
39
|
+
/coverage.data
|
40
|
+
/coverage/
|
41
|
+
/db/*.javadb/
|
42
|
+
/db/*.sqlite3
|
43
|
+
/db/schema.rb
|
44
|
+
/doc/api/
|
45
|
+
/doc/app/
|
46
|
+
/doc/features.html
|
47
|
+
/doc/specs.html
|
48
|
+
/public/cache
|
49
|
+
/public/uploads
|
50
|
+
/public/stylesheets/compiled
|
51
|
+
/public/system/*
|
52
|
+
/spec/tmp/*
|
53
|
+
/cache
|
54
|
+
/capybara*
|
55
|
+
/capybara-*.html
|
56
|
+
/gems
|
57
|
+
/specifications
|
58
|
+
rerun.txt
|
59
|
+
pickle-email-*.html
|
60
|
+
.zeus.sock
|
61
|
+
|
62
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
63
|
+
# or operating system, you probably want to add a global ignore instead:
|
64
|
+
# git config --global core.excludesfile ~/.gitignore_global
|
65
|
+
#
|
66
|
+
# Here are some files you may want to ignore globally:
|
67
|
+
|
68
|
+
# scm revert files
|
69
|
+
**.orig
|
70
|
+
|
71
|
+
# Mac finder artifacts
|
72
|
+
.DS_Store
|
73
|
+
|
74
|
+
# Netbeans project directory
|
75
|
+
/nbproject/
|
76
|
+
|
77
|
+
# RubyMine project files
|
78
|
+
.idea
|
79
|
+
|
80
|
+
# Textmate project files
|
81
|
+
/*.tmproj
|
82
|
+
|
83
|
+
# vim artifacts
|
84
|
+
**.swp
|
85
|
+
|
86
|
+
# Environment files that may contain sensitive data
|
87
|
+
.env
|
88
|
+
.powenv
|
@@ -0,0 +1 @@
|
|
1
|
+
2.5.1
|
@@ -0,0 +1,149 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
ruby '2.5.1'
|
5
|
+
gem 'rails', '5.2.0'
|
6
|
+
# gem 'keppler'
|
7
|
+
gem 'httparty'
|
8
|
+
gem "sprockets", ">= 3.7.2"
|
9
|
+
# Javascript
|
10
|
+
gem 'ckeditor', '4.2.4'
|
11
|
+
gem 'jquery-rails', '4.3' # jQuery library
|
12
|
+
gem 'nprogress-rails', '0.2.0.2' #
|
13
|
+
gem 'remotipart', '1.3.0'
|
14
|
+
gem 'vuejs-rails', '2.5.13' # VueJS library
|
15
|
+
# gem 'rails-assets-sweetalert2', '~> 5.1.1', source: 'https://rails-assets.org'
|
16
|
+
# gem 'sweet-alert2-rails'
|
17
|
+
# gem 'sweetalert2'
|
18
|
+
|
19
|
+
# Server
|
20
|
+
gem 'puma', '~> 3.11', '>= 3.11.3'
|
21
|
+
|
22
|
+
# Documentation
|
23
|
+
gem 'sdoc', '1.0.0'
|
24
|
+
|
25
|
+
# Pipelines
|
26
|
+
gem 'coffee-rails', '4.2.2'
|
27
|
+
gem 'haml-rails', '1.0'
|
28
|
+
gem 'sass-rails', '5.0.7'
|
29
|
+
|
30
|
+
gem 'acts_as_list', '0.9.11'
|
31
|
+
# gem 'jbuilder', '~> 2.7'
|
32
|
+
gem 'jquery-turbolinks', '2.1.0'
|
33
|
+
gem 'jquery-ui-rails', '6.0.1'
|
34
|
+
# gem 'therubyracer', '~> 0.11.4', platforms: :ruby
|
35
|
+
gem 'to_xls-rails', '1.3.1'
|
36
|
+
gem 'turbolinks', '5.1.0'
|
37
|
+
gem 'uglifier', '4.1.8'
|
38
|
+
|
39
|
+
# Database
|
40
|
+
gem 'pg', '1.0.0'
|
41
|
+
# gem 'mysql2', '~> 0.3.18'
|
42
|
+
|
43
|
+
# SEO
|
44
|
+
gem 'sitemap_generator', '6.0.1'
|
45
|
+
|
46
|
+
# History
|
47
|
+
gem 'public_activity', '1.5.0'
|
48
|
+
|
49
|
+
# AdminLTE
|
50
|
+
source 'https://rails-assets.org' do
|
51
|
+
gem 'rails-assets-adminlte'
|
52
|
+
gem 'rails-assets-animate-css'
|
53
|
+
gem 'rails-assets-simple-line-icons'
|
54
|
+
end
|
55
|
+
|
56
|
+
# Soft delete
|
57
|
+
gem 'paranoia', '2.4.1'
|
58
|
+
gem "loofah", ">= 2.2.3"
|
59
|
+
gem 'goldiloader', '2.1.1'
|
60
|
+
#
|
61
|
+
# gem 'codemirror-rails', '5.15.2'
|
62
|
+
|
63
|
+
# Forms
|
64
|
+
gem 'cocoon', '1.2.11'
|
65
|
+
gem 'jquery-minicolors-rails', '~> 2.2', '>= 2.2.6.0'
|
66
|
+
gem 'simple_form', '4.0.0'
|
67
|
+
gem 'country_select', '3.1.1'
|
68
|
+
|
69
|
+
# Upload
|
70
|
+
gem 'carrierwave', '1.2.2'
|
71
|
+
gem 'carrierwave-imageoptimizer', '~> 1.4'
|
72
|
+
gem 'mini_magick', '4.8.0'
|
73
|
+
gem 'rmagick', '2.16.0' # fix issue: 'sudo apt install libmagick++-dev'
|
74
|
+
gem 'rubyzip'
|
75
|
+
|
76
|
+
# Design
|
77
|
+
gem 'bootstrap-sass', '3.3.7'
|
78
|
+
gem 'bourbon', '5.0.0'
|
79
|
+
gem 'font-awesome-sass', '5.0.9'
|
80
|
+
gem 'jquery-slick-rails', '1.9.0'
|
81
|
+
|
82
|
+
# Authentication and Authorization
|
83
|
+
gem 'devise', '4.4.3'
|
84
|
+
gem 'devise-i18n', '1.6.1'
|
85
|
+
gem 'pundit', '1.1.0'
|
86
|
+
gem 'rolify', '5.2.0'
|
87
|
+
|
88
|
+
# Search
|
89
|
+
# gem 'ransack', git: 'https://github.com/activerecord-hackery/ransack'
|
90
|
+
gem 'ransack', '1.8.8'
|
91
|
+
|
92
|
+
# Route translation
|
93
|
+
gem 'route_translator', '5.6.2'
|
94
|
+
|
95
|
+
# Pagination
|
96
|
+
gem 'kaminari', '~> 1.1', '>= 1.1.1'
|
97
|
+
gem 'kaminari-i18n', '0.5.0'
|
98
|
+
|
99
|
+
# Reduces boot times through caching; required in config/boot.rb
|
100
|
+
gem 'bootsnap', '>= 1.1.0', require: false
|
101
|
+
|
102
|
+
#javascript
|
103
|
+
gem 'gon', '6.2.1'
|
104
|
+
|
105
|
+
|
106
|
+
# Development
|
107
|
+
group :development do
|
108
|
+
gem 'better_errors', '2.4.0'
|
109
|
+
gem 'binding_of_caller', '~> 0.8.0'
|
110
|
+
gem 'byebug', '10.0.2'
|
111
|
+
gem 'commands', '0.2.1'
|
112
|
+
gem 'brakeman', '4.3.0'
|
113
|
+
gem 'htmlbeautifier', '1.3.1'
|
114
|
+
# gem 'guard'
|
115
|
+
# gem 'guard-coffeescript'
|
116
|
+
gem 'guard-livereload', '2.5.2', require: false
|
117
|
+
# gem 'guard-sass'
|
118
|
+
# gem 'quiet_assets'
|
119
|
+
# gem 'rails_layout'
|
120
|
+
gem 'spring', '2.0.2'
|
121
|
+
gem 'table_print'
|
122
|
+
gem 'web-console', '>= 3.3.0'
|
123
|
+
end
|
124
|
+
|
125
|
+
group :development, :test do
|
126
|
+
gem 'database_cleaner', '~> 1.5'
|
127
|
+
gem 'factory_bot_rails'
|
128
|
+
gem 'faker', '1.8.7'
|
129
|
+
gem 'haml_lint', '~> 0.27.0', require: false
|
130
|
+
gem 'jshint' # JavaScripts Linter
|
131
|
+
gem 'rspec-rails', '~> 3.7'
|
132
|
+
gem 'rubocop', '~> 0.54.0', require: false
|
133
|
+
gem "rubycritic", '3.4.0', require: false
|
134
|
+
gem 'scss_lint', '~> 0.57.0', require: false
|
135
|
+
gem 'shoulda-matchers', '~> 3.0', require: false
|
136
|
+
gem 'pundit-matchers', '~> 1.4.1'
|
137
|
+
gem 'rails-controller-testing'
|
138
|
+
end
|
139
|
+
|
140
|
+
gem 'google-api-client', '~> 0.7.1'
|
141
|
+
gem 'acts-as-taggable-on', '6.0'
|
142
|
+
gem 'bootstrap-tagsinput-rails'
|
143
|
+
gem 'social-share-button'
|
144
|
+
|
145
|
+
# ----- Rockets ----- #
|
146
|
+
gem 'keppler_ga_dashboard', path: 'rockets/keppler_ga_dashboard'
|
147
|
+
gem 'keppler_frontend', path: 'rockets/keppler_frontend'
|
148
|
+
gem 'keppler_languages', path: 'rockets/keppler_languages'
|
149
|
+
gem 'keppler_capsules', path: 'rockets/keppler_capsules'
|
@@ -0,0 +1,645 @@
|
|
1
|
+
PATH
|
2
|
+
remote: rockets/keppler_capsules
|
3
|
+
specs:
|
4
|
+
keppler_capsules (0.1.0)
|
5
|
+
cocoon
|
6
|
+
haml_rails
|
7
|
+
pundit
|
8
|
+
rails (= 5.2.0)
|
9
|
+
simple_form
|
10
|
+
|
11
|
+
PATH
|
12
|
+
remote: rockets/keppler_frontend
|
13
|
+
specs:
|
14
|
+
keppler_frontend (0.1.0)
|
15
|
+
haml_rails
|
16
|
+
pundit
|
17
|
+
rails (= 5.2.0)
|
18
|
+
simple_form
|
19
|
+
|
20
|
+
PATH
|
21
|
+
remote: rockets/keppler_ga_dashboard
|
22
|
+
specs:
|
23
|
+
keppler_ga_dashboard (0.0.1)
|
24
|
+
rails (= 5.2.0)
|
25
|
+
|
26
|
+
PATH
|
27
|
+
remote: rockets/keppler_languages
|
28
|
+
specs:
|
29
|
+
keppler_languages (0.1.0)
|
30
|
+
country_select
|
31
|
+
haml_rails
|
32
|
+
pundit
|
33
|
+
rails (= 5.2.0)
|
34
|
+
simple_form
|
35
|
+
|
36
|
+
GEM
|
37
|
+
remote: https://rubygems.org/
|
38
|
+
remote: https://rails-assets.org/
|
39
|
+
specs:
|
40
|
+
actioncable (5.2.0)
|
41
|
+
actionpack (= 5.2.0)
|
42
|
+
nio4r (~> 2.0)
|
43
|
+
websocket-driver (>= 0.6.1)
|
44
|
+
actionmailer (5.2.0)
|
45
|
+
actionpack (= 5.2.0)
|
46
|
+
actionview (= 5.2.0)
|
47
|
+
activejob (= 5.2.0)
|
48
|
+
mail (~> 2.5, >= 2.5.4)
|
49
|
+
rails-dom-testing (~> 2.0)
|
50
|
+
actionpack (5.2.0)
|
51
|
+
actionview (= 5.2.0)
|
52
|
+
activesupport (= 5.2.0)
|
53
|
+
rack (~> 2.0)
|
54
|
+
rack-test (>= 0.6.3)
|
55
|
+
rails-dom-testing (~> 2.0)
|
56
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
57
|
+
actionview (5.2.0)
|
58
|
+
activesupport (= 5.2.0)
|
59
|
+
builder (~> 3.1)
|
60
|
+
erubi (~> 1.4)
|
61
|
+
rails-dom-testing (~> 2.0)
|
62
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
63
|
+
activejob (5.2.0)
|
64
|
+
activesupport (= 5.2.0)
|
65
|
+
globalid (>= 0.3.6)
|
66
|
+
activemodel (5.2.0)
|
67
|
+
activesupport (= 5.2.0)
|
68
|
+
activerecord (5.2.0)
|
69
|
+
activemodel (= 5.2.0)
|
70
|
+
activesupport (= 5.2.0)
|
71
|
+
arel (>= 9.0)
|
72
|
+
activestorage (5.2.0)
|
73
|
+
actionpack (= 5.2.0)
|
74
|
+
activerecord (= 5.2.0)
|
75
|
+
marcel (~> 0.3.1)
|
76
|
+
activesupport (5.2.0)
|
77
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
78
|
+
i18n (>= 0.7, < 2)
|
79
|
+
minitest (~> 5.1)
|
80
|
+
tzinfo (~> 1.1)
|
81
|
+
acts-as-taggable-on (6.0.0)
|
82
|
+
activerecord (~> 5.0)
|
83
|
+
acts_as_list (0.9.11)
|
84
|
+
activerecord (>= 3.0)
|
85
|
+
addressable (2.5.2)
|
86
|
+
public_suffix (>= 2.0.2, < 4.0)
|
87
|
+
arel (9.0.0)
|
88
|
+
ast (2.4.0)
|
89
|
+
autoparse (0.3.3)
|
90
|
+
addressable (>= 2.3.1)
|
91
|
+
extlib (>= 0.9.15)
|
92
|
+
multi_json (>= 1.0.0)
|
93
|
+
autoprefixer-rails (9.3.1)
|
94
|
+
execjs
|
95
|
+
axiom-types (0.1.1)
|
96
|
+
descendants_tracker (~> 0.0.4)
|
97
|
+
ice_nine (~> 0.11.0)
|
98
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
99
|
+
bcrypt (3.1.12)
|
100
|
+
better_errors (2.4.0)
|
101
|
+
coderay (>= 1.0.0)
|
102
|
+
erubi (>= 1.0.0)
|
103
|
+
rack (>= 0.9.0)
|
104
|
+
bindex (0.5.0)
|
105
|
+
binding_of_caller (0.8.0)
|
106
|
+
debug_inspector (>= 0.0.1)
|
107
|
+
bootsnap (1.3.2)
|
108
|
+
msgpack (~> 1.0)
|
109
|
+
bootstrap-sass (3.3.7)
|
110
|
+
autoprefixer-rails (>= 5.2.1)
|
111
|
+
sass (>= 3.3.4)
|
112
|
+
bootstrap-tagsinput-rails (0.4.2.1)
|
113
|
+
railties (>= 3.1)
|
114
|
+
bourbon (5.0.0)
|
115
|
+
sass (~> 3.4)
|
116
|
+
thor (~> 0.19)
|
117
|
+
brakeman (4.3.0)
|
118
|
+
builder (3.2.3)
|
119
|
+
byebug (10.0.2)
|
120
|
+
carrierwave (1.2.2)
|
121
|
+
activemodel (>= 4.0.0)
|
122
|
+
activesupport (>= 4.0.0)
|
123
|
+
mime-types (>= 1.16)
|
124
|
+
carrierwave-imageoptimizer (1.4.0)
|
125
|
+
carrierwave (>= 0.8, < 2.0)
|
126
|
+
image_optimizer (~> 1.6)
|
127
|
+
ckeditor (4.2.4)
|
128
|
+
cocaine
|
129
|
+
orm_adapter (~> 0.5.0)
|
130
|
+
climate_control (0.2.0)
|
131
|
+
cocaine (0.6.0)
|
132
|
+
terrapin (= 0.6.0)
|
133
|
+
cocoon (1.2.11)
|
134
|
+
codeclimate-engine-rb (0.4.1)
|
135
|
+
virtus (~> 1.0)
|
136
|
+
coderay (1.1.2)
|
137
|
+
coercible (1.0.0)
|
138
|
+
descendants_tracker (~> 0.0.1)
|
139
|
+
coffee-rails (4.2.2)
|
140
|
+
coffee-script (>= 2.2.0)
|
141
|
+
railties (>= 4.0.0)
|
142
|
+
coffee-script (2.4.1)
|
143
|
+
coffee-script-source
|
144
|
+
execjs
|
145
|
+
coffee-script-source (1.12.2)
|
146
|
+
commands (0.2.1)
|
147
|
+
rails (>= 3.2.0)
|
148
|
+
concurrent-ruby (1.0.5)
|
149
|
+
countries (2.1.4)
|
150
|
+
i18n_data (~> 0.8.0)
|
151
|
+
money (~> 6.9)
|
152
|
+
sixarm_ruby_unaccent (~> 1.1)
|
153
|
+
unicode_utils (~> 1.4)
|
154
|
+
country_select (3.1.1)
|
155
|
+
countries (~> 2.0)
|
156
|
+
sort_alphabetical (~> 1.0)
|
157
|
+
crass (1.0.4)
|
158
|
+
database_cleaner (1.7.0)
|
159
|
+
debug_inspector (0.0.3)
|
160
|
+
descendants_tracker (0.0.4)
|
161
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
162
|
+
devise (4.4.3)
|
163
|
+
bcrypt (~> 3.0)
|
164
|
+
orm_adapter (~> 0.1)
|
165
|
+
railties (>= 4.1.0, < 6.0)
|
166
|
+
responders
|
167
|
+
warden (~> 1.2.3)
|
168
|
+
devise-i18n (1.6.1)
|
169
|
+
devise (>= 4.4)
|
170
|
+
diff-lcs (1.3)
|
171
|
+
em-websocket (0.5.1)
|
172
|
+
eventmachine (>= 0.12.9)
|
173
|
+
http_parser.rb (~> 0.6.0)
|
174
|
+
equalizer (0.0.11)
|
175
|
+
erubi (1.7.1)
|
176
|
+
erubis (2.7.0)
|
177
|
+
eventmachine (1.2.7)
|
178
|
+
execjs (2.7.0)
|
179
|
+
extlib (0.9.16)
|
180
|
+
factory_bot (4.11.1)
|
181
|
+
activesupport (>= 3.0.0)
|
182
|
+
factory_bot_rails (4.11.1)
|
183
|
+
factory_bot (~> 4.11.1)
|
184
|
+
railties (>= 3.0.0)
|
185
|
+
faker (1.8.7)
|
186
|
+
i18n (>= 0.7)
|
187
|
+
faraday (0.15.3)
|
188
|
+
multipart-post (>= 1.2, < 3)
|
189
|
+
ffi (1.9.25)
|
190
|
+
flay (2.12.0)
|
191
|
+
erubis (~> 2.7.0)
|
192
|
+
path_expander (~> 1.0)
|
193
|
+
ruby_parser (~> 3.0)
|
194
|
+
sexp_processor (~> 4.0)
|
195
|
+
flog (4.6.2)
|
196
|
+
path_expander (~> 1.0)
|
197
|
+
ruby_parser (~> 3.1, > 3.1.0)
|
198
|
+
sexp_processor (~> 4.8)
|
199
|
+
font-awesome-sass (5.0.9)
|
200
|
+
sass (>= 3.2)
|
201
|
+
formatador (0.2.5)
|
202
|
+
globalid (0.4.1)
|
203
|
+
activesupport (>= 4.2.0)
|
204
|
+
goldiloader (2.1.1)
|
205
|
+
activerecord (>= 4.2, < 5.3)
|
206
|
+
activesupport (>= 4.2, < 5.3)
|
207
|
+
gon (6.2.1)
|
208
|
+
actionpack (>= 3.0)
|
209
|
+
multi_json
|
210
|
+
request_store (>= 1.0)
|
211
|
+
google-api-client (0.7.1)
|
212
|
+
addressable (>= 2.3.2)
|
213
|
+
autoparse (>= 0.3.3)
|
214
|
+
extlib (>= 0.9.15)
|
215
|
+
faraday (>= 0.9.0)
|
216
|
+
jwt (>= 0.1.5)
|
217
|
+
launchy (>= 2.1.1)
|
218
|
+
multi_json (>= 1.0.0)
|
219
|
+
retriable (>= 1.4)
|
220
|
+
signet (>= 0.5.0)
|
221
|
+
uuidtools (>= 2.1.0)
|
222
|
+
guard (2.14.2)
|
223
|
+
formatador (>= 0.2.4)
|
224
|
+
listen (>= 2.7, < 4.0)
|
225
|
+
lumberjack (>= 1.0.12, < 2.0)
|
226
|
+
nenv (~> 0.1)
|
227
|
+
notiffany (~> 0.0)
|
228
|
+
pry (>= 0.9.12)
|
229
|
+
shellany (~> 0.0)
|
230
|
+
thor (>= 0.18.1)
|
231
|
+
guard-compat (1.2.1)
|
232
|
+
guard-livereload (2.5.2)
|
233
|
+
em-websocket (~> 0.5)
|
234
|
+
guard (~> 2.8)
|
235
|
+
guard-compat (~> 1.0)
|
236
|
+
multi_json (~> 1.8)
|
237
|
+
haml (5.0.4)
|
238
|
+
temple (>= 0.8.0)
|
239
|
+
tilt
|
240
|
+
haml-rails (1.0.0)
|
241
|
+
actionpack (>= 4.0.1)
|
242
|
+
activesupport (>= 4.0.1)
|
243
|
+
haml (>= 4.0.6, < 6.0)
|
244
|
+
html2haml (>= 1.0.1)
|
245
|
+
railties (>= 4.0.1)
|
246
|
+
haml_lint (0.27.0)
|
247
|
+
haml (>= 4.0, < 5.1)
|
248
|
+
rainbow
|
249
|
+
rake (>= 10, < 13)
|
250
|
+
rubocop (>= 0.50.0)
|
251
|
+
sysexits (~> 1.1)
|
252
|
+
haml_rails (0.1.0)
|
253
|
+
html2haml (2.2.0)
|
254
|
+
erubis (~> 2.7.0)
|
255
|
+
haml (>= 4.0, < 6)
|
256
|
+
nokogiri (>= 1.6.0)
|
257
|
+
ruby_parser (~> 3.5)
|
258
|
+
htmlbeautifier (1.3.1)
|
259
|
+
http_parser.rb (0.6.0)
|
260
|
+
httparty (0.16.2)
|
261
|
+
multi_xml (>= 0.5.2)
|
262
|
+
i18n (1.1.1)
|
263
|
+
concurrent-ruby (~> 1.0)
|
264
|
+
i18n_data (0.8.0)
|
265
|
+
ice_nine (0.11.2)
|
266
|
+
image_optimizer (1.8.0)
|
267
|
+
jquery-minicolors-rails (2.2.6.1)
|
268
|
+
jquery-rails
|
269
|
+
rails (>= 3.2.8)
|
270
|
+
jquery-rails (4.3.0)
|
271
|
+
rails-dom-testing (>= 1, < 3)
|
272
|
+
railties (>= 4.2.0)
|
273
|
+
thor (>= 0.14, < 2.0)
|
274
|
+
jquery-slick-rails (1.9.0)
|
275
|
+
railties (>= 3.1)
|
276
|
+
jquery-turbolinks (2.1.0)
|
277
|
+
railties (>= 3.1.0)
|
278
|
+
turbolinks
|
279
|
+
jquery-ui-rails (6.0.1)
|
280
|
+
railties (>= 3.2.16)
|
281
|
+
jshint (1.5.0)
|
282
|
+
execjs (>= 1.4.0)
|
283
|
+
multi_json (~> 1.0)
|
284
|
+
therubyracer (~> 0.12.1)
|
285
|
+
jwt (2.1.0)
|
286
|
+
kaminari (1.1.1)
|
287
|
+
activesupport (>= 4.1.0)
|
288
|
+
kaminari-actionview (= 1.1.1)
|
289
|
+
kaminari-activerecord (= 1.1.1)
|
290
|
+
kaminari-core (= 1.1.1)
|
291
|
+
kaminari-actionview (1.1.1)
|
292
|
+
actionview
|
293
|
+
kaminari-core (= 1.1.1)
|
294
|
+
kaminari-activerecord (1.1.1)
|
295
|
+
activerecord
|
296
|
+
kaminari-core (= 1.1.1)
|
297
|
+
kaminari-core (1.1.1)
|
298
|
+
kaminari-i18n (0.5.0)
|
299
|
+
kaminari
|
300
|
+
rails
|
301
|
+
launchy (2.4.3)
|
302
|
+
addressable (~> 2.3)
|
303
|
+
libv8 (3.16.14.19)
|
304
|
+
listen (3.1.5)
|
305
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
306
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
307
|
+
ruby_dep (~> 1.2)
|
308
|
+
loofah (2.2.3)
|
309
|
+
crass (~> 1.0.2)
|
310
|
+
nokogiri (>= 1.5.9)
|
311
|
+
lumberjack (1.0.13)
|
312
|
+
mail (2.7.1)
|
313
|
+
mini_mime (>= 0.1.1)
|
314
|
+
marcel (0.3.3)
|
315
|
+
mimemagic (~> 0.3.2)
|
316
|
+
method_source (0.9.0)
|
317
|
+
mime-types (3.2.2)
|
318
|
+
mime-types-data (~> 3.2015)
|
319
|
+
mime-types-data (3.2018.0812)
|
320
|
+
mimemagic (0.3.2)
|
321
|
+
mini_magick (4.8.0)
|
322
|
+
mini_mime (1.0.1)
|
323
|
+
mini_portile2 (2.3.0)
|
324
|
+
minitest (5.11.3)
|
325
|
+
money (6.13.1)
|
326
|
+
i18n (>= 0.6.4, <= 2)
|
327
|
+
msgpack (1.2.4)
|
328
|
+
multi_json (1.13.1)
|
329
|
+
multi_xml (0.6.0)
|
330
|
+
multipart-post (2.0.0)
|
331
|
+
nenv (0.3.0)
|
332
|
+
nio4r (2.3.1)
|
333
|
+
nokogiri (1.8.5)
|
334
|
+
mini_portile2 (~> 2.3.0)
|
335
|
+
notiffany (0.1.1)
|
336
|
+
nenv (~> 0.1)
|
337
|
+
shellany (~> 0.0)
|
338
|
+
nprogress-rails (0.2.0.2)
|
339
|
+
orm_adapter (0.5.0)
|
340
|
+
parallel (1.12.1)
|
341
|
+
paranoia (2.4.1)
|
342
|
+
activerecord (>= 4.0, < 5.3)
|
343
|
+
parser (2.5.3.0)
|
344
|
+
ast (~> 2.4.0)
|
345
|
+
path_expander (1.0.3)
|
346
|
+
pg (1.0.0)
|
347
|
+
polyamorous (1.3.3)
|
348
|
+
activerecord (>= 3.0)
|
349
|
+
powerpack (0.1.2)
|
350
|
+
pry (0.11.3)
|
351
|
+
coderay (~> 1.1.0)
|
352
|
+
method_source (~> 0.9.0)
|
353
|
+
public_activity (1.5.0)
|
354
|
+
actionpack (>= 3.0.0)
|
355
|
+
activerecord (>= 3.0)
|
356
|
+
i18n (>= 0.5.0)
|
357
|
+
railties (>= 3.0.0)
|
358
|
+
public_suffix (3.0.3)
|
359
|
+
puma (3.12.0)
|
360
|
+
pundit (1.1.0)
|
361
|
+
activesupport (>= 3.0.0)
|
362
|
+
pundit-matchers (1.4.1)
|
363
|
+
pundit (~> 1.1, >= 1.1.0)
|
364
|
+
rspec-rails (>= 3.0.0)
|
365
|
+
rack (2.0.5)
|
366
|
+
rack-test (1.1.0)
|
367
|
+
rack (>= 1.0, < 3)
|
368
|
+
rails (5.2.0)
|
369
|
+
actioncable (= 5.2.0)
|
370
|
+
actionmailer (= 5.2.0)
|
371
|
+
actionpack (= 5.2.0)
|
372
|
+
actionview (= 5.2.0)
|
373
|
+
activejob (= 5.2.0)
|
374
|
+
activemodel (= 5.2.0)
|
375
|
+
activerecord (= 5.2.0)
|
376
|
+
activestorage (= 5.2.0)
|
377
|
+
activesupport (= 5.2.0)
|
378
|
+
bundler (>= 1.3.0)
|
379
|
+
railties (= 5.2.0)
|
380
|
+
sprockets-rails (>= 2.0.0)
|
381
|
+
rails-assets-adminlte (2.3.11)
|
382
|
+
rails-assets-animate-css (3.7.0)
|
383
|
+
rails-assets-simple-line-icons (2.4.1)
|
384
|
+
rails-controller-testing (1.0.2)
|
385
|
+
actionpack (~> 5.x, >= 5.0.1)
|
386
|
+
actionview (~> 5.x, >= 5.0.1)
|
387
|
+
activesupport (~> 5.x)
|
388
|
+
rails-dom-testing (2.0.3)
|
389
|
+
activesupport (>= 4.2.0)
|
390
|
+
nokogiri (>= 1.6)
|
391
|
+
rails-html-sanitizer (1.0.4)
|
392
|
+
loofah (>= 2.2.3)
|
393
|
+
railties (5.2.0)
|
394
|
+
actionpack (= 5.2.0)
|
395
|
+
activesupport (= 5.2.0)
|
396
|
+
method_source
|
397
|
+
rake (>= 0.8.7)
|
398
|
+
thor (>= 0.18.1, < 2.0)
|
399
|
+
rainbow (3.0.0)
|
400
|
+
rake (12.3.1)
|
401
|
+
ransack (1.8.8)
|
402
|
+
actionpack (>= 3.0)
|
403
|
+
activerecord (>= 3.0)
|
404
|
+
activesupport (>= 3.0)
|
405
|
+
i18n
|
406
|
+
polyamorous (~> 1.3.2)
|
407
|
+
rb-fsevent (0.10.3)
|
408
|
+
rb-inotify (0.9.10)
|
409
|
+
ffi (>= 0.5.0, < 2)
|
410
|
+
rdoc (6.0.4)
|
411
|
+
reek (4.8.2)
|
412
|
+
codeclimate-engine-rb (~> 0.4.0)
|
413
|
+
parser (>= 2.5.0.0, < 2.6)
|
414
|
+
rainbow (>= 2.0, < 4.0)
|
415
|
+
ref (2.0.0)
|
416
|
+
remotipart (1.3.0)
|
417
|
+
request_store (1.4.1)
|
418
|
+
rack (>= 1.4)
|
419
|
+
responders (2.4.0)
|
420
|
+
actionpack (>= 4.2.0, < 5.3)
|
421
|
+
railties (>= 4.2.0, < 5.3)
|
422
|
+
retriable (3.1.2)
|
423
|
+
rmagick (2.16.0)
|
424
|
+
rolify (5.2.0)
|
425
|
+
route_translator (5.6.2)
|
426
|
+
actionpack (>= 5.0.0.1, < 6)
|
427
|
+
activesupport (>= 5.0.0.1, < 6)
|
428
|
+
rspec-core (3.8.0)
|
429
|
+
rspec-support (~> 3.8.0)
|
430
|
+
rspec-expectations (3.8.2)
|
431
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
432
|
+
rspec-support (~> 3.8.0)
|
433
|
+
rspec-mocks (3.8.0)
|
434
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
435
|
+
rspec-support (~> 3.8.0)
|
436
|
+
rspec-rails (3.8.1)
|
437
|
+
actionpack (>= 3.0)
|
438
|
+
activesupport (>= 3.0)
|
439
|
+
railties (>= 3.0)
|
440
|
+
rspec-core (~> 3.8.0)
|
441
|
+
rspec-expectations (~> 3.8.0)
|
442
|
+
rspec-mocks (~> 3.8.0)
|
443
|
+
rspec-support (~> 3.8.0)
|
444
|
+
rspec-support (3.8.0)
|
445
|
+
rubocop (0.54.0)
|
446
|
+
parallel (~> 1.10)
|
447
|
+
parser (>= 2.5)
|
448
|
+
powerpack (~> 0.1)
|
449
|
+
rainbow (>= 2.2.2, < 4.0)
|
450
|
+
ruby-progressbar (~> 1.7)
|
451
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
452
|
+
ruby-ole (1.2.12.1)
|
453
|
+
ruby-progressbar (1.10.0)
|
454
|
+
ruby_dep (1.5.0)
|
455
|
+
ruby_parser (3.11.0)
|
456
|
+
sexp_processor (~> 4.9)
|
457
|
+
rubycritic (3.4.0)
|
458
|
+
flay (~> 2.8)
|
459
|
+
flog (~> 4.4)
|
460
|
+
launchy (= 2.4.3)
|
461
|
+
parser (~> 2.5.0)
|
462
|
+
rainbow (~> 3.0)
|
463
|
+
reek (~> 4.4)
|
464
|
+
ruby_parser (~> 3.8)
|
465
|
+
tty-which (~> 0.3.0)
|
466
|
+
virtus (~> 1.0)
|
467
|
+
rubyzip (1.2.2)
|
468
|
+
sass (3.6.0)
|
469
|
+
sass-listen (~> 4.0.0)
|
470
|
+
sass-listen (4.0.0)
|
471
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
472
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
473
|
+
sass-rails (5.0.7)
|
474
|
+
railties (>= 4.0.0, < 6)
|
475
|
+
sass (~> 3.1)
|
476
|
+
sprockets (>= 2.8, < 4.0)
|
477
|
+
sprockets-rails (>= 2.0, < 4.0)
|
478
|
+
tilt (>= 1.1, < 3)
|
479
|
+
scss_lint (0.57.1)
|
480
|
+
rake (>= 0.9, < 13)
|
481
|
+
sass (~> 3.5, >= 3.5.5)
|
482
|
+
sdoc (1.0.0)
|
483
|
+
rdoc (>= 5.0)
|
484
|
+
sexp_processor (4.11.0)
|
485
|
+
shellany (0.0.1)
|
486
|
+
shoulda-matchers (3.1.2)
|
487
|
+
activesupport (>= 4.0.0)
|
488
|
+
signet (0.11.0)
|
489
|
+
addressable (~> 2.3)
|
490
|
+
faraday (~> 0.9)
|
491
|
+
jwt (>= 1.5, < 3.0)
|
492
|
+
multi_json (~> 1.10)
|
493
|
+
simple_form (4.0.0)
|
494
|
+
actionpack (> 4)
|
495
|
+
activemodel (> 4)
|
496
|
+
sitemap_generator (6.0.1)
|
497
|
+
builder (~> 3.0)
|
498
|
+
sixarm_ruby_unaccent (1.2.0)
|
499
|
+
social-share-button (1.1.0)
|
500
|
+
coffee-rails
|
501
|
+
sort_alphabetical (1.1.0)
|
502
|
+
unicode_utils (>= 1.2.2)
|
503
|
+
spreadsheet (1.1.8)
|
504
|
+
ruby-ole (>= 1.0)
|
505
|
+
spring (2.0.2)
|
506
|
+
activesupport (>= 4.2)
|
507
|
+
sprockets (3.7.2)
|
508
|
+
concurrent-ruby (~> 1.0)
|
509
|
+
rack (> 1, < 3)
|
510
|
+
sprockets-rails (3.2.1)
|
511
|
+
actionpack (>= 4.0)
|
512
|
+
activesupport (>= 4.0)
|
513
|
+
sprockets (>= 3.0.0)
|
514
|
+
sysexits (1.2.0)
|
515
|
+
table_print (1.5.6)
|
516
|
+
temple (0.8.0)
|
517
|
+
terrapin (0.6.0)
|
518
|
+
climate_control (>= 0.0.3, < 1.0)
|
519
|
+
therubyracer (0.12.3)
|
520
|
+
libv8 (~> 3.16.14.15)
|
521
|
+
ref
|
522
|
+
thor (0.20.0)
|
523
|
+
thread_safe (0.3.6)
|
524
|
+
tilt (2.0.8)
|
525
|
+
to_xls-rails (1.3.1)
|
526
|
+
spreadsheet (>= 0.8.5)
|
527
|
+
tty-which (0.3.0)
|
528
|
+
turbolinks (5.1.0)
|
529
|
+
turbolinks-source (~> 5.1)
|
530
|
+
turbolinks-source (5.2.0)
|
531
|
+
tzinfo (1.2.5)
|
532
|
+
thread_safe (~> 0.1)
|
533
|
+
uglifier (4.1.8)
|
534
|
+
execjs (>= 0.3.0, < 3)
|
535
|
+
unicode-display_width (1.4.0)
|
536
|
+
unicode_utils (1.4.0)
|
537
|
+
uuidtools (2.1.5)
|
538
|
+
virtus (1.0.5)
|
539
|
+
axiom-types (~> 0.1)
|
540
|
+
coercible (~> 1.0)
|
541
|
+
descendants_tracker (~> 0.0, >= 0.0.3)
|
542
|
+
equalizer (~> 0.0, >= 0.0.9)
|
543
|
+
vuejs-rails (2.5.13)
|
544
|
+
warden (1.2.7)
|
545
|
+
rack (>= 1.0)
|
546
|
+
web-console (3.7.0)
|
547
|
+
actionview (>= 5.0)
|
548
|
+
activemodel (>= 5.0)
|
549
|
+
bindex (>= 0.4.0)
|
550
|
+
railties (>= 5.0)
|
551
|
+
websocket-driver (0.7.0)
|
552
|
+
websocket-extensions (>= 0.1.0)
|
553
|
+
websocket-extensions (0.1.3)
|
554
|
+
|
555
|
+
PLATFORMS
|
556
|
+
ruby
|
557
|
+
|
558
|
+
DEPENDENCIES
|
559
|
+
acts-as-taggable-on (= 6.0)
|
560
|
+
acts_as_list (= 0.9.11)
|
561
|
+
better_errors (= 2.4.0)
|
562
|
+
binding_of_caller (~> 0.8.0)
|
563
|
+
bootsnap (>= 1.1.0)
|
564
|
+
bootstrap-sass (= 3.3.7)
|
565
|
+
bootstrap-tagsinput-rails
|
566
|
+
bourbon (= 5.0.0)
|
567
|
+
brakeman (= 4.3.0)
|
568
|
+
byebug (= 10.0.2)
|
569
|
+
carrierwave (= 1.2.2)
|
570
|
+
carrierwave-imageoptimizer (~> 1.4)
|
571
|
+
ckeditor (= 4.2.4)
|
572
|
+
cocoon (= 1.2.11)
|
573
|
+
coffee-rails (= 4.2.2)
|
574
|
+
commands (= 0.2.1)
|
575
|
+
country_select (= 3.1.1)
|
576
|
+
database_cleaner (~> 1.5)
|
577
|
+
devise (= 4.4.3)
|
578
|
+
devise-i18n (= 1.6.1)
|
579
|
+
factory_bot_rails
|
580
|
+
faker (= 1.8.7)
|
581
|
+
font-awesome-sass (= 5.0.9)
|
582
|
+
goldiloader (= 2.1.1)
|
583
|
+
gon (= 6.2.1)
|
584
|
+
google-api-client (~> 0.7.1)
|
585
|
+
guard-livereload (= 2.5.2)
|
586
|
+
haml-rails (= 1.0)
|
587
|
+
haml_lint (~> 0.27.0)
|
588
|
+
htmlbeautifier (= 1.3.1)
|
589
|
+
httparty
|
590
|
+
jquery-minicolors-rails (~> 2.2, >= 2.2.6.0)
|
591
|
+
jquery-rails (= 4.3)
|
592
|
+
jquery-slick-rails (= 1.9.0)
|
593
|
+
jquery-turbolinks (= 2.1.0)
|
594
|
+
jquery-ui-rails (= 6.0.1)
|
595
|
+
jshint
|
596
|
+
kaminari (~> 1.1, >= 1.1.1)
|
597
|
+
kaminari-i18n (= 0.5.0)
|
598
|
+
keppler_capsules!
|
599
|
+
keppler_frontend!
|
600
|
+
keppler_ga_dashboard!
|
601
|
+
keppler_languages!
|
602
|
+
loofah (>= 2.2.3)
|
603
|
+
mini_magick (= 4.8.0)
|
604
|
+
nprogress-rails (= 0.2.0.2)
|
605
|
+
paranoia (= 2.4.1)
|
606
|
+
pg (= 1.0.0)
|
607
|
+
public_activity (= 1.5.0)
|
608
|
+
puma (~> 3.11, >= 3.11.3)
|
609
|
+
pundit (= 1.1.0)
|
610
|
+
pundit-matchers (~> 1.4.1)
|
611
|
+
rails (= 5.2.0)
|
612
|
+
rails-assets-adminlte!
|
613
|
+
rails-assets-animate-css!
|
614
|
+
rails-assets-simple-line-icons!
|
615
|
+
rails-controller-testing
|
616
|
+
ransack (= 1.8.8)
|
617
|
+
remotipart (= 1.3.0)
|
618
|
+
rmagick (= 2.16.0)
|
619
|
+
rolify (= 5.2.0)
|
620
|
+
route_translator (= 5.6.2)
|
621
|
+
rspec-rails (~> 3.7)
|
622
|
+
rubocop (~> 0.54.0)
|
623
|
+
rubycritic (= 3.4.0)
|
624
|
+
rubyzip
|
625
|
+
sass-rails (= 5.0.7)
|
626
|
+
scss_lint (~> 0.57.0)
|
627
|
+
sdoc (= 1.0.0)
|
628
|
+
shoulda-matchers (~> 3.0)
|
629
|
+
simple_form (= 4.0.0)
|
630
|
+
sitemap_generator (= 6.0.1)
|
631
|
+
social-share-button
|
632
|
+
spring (= 2.0.2)
|
633
|
+
sprockets (>= 3.7.2)
|
634
|
+
table_print
|
635
|
+
to_xls-rails (= 1.3.1)
|
636
|
+
turbolinks (= 5.1.0)
|
637
|
+
uglifier (= 4.1.8)
|
638
|
+
vuejs-rails (= 2.5.13)
|
639
|
+
web-console (>= 3.3.0)
|
640
|
+
|
641
|
+
RUBY VERSION
|
642
|
+
ruby 2.5.1p57
|
643
|
+
|
644
|
+
BUNDLED WITH
|
645
|
+
1.17.1
|