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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c608c2cf98abab79ac0e05afc614b5f9bb31df5eac5109fd56d1d4d11c9648e
4
- data.tar.gz: bef0de44e68e1a9f74376500241ed0500976525ac3ccd5fcac0ada4609db4758
3
+ metadata.gz: 7d4a4956f15178cebd281e446e02c153afdede8c3d643b043ac4efd7119176be
4
+ data.tar.gz: 114ce595974371d87b0511265422e7f41548498eac63b5a65312d8f35e4bbe47
5
5
  SHA512:
6
- metadata.gz: f9e1a566aad5ac9ab22379d2dd01acdfa05c6fa4607937cf22c3c097d7762e7a1ed1659f801a282f12a03ac75eccd550421973d81a8c3498fa22a266468f8840
7
- data.tar.gz: e4b9e6b1a17072af5f77beae8e845fe7d82f78b153eb14aca19d094aa9e00ab014f53a682cbe5e22eb68c4a88da5558de99b2e715b416cffd95ac79cc0a4ce35
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-GAM/lato_spaces
64
+ $ git clone https://github.com/Lato-org/lato_spaces
58
65
  $ cd lato_spaces
59
66
  $ bundle
60
67
  $ rails db:migrate
@@ -1,4 +1,2 @@
1
1
  //= link_directory ../stylesheets/lato_spaces .css
2
-
3
- //= link_directory ../images/lato_spaces .jpg
4
2
  //= link_tree ../javascripts/lato_spaces .js
@@ -0,0 +1 @@
1
+ console.log("Lato Spaces JS loaded");
@@ -12,4 +12,4 @@
12
12
  }
13
13
  }
14
14
  }
15
- }
15
+ }
@@ -0,0 +1 @@
1
+ pin "lato_spaces/application", to: "lato_spaces/application.js"
@@ -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
@@ -1,3 +1,3 @@
1
1
  module LatoSpaces
2
- VERSION = "3.1.19"
2
+ VERSION = "3.1.20"
3
3
  end
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.19
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: 2024-11-30 00:00:00.000000000 Z
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