heartml 1.0.0.beta18 → 1.0.0.beta19
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +4 -2
- data/lib/heartml/rails/view_component_base.rb +4 -2
- data/lib/heartml/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 957ffa951b074234c8310ab8991e450c476ebdf1344bca8d5fcecd3a259767c1
|
4
|
+
data.tar.gz: ce760c7746585d3cb5cf998afff77f22d2712cace268072a0d248032a5768a9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95fa3aaeff0ae1c429900993c87e198b6cf3b0257f226e8dc74d2dbbefc92c846d4a54ad5346f7bb8d623936d5bcb5b4213479a3bd8f17b5ad10b6fcb10c8328
|
7
|
+
data.tar.gz: 80c2f33c224e0e840a1911b6ec21c7c72f7d6a24ab27ab36dc27d63906ebf1913469b9ca82b54b370ccc3b815852db600ea1b29c19c975ae665f93735380fbfd
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
heartml (1.0.0.
|
4
|
+
heartml (1.0.0.beta19)
|
5
5
|
concurrent-ruby (~> 1.2)
|
6
6
|
nokolexbor (>= 0.4.2)
|
7
7
|
|
@@ -50,7 +50,9 @@ GEM
|
|
50
50
|
racc (~> 1.4)
|
51
51
|
nokogiri (1.16.2-x86_64-linux)
|
52
52
|
racc (~> 1.4)
|
53
|
-
nokolexbor (0.
|
53
|
+
nokolexbor (0.6.0)
|
54
|
+
nokolexbor (0.6.0-arm64-darwin)
|
55
|
+
nokolexbor (0.6.0-x86_64-linux)
|
54
56
|
parallel (1.24.0)
|
55
57
|
parser (3.3.0.5)
|
56
58
|
ast (~> 2.4.1)
|
@@ -28,13 +28,15 @@ module Heartml
|
|
28
28
|
|
29
29
|
def inherited(klass)
|
30
30
|
super(klass)
|
31
|
-
klass.
|
32
|
-
klass.virtual_path = klass.
|
31
|
+
klass.identifier = caller_locations(1, 10).reject { |l| l.label == "inherited" }[0].path
|
32
|
+
klass.virtual_path = klass.identifier.gsub(
|
33
33
|
%r{(.*#{Regexp.quote(ViewComponent::Base.config.view_component_path)})|(\.rb)}, ""
|
34
34
|
)
|
35
35
|
Heartml::ServerEffects.included_extras(klass)
|
36
36
|
klass.directives.merge! directives
|
37
37
|
end
|
38
|
+
|
39
|
+
def source_location = identifier
|
38
40
|
end
|
39
41
|
end
|
40
42
|
end
|
data/lib/heartml/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: heartml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.beta19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jared White
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '0'
|
90
90
|
requirements: []
|
91
|
-
rubygems_version: 3.5.
|
91
|
+
rubygems_version: 3.5.16
|
92
92
|
signing_key:
|
93
93
|
specification_version: 4
|
94
94
|
summary: Server-rendered web components
|