importmap-jets 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +22 -0
- data/README.md +9 -0
- data/Rakefile +4 -0
- data/app/assets/javascripts/es-module-shims.js +926 -0
- data/app/assets/javascripts/es-module-shims.js.map +1 -0
- data/app/assets/javascripts/es-module-shims.min.js +3 -0
- data/app/helpers/importmap/importmap_tags_helper.rb +56 -0
- data/lib/importmap-jets.rb +1 -0
- data/lib/importmap_jets/autoloader.rb +23 -0
- data/lib/importmap_jets/engine.rb +36 -0
- data/lib/importmap_jets/reloader.rb +12 -0
- data/lib/importmap_jets/version.rb +5 -0
- data/lib/importmap_jets.rb +13 -0
- data/lib/tasks/importmap_tasks.rake +7 -0
- metadata +74 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0657363b6efabda2b1e1893b1ca66bbf6196f2910de3a49edc6fd976b99a3a78
|
4
|
+
data.tar.gz: 6120ee57892eafadbefd0a8639afd09536ad8c588b8b50ee23917ac845f4afa1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7fde4a90463af20b3e3287c6f174124e7b5e7056a184419e48dd4d80334c50d447443e0aa0668b6cad81ed5de3bb385800de84fd85a07b6c398a384cb082d590
|
7
|
+
data.tar.gz: 61524fbf63a42add8ac011866cfcda640306866d92fbf781b014041efc44621a5d8a01b9976d352d1551eefb826cc4b29f9934907aac1b4825ff509ac8e8e2a9
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) Tung Nguyen
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# Importmap for Jets
|
2
|
+
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/jets-responders.png)](http://badge.fury.io/rb/jets-responders)
|
4
|
+
|
5
|
+
[![BoltOps Badge](https://img.boltops.com/boltops/badges/boltops-badge.png)](https://www.boltops.com)
|
6
|
+
|
7
|
+
[![BoltOps Learn Badge](https://img.boltops.com/boltops-learn/boltops-learn.png)](https://learn.boltops.com)
|
8
|
+
|
9
|
+
This is a port of [importmap-rails](https://github.com/rails/importmap-rails) to support the [Ruby on Jets](https://rubyonjets.com/) framework. Credit goes to the original authors of that gem.
|
data/Rakefile
ADDED