hotwire_combobox 0.1.19 → 0.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: 1a775e0facfeadc8692735916fa883634dd6e27b8069f0222d019ac965301640
4
- data.tar.gz: 2961eb0baa6b5391e39f804037ece8e0ac7912d625a72bf52d280aa34da7fa41
3
+ metadata.gz: c9a3f3fe4f81cae0c51f95b6037012389fac56c391c0550fb9fe2c8e7343e5a6
4
+ data.tar.gz: d6d4d3c408817ae41f702aa723711910e2e48e8b11ae67024a126f696295198c
5
5
  SHA512:
6
- metadata.gz: d01630a09a9ab1b665315613ed4e08c9d630c48c9d175f9d72c41284e9c7638cc6c7667f883676899342acb45d041688b1c1ea0cabe7e21269484bdbb7ba8c9e
7
- data.tar.gz: 99721fffb5e3a7c26da281024c6102b0c88767b1cd8fec296c6231a04608b3d31a2c6dcf22420314dfdd8b2a2fce7663b5ec5ecc065cc88063c6aa5eae7500e2
6
+ metadata.gz: 006ead653d067fbf6775600b889a3ec2fab2987f7796c64fe16df17a5806ea65bb8ef465b1e9d852b09109e567f00a093ab59189c66816add8cf0904adf934c7
7
+ data.tar.gz: 3c5dc978a6ef14b3e8be7c3c8112aa3fd290a7103e4fd6849a2e387ae1df70b6b074e8351429e54d9f72664075932ffd0612576d4f944c2c919b5053ed5c5076
@@ -0,0 +1,2 @@
1
+ //= link_directory ../stylesheets .css
2
+ //= link_tree ../javascripts .js
@@ -26,10 +26,7 @@ module HotwireCombobox
26
26
 
27
27
  initializer "hotwire_combobox.assets.precompile" do |app|
28
28
  if Rails.application.config.respond_to?(:assets)
29
- Dir.glob(Engine.root.join("app/assets/**/*.{js,css}")).each do |path|
30
- logical_path = Pathname.new(path).relative_path_from(Pathname.new(Engine.root.join("app/assets"))).to_s
31
- app.config.assets.precompile << logical_path
32
- end
29
+ app.config.assets.precompile << "hw_combobox_manifest.js"
33
30
  end
34
31
  end
35
32
  end
@@ -1,3 +1,3 @@
1
1
  module HotwireCombobox
2
- VERSION = "0.1.19"
2
+ VERSION = "0.1.20"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hotwire_combobox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.19
4
+ version: 0.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Farias
@@ -90,6 +90,7 @@ files:
90
90
  - MIT-LICENSE
91
91
  - README.md
92
92
  - Rakefile
93
+ - app/assets/config/hw_combobox_manifest.js
93
94
  - app/assets/javascripts/controllers/application.js
94
95
  - app/assets/javascripts/controllers/hw_combobox_controller.js
95
96
  - app/assets/javascripts/controllers/index.js