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
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lesli_dashboard
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - The Lesli Development Team
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-03-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 7.0.6
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 7.0.6
27
+ - !ruby/object:Gem::Dependency
28
+ name: lesli
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '5'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '5'
41
+ description: Administration area for the Lesli Framework
42
+ email:
43
+ - hello@lesli.tech
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - README.md
49
+ - Rakefile
50
+ - app/assets/config/lesli_dashboard_manifest.js
51
+ - app/assets/javascripts/lesli_dashboard/application.js
52
+ - app/assets/stylesheets/lesli_dashboard/application.css
53
+ - app/controllers/lesli_dashboard/application_controller.rb
54
+ - app/controllers/lesli_dashboard/assistants_controller.rb
55
+ - app/helpers/lesli_dashboard/application_helper.rb
56
+ - app/helpers/lesli_dashboard/assistants_helper.rb
57
+ - app/jobs/lesli_dashboard/application_job.rb
58
+ - app/mailers/lesli_dashboard/application_mailer.rb
59
+ - app/models/lesli_dashboard/application_record.rb
60
+ - app/models/lesli_dashboard/assistant.rb
61
+ - app/views/layouts/lesli_dashboard/application.html.erb
62
+ - app/views/lesli_dashboard/assistants/edit.html.erb
63
+ - app/views/lesli_dashboard/assistants/index.html.erb
64
+ - app/views/lesli_dashboard/assistants/new.html.erb
65
+ - app/views/lesli_dashboard/assistants/show.html.erb
66
+ - config/locales/translations.en.yml
67
+ - config/locales/translations.es.yml
68
+ - config/routes.rb
69
+ - db/migrate/20240303035734_create_lesli_dashboard_assistants.rb
70
+ - lib/lesli_dashboard.rb
71
+ - lib/lesli_dashboard/engine.rb
72
+ - lib/lesli_dashboard/version.rb
73
+ - lib/scss/application.scss
74
+ - lib/tasks/lesli_dashboard_tasks.rake
75
+ - lib/vue/application.js
76
+ - lib/vue/apps/assistant/show.vue
77
+ - lib/vue/stores/translations.json
78
+ - license
79
+ homepage: https://www.lesli.dev/
80
+ licenses:
81
+ - GPL-3.0
82
+ metadata:
83
+ homepage_uri: https://www.lesli.dev/
84
+ changelog_uri: https://github.com/LesliTech/LesliDashboard
85
+ source_code_uri: https://github.com/LesliTech/LesliDashboard
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '2.7'
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubygems_version: 3.3.7
102
+ signing_key:
103
+ specification_version: 4
104
+ summary: Administration area for the Lesli Framework
105
+ test_files: []