lesli_dashboard 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
1
  module LesliDashboard
2
- VERSION = "0.1.0"
3
- BUILD = "1709501990"
2
+ VERSION = "0.2.0"
3
+ BUILD = "1709502821"
4
4
  end
data/readme.md ADDED
@@ -0,0 +1,71 @@
1
+ <p align="center">
2
+ <img width="90" alt="LesliDashboard logo" src="./app/assets/images/lesli_dashboard/dashboard-logo.svg" />
3
+ <h3 align="center">Administration area for the Lesli Framework.</h3>
4
+ </p>
5
+
6
+ <hr/>
7
+ <p align="center">
8
+ <a target="blank" href="https://rubygems.org/gems/lesli_dashboard">
9
+ <img src="https://badge.fury.io/rb/lesli_dashboard.svg" alt="Gem Version" height="24">
10
+ </a>
11
+ </p>
12
+ <hr/>
13
+
14
+ ### Quick start
15
+
16
+ ```shell
17
+ # Add LesliDashboard engine
18
+ bundle add lesli_dashboard
19
+ ```
20
+
21
+ ```shell
22
+ # Setup database
23
+ rake lesli:db:setup
24
+ ```
25
+
26
+ ```ruby
27
+ # Load LesliDashboard
28
+ Rails.application.routes.draw do
29
+ mount LesliDashboard::Engine => "/dashboard"
30
+ end
31
+ ```
32
+
33
+
34
+ ### Documentation
35
+ * [website](https://www.lesli.dev/dashboard/)
36
+ * [database](./docs/database.md)
37
+ * [documentation](https://www.lesli.dev/documentation/)
38
+
39
+
40
+ ### Get in touch with Lesli
41
+
42
+ * [Website: https://www.lesli.tech](https://www.lesli.tech)
43
+ * [Email: hello@lesli.tech](hello@lesli.tech)
44
+ * [Twitter: @LesliTech](https://twitter.com/LesliTech)
45
+
46
+
47
+ ### License
48
+ -------
49
+ Copyright (c) 2023, Lesli Technologies, S. A.
50
+
51
+ This program is free software: you can redistribute it and/or modify
52
+ it under the terms of the GNU General Public License as published by
53
+ the Free Software Foundation, either version 3 of the License, or
54
+ (at your option) any later version.
55
+
56
+ This program is distributed in the hope that it will be useful,
57
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
58
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
59
+ GNU General Public License for more details.
60
+
61
+ You should have received a copy of the GNU General Public License
62
+ along with this program. If not, see http://www.gnu.org/licenses/.
63
+
64
+ <hr />
65
+ <br />
66
+
67
+ <p align="center">
68
+ <img width="200" alt="Lesli logo" src="https://cdn.lesli.tech/lesli/brand/app-logo.svg" />
69
+ <h4 align="center">Ruby on Rails SaaS Development Framework.</h4>
70
+ </p>
71
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lesli_dashboard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Lesli Development Team
@@ -45,9 +45,9 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - README.md
49
48
  - Rakefile
50
49
  - app/assets/config/lesli_dashboard_manifest.js
50
+ - app/assets/images/lesli_dashboard/engine-dashboard.svg
51
51
  - app/assets/javascripts/lesli_dashboard/application.js
52
52
  - app/assets/stylesheets/lesli_dashboard/application.css
53
53
  - app/controllers/lesli_dashboard/application_controller.rb
@@ -76,6 +76,7 @@ files:
76
76
  - lib/vue/apps/assistant/show.vue
77
77
  - lib/vue/stores/translations.json
78
78
  - license
79
+ - readme.md
79
80
  homepage: https://www.lesli.dev/
80
81
  licenses:
81
82
  - GPL-3.0
data/README.md DELETED
@@ -1,28 +0,0 @@
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).