vident 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b58f418c48b9c37897a26d83c5b500bacd54c8f37cdb95bf549e5b283c00a36a
4
- data.tar.gz: f2f76b2518a26933cac78eb7c7eb3ab6c0c1091a0e0bca020c8672ed7b947594
3
+ metadata.gz: 2279071e93c86a27cab51ac5e30ce0d84ae5696434120043c6a2ebfaab40a4a3
4
+ data.tar.gz: 0e85654cb617dfffdfd42c6263f09c41c20a6d527dfb70d74fc71404b97cda13
5
5
  SHA512:
6
- metadata.gz: ab7baf21555430c664923fdfb1bbfc75a9eb8e56fef39839f1597951c48cf433c89d669898f429dcf87c724ccd5d016d89d06b82193db74dd57f7c3762a93392
7
- data.tar.gz: a93dd215124bd3b6799e8b1519db632ae6521ce091ae9515b6bf943a3fc5987e5cbc301ecf751f778a891ef0ef6c21161103b07978580c4ca2c6430b5d789d48
6
+ metadata.gz: 127bf0f2146fed5560fac39c40ec15f967ca55e96af800cb128d1524ed91be7aef13078d070de1b06a7801af32d7f79563a583709dbd0a20e0f72913ea9c0c02
7
+ data.tar.gz: 75aee42b5f6942857bcbd3267914ec3aa031c9a2bfa3ef2b3489f57fde5d172f75508a17b8ce6a89a95791a2b270d182e1194906a1e21eee818ffdc8068f3c70
data/lib/vident/base.rb CHANGED
@@ -33,7 +33,7 @@ module Vident
33
33
  end
34
34
 
35
35
  def identifier_name_path
36
- if ancestors.include?(Phlex::HTML)
36
+ if phlex_component?
37
37
  name.remove("Views::").underscore
38
38
  else
39
39
  name.underscore
@@ -44,6 +44,10 @@ module Vident
44
44
  path.split("/").map { |p| p.to_s.dasherize }.join("--")
45
45
  end
46
46
 
47
+ def phlex_component?
48
+ @phlex_component ||= ancestors.map(&:name).include?("Phlex::HTML")
49
+ end
50
+
47
51
  private
48
52
 
49
53
  # Define reader & presence check method, for performance use ivar directly
@@ -99,7 +103,7 @@ module Vident
99
103
  def parent_element(**options)
100
104
  @parent_element ||= begin
101
105
  # Note: we cant mix phlex and view_component render contexts
102
- klass = if self.class.ancestors.include?(Phlex::HTML)
106
+ klass = if self.class.phlex_component?
103
107
  RootComponent::UsingPhlexHTML
104
108
  else
105
109
  RootComponent::UsingViewComponent
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vident
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vident
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Ierodiaconou
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-26 00:00:00.000000000 Z
11
+ date: 2023-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport