lesli_dashboard 0.1.0

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.
Files changed (33) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +28 -0
  3. data/Rakefile +5 -0
  4. data/app/assets/config/lesli_dashboard_manifest.js +38 -0
  5. data/app/assets/javascripts/lesli_dashboard/application.js +1 -0
  6. data/app/assets/stylesheets/lesli_dashboard/application.css +1 -0
  7. data/app/controllers/lesli_dashboard/application_controller.rb +4 -0
  8. data/app/controllers/lesli_dashboard/assistants_controller.rb +60 -0
  9. data/app/helpers/lesli_dashboard/application_helper.rb +4 -0
  10. data/app/helpers/lesli_dashboard/assistants_helper.rb +4 -0
  11. data/app/jobs/lesli_dashboard/application_job.rb +4 -0
  12. data/app/mailers/lesli_dashboard/application_mailer.rb +6 -0
  13. data/app/models/lesli_dashboard/application_record.rb +5 -0
  14. data/app/models/lesli_dashboard/assistant.rb +4 -0
  15. data/app/views/layouts/lesli_dashboard/application.html.erb +15 -0
  16. data/app/views/lesli_dashboard/assistants/edit.html.erb +10 -0
  17. data/app/views/lesli_dashboard/assistants/index.html.erb +14 -0
  18. data/app/views/lesli_dashboard/assistants/new.html.erb +9 -0
  19. data/app/views/lesli_dashboard/assistants/show.html.erb +1 -0
  20. data/config/locales/translations.en.yml +20 -0
  21. data/config/locales/translations.es.yml +20 -0
  22. data/config/routes.rb +35 -0
  23. data/db/migrate/20240303035734_create_lesli_dashboard_assistants.rb +8 -0
  24. data/lib/lesli_dashboard/engine.rb +44 -0
  25. data/lib/lesli_dashboard/version.rb +4 -0
  26. data/lib/lesli_dashboard.rb +6 -0
  27. data/lib/scss/application.scss +0 -0
  28. data/lib/tasks/lesli_dashboard_tasks.rake +4 -0
  29. data/lib/vue/application.js +54 -0
  30. data/lib/vue/apps/assistant/show.vue +33 -0
  31. data/lib/vue/stores/translations.json +48 -0
  32. data/license +674 -0
  33. metadata +105 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6def6f26cb9c1dfc1af6e3afd0a2cbca64317acfb50303f2edd3b54859730c6f
4
+ data.tar.gz: e43d2bce5b0aa6e23dbdb3f50ed3cbd0e5060959636d78e04a26fe2aa038e58b
5
+ SHA512:
6
+ metadata.gz: fdefc67df8bf3606088c7eabcc4a9c75ae2dce95db452aac2568ec7078abb07d198228bd3e93f63dc632c239453e9b939206d93a81385bb4a9be1e8160c73840
7
+ data.tar.gz: 518abd351a64ae2fd476761f6f037e98bfc8b0d377493e4285b057d1d9b82b7f81241ff453cbd7af40f687f9e2f143c8bb2d18469b7f45bee7b9527bd74d2900
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # LesliDashboard
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem "lesli_dashboard"
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install lesli_dashboard
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,5 @@
1
+ require "bundler/setup"
2
+
3
+ load "rails/tasks/statistics.rake"
4
+
5
+ require "bundler/gem_tasks"
@@ -0,0 +1,38 @@
1
+ /*
2
+
3
+ Lesli
4
+
5
+ Copyright (c) 2023, Lesli Technologies, S. A.
6
+
7
+ This program is free software: you can redistribute it and/or modify
8
+ it under the terms of the GNU General Public License as published by
9
+ the Free Software Foundation, either version 3 of the License, or
10
+ (at your option) any later version.
11
+
12
+ This program is distributed in the hope that it will be useful,
13
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ GNU General Public License for more details.
16
+
17
+ You should have received a copy of the GNU General Public License
18
+ along with this program. If not, see http://www.gnu.org/licenses/.
19
+
20
+ Lesli · Ruby on Rails SaaS development platform.
21
+
22
+ Made with ♥ by https://www.lesli.tech
23
+ Building a better future, one line of code at a time.
24
+
25
+ @contact hello@lesli.tech
26
+ @website https://www.lesli.tech
27
+ @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
28
+
29
+ // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
30
+ // ·
31
+ */
32
+
33
+ //= link_tree ../images/lesli_dashboard .png
34
+ //= link_tree ../images/lesli_dashboard .jpg
35
+ //= link_tree ../images/lesli_dashboard .svg
36
+
37
+ //= link lesli_dashboard/application.css
38
+ //= link lesli_dashboard/application.js