polivalente 0.6.2 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -0
  3. data/app/assets/build/css/components/_bookmarks.scss +20 -0
  4. data/app/assets/build/css/components/_colors.scss +104 -0
  5. data/app/assets/build/css/components/_forms.scss +23 -0
  6. data/app/assets/build/css/components/_pagination.scss +75 -0
  7. data/app/assets/build/css/components/_player.scss +148 -0
  8. data/app/assets/build/css/components/_tags.scss +29 -0
  9. data/app/assets/build/css/components/_themes.scss +69 -0
  10. data/app/assets/build/css/components/_tribute.scss +25 -0
  11. data/app/assets/build/css/components/plyr.css +1 -0
  12. data/app/assets/build/css/components/trix/_clipboard.scss +27 -0
  13. data/app/assets/build/css/components/trix/_trix.scss +181 -0
  14. data/app/assets/build/css/index.css +19 -0
  15. data/app/assets/build/js/application.js +2 -0
  16. data/app/assets/build/js/controllers/accordion_controller.js +21 -0
  17. data/app/assets/build/js/controllers/dynamic_select_controller.js +22 -0
  18. data/app/assets/build/js/controllers/index.js +33 -0
  19. data/app/assets/build/js/controllers/offline_controller.js +19 -0
  20. data/app/assets/build/js/controllers/reactive_text_controller.js +15 -0
  21. data/app/assets/build/js/controllers/text_counter_controller.js +38 -0
  22. data/app/assets/build/js/controllers/theme_controller.js +36 -0
  23. data/app/assets/build/js/controllers/trix_attachment_blocker_controller.js +15 -0
  24. data/app/assets/build/js/controllers/trix_autocomplete_controller.js +86 -0
  25. data/app/assets/build/js/controllers/trix_blockcode_controller.js +41 -0
  26. data/app/assets/build/js/controllers/trix_clipboard_controller.js +50 -0
  27. data/app/assets/build/js/controllers/trix_color_controller.js +49 -0
  28. data/app/assets/build/js/controllers/trix_highlight_controller.js +55 -0
  29. data/app/assets/build/js/controllers/trix_plyr_controller.js +86 -0
  30. data/app/assets/build/js/controllers/trix_toolbar_controller.js +48 -0
  31. data/app/assets/config/polivalente_manifest.js +1 -0
  32. data/app/assets/javascripts/polivalente/application.js +173 -0
  33. data/app/assets/stylesheets/polivalente/application.css +3 -14
  34. data/app/assets/stylesheets/polivalente/styles.css +1928 -0
  35. data/app/controllers/polivalente/application_controller.rb +2 -0
  36. data/app/controllers/polivalente/archives_controller.rb +18 -0
  37. data/app/controllers/polivalente/autocomplete_controller.rb +2 -3
  38. data/app/controllers/polivalente/comments_controller.rb +27 -0
  39. data/app/controllers/polivalente/trashes_controller.rb +18 -0
  40. data/app/controllers/polivalente/users_controller.rb +42 -0
  41. data/app/helpers/polivalente/gravatar_helper.rb +0 -4
  42. data/app/models/polivalente/tag.rb +1 -0
  43. data/app/views/layouts/polivalente/application.html.erb +9 -3
  44. data/app/views/polivalente/archives/_archive.html.erb +2 -0
  45. data/app/views/polivalente/archives/index.html.erb +3 -0
  46. data/app/views/polivalente/archives/show.html.erb +3 -0
  47. data/app/views/polivalente/autocomplete/tags.json.jbuilder +1 -0
  48. data/app/views/polivalente/autocomplete/users.json.jbuilder +1 -0
  49. data/app/views/polivalente/shared/_notices.html.erb +10 -0
  50. data/app/views/polivalente/shared/_offline_indicator.html.erb +10 -0
  51. data/app/views/polivalente/shared/_theme_toggle.html.erb +1 -0
  52. data/app/views/polivalente/tags/_cloud.html.erb +7 -0
  53. data/app/views/polivalente/tags/_list.html.erb +5 -0
  54. data/app/views/polivalente/tags/_tag.html.erb +1 -0
  55. data/app/views/polivalente/tags/_tag.json.jbuilder +4 -0
  56. data/app/views/polivalente/trashes/_trash.html.erb +2 -0
  57. data/app/views/polivalente/trashes/index.html.erb +3 -0
  58. data/app/views/polivalente/trashes/show.html.erb +3 -0
  59. data/app/views/polivalente/users/_form.html.erb +38 -0
  60. data/app/views/polivalente/users/_user.html.erb +4 -0
  61. data/app/views/polivalente/users/_user.json.jbuilder +4 -0
  62. data/app/views/polivalente/users/activities/_activity.html.erb +12 -0
  63. data/app/views/polivalente/users/activities/_recent.html.erb +17 -0
  64. data/app/views/polivalente/users/edit.html.erb +13 -0
  65. data/app/views/polivalente/users/related/_user.html.erb +14 -0
  66. data/app/views/polivalente/users/related/_users.html.erb +14 -0
  67. data/app/views/polivalente/users/show.html.erb +180 -0
  68. data/config/locales/en.yml +72 -0
  69. data/config/locales/es.yml +72 -0
  70. data/config/locales/fr.yml +74 -0
  71. data/config/locales/pt.yml +72 -0
  72. data/config/routes.rb +6 -0
  73. data/lib/generators/polivalente/install/install_generator.rb +1 -1
  74. data/lib/generators/polivalente/locales/locales_generator.rb +11 -0
  75. data/lib/generators/polivalente/templates/user.rb +3 -0
  76. data/lib/polivalente/engine.rb +1 -0
  77. data/lib/polivalente/version.rb +1 -1
  78. data/lib/polivalente.rb +3 -0
  79. metadata +107 -2
@@ -1,15 +1,4 @@
1
1
  /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
2
+ //= require polivalente/styles
3
+ //= require_self
4
+ */