hotwire_combobox 0.1.29 → 0.1.30

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: 14372fcb04782e802cee0f9efdb185b7e7c2e4287777eb41516497dfccc52c16
4
- data.tar.gz: f48fb08f024f98b609f1df2c1957df5061d7ab2753481c9e92490e3098752467
3
+ metadata.gz: 4893ac34075f430aae8ba9b29af13ef5338bf978c55147c661b372e5f19b5d57
4
+ data.tar.gz: 38b85aecdc36491ff46d073736dbf8613fc0b6457bd1ef6ed6b3e8819510665f
5
5
  SHA512:
6
- metadata.gz: 227c87a2d231ddaddf2ae337137cb838598b43a9d840efbf6dab74fe14a3f3c00c3eee1afb03a9bd0acd30ddfd171fd9c62828bcd1d6fcb0a3614f5ad4e6e276
7
- data.tar.gz: c8d7917a0034990b07c58bef3f9deeaf8790258b4a7169dab940769513fdc338d0e7433bf275240ef3af9c5086cc2c2645efde2112a4f61e274423a5b433d8d9
6
+ metadata.gz: f8c578b4daeafe222b0b22f8b826ba1600f0b853f4daad6e5bba70374318a32e866975a607c5820dd2c626f3cac383e9aa28b8febead4059bbaba32315653a1d
7
+ data.tar.gz: 9591dc2130c1574ee2afd95c0483e172028fa68bc0cbfed88d0dfc8aa3f6c50fdaa53e50dbaa35eac2dac75da85c3e80aaaf8051484bdf4cc08738cd2bdc5836
@@ -4,7 +4,8 @@ module HotwireCombobox
4
4
 
5
5
  initializer "hotwire_combobox.view_helpers" do
6
6
  ActiveSupport.on_load :action_view do
7
- include HotwireCombobox::Helper
7
+ require "hotwire_combobox/helper"
8
+ ActionView::Base.include HotwireCombobox::Helper
8
9
 
9
10
  unless HotwireCombobox.bypass_convenience_methods?
10
11
  module FormBuilderExtensions
@@ -1,3 +1,3 @@
1
1
  module HotwireCombobox
2
- VERSION = "0.1.29"
2
+ VERSION = "0.1.30"
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.29
4
+ version: 0.1.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Farias
@@ -83,7 +83,6 @@ files:
83
83
  - app/assets/javascripts/vendor/bodyScrollLock.js
84
84
  - app/assets/javascripts/vendor/requestjs.js
85
85
  - app/assets/stylesheets/hotwire_combobox.css
86
- - app/helpers/hotwire_combobox/helper.rb
87
86
  - app/presenters/hotwire_combobox/component.rb
88
87
  - app/presenters/hotwire_combobox/listbox/option.rb
89
88
  - app/views/hotwire_combobox/_combobox.html.erb
@@ -97,6 +96,7 @@ files:
97
96
  - config/importmap.rb
98
97
  - lib/hotwire_combobox.rb
99
98
  - lib/hotwire_combobox/engine.rb
99
+ - lib/hotwire_combobox/helper.rb
100
100
  - lib/hotwire_combobox/version.rb
101
101
  homepage: https://github.com/josefarias/hotwire_combobox
102
102
  licenses:
File without changes