lato_spaces 3.1.19 → 3.1.20
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/README.md +8 -1
- data/app/assets/config/lato_spaces_manifest.js +0 -2
- data/app/assets/javascripts/lato_spaces/application.js +1 -0
- data/app/assets/stylesheets/lato_spaces/application.scss +1 -1
- data/config/importmap.rb +1 -0
- data/lib/lato_spaces/engine.rb +8 -0
- data/lib/lato_spaces/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d4a4956f15178cebd281e446e02c153afdede8c3d643b043ac4efd7119176be
|
4
|
+
data.tar.gz: 114ce595974371d87b0511265422e7f41548498eac63b5a65312d8f35e4bbe47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c4f61e1eef81c9836d9907646eb452dbd047828b0f430370c03913fe8d24db9a5eae85514abd6348322decd6adbab5d02ecbfa19cf6bf74cd5cbc42399f70f6
|
7
|
+
data.tar.gz: 1d2d463a65cb52f4024761f749d6a03cdee6071322a466d7681b3501bcdd8541986548090ccb29e6fd7b1429d76b716dde4ef7ed48b10e631d5449552412f553
|
data/README.md
CHANGED
@@ -29,6 +29,13 @@ Rails.application.routes.draw do
|
|
29
29
|
end
|
30
30
|
```
|
31
31
|
|
32
|
+
Import Lato Spaces Js on **app/javascript/application.js** file:
|
33
|
+
```js
|
34
|
+
import "lato_spaces/application";
|
35
|
+
|
36
|
+
// ....
|
37
|
+
```
|
38
|
+
|
32
39
|
## Todo
|
33
40
|
|
34
41
|
### Manage models relations with spaces groups
|
@@ -54,7 +61,7 @@ end
|
|
54
61
|
Clone repository, install dependencies, run migrations and start:
|
55
62
|
|
56
63
|
```shell
|
57
|
-
$ git clone https://github.com/Lato-
|
64
|
+
$ git clone https://github.com/Lato-org/lato_spaces
|
58
65
|
$ cd lato_spaces
|
59
66
|
$ bundle
|
60
67
|
$ rails db:migrate
|
@@ -0,0 +1 @@
|
|
1
|
+
console.log("Lato Spaces JS loaded");
|
data/config/importmap.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
pin "lato_spaces/application", to: "lato_spaces/application.js"
|
data/lib/lato_spaces/engine.rb
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
module LatoSpaces
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
isolate_namespace LatoSpaces
|
4
|
+
|
5
|
+
initializer 'lato_spaces.importmap', before: 'importmap' do |app|
|
6
|
+
app.config.importmap.paths << root.join('config/importmap.rb')
|
7
|
+
end
|
8
|
+
|
9
|
+
initializer "lato_spaces.precompile" do |app|
|
10
|
+
app.config.assets.precompile << "lato_spaces_manifest.js"
|
11
|
+
end
|
4
12
|
end
|
5
13
|
end
|
data/lib/lato_spaces/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lato_spaces
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gregorio Galante
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -76,6 +76,7 @@ files:
|
|
76
76
|
- app/views/lato_spaces/memberships/create.html.erb
|
77
77
|
- app/views/layouts/lato_spaces/_group-form-extra_content.html.erb
|
78
78
|
- app/views/layouts/lato_spaces/_group-informations_content.html.erb
|
79
|
+
- config/importmap.rb
|
79
80
|
- config/locales/en.yml
|
80
81
|
- config/locales/it.yml
|
81
82
|
- config/routes.rb
|