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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b5bbe4c65f744b46c84b6fb6949994e9ebe78301f6e73fcb0ce91590d37a128
4
- data.tar.gz: acfe3bf54d39db1737d5a46a86c9aabfd06437c2287b13bbe1b59634049acdae
3
+ metadata.gz: 957ffa951b074234c8310ab8991e450c476ebdf1344bca8d5fcecd3a259767c1
4
+ data.tar.gz: ce760c7746585d3cb5cf998afff77f22d2712cace268072a0d248032a5768a9d
5
5
  SHA512:
6
- metadata.gz: ddca7cfd38b3ddb634a3791cfbf4fb0425a24f222f58139a5d5f67388503f0afb0654a1c663f600b1fe1eeb64affe71a9d60f9ea047001486baf580e38cdedc3
7
- data.tar.gz: 0ae6a4dd6e06c6e3bf6fb4ec9eafe482d76fea77b346a6493f96a7f6b39cad06a7e2774b8c8457cca438c58914bf1ce86d91f53bf17fbb0e9aea225fc7895edc
6
+ metadata.gz: 95fa3aaeff0ae1c429900993c87e198b6cf3b0257f226e8dc74d2dbbefc92c846d4a54ad5346f7bb8d623936d5bcb5b4213479a3bd8f17b5ad10b6fcb10c8328
7
+ data.tar.gz: 80c2f33c224e0e840a1911b6ec21c7c72f7d6a24ab27ab36dc27d63906ebf1913469b9ca82b54b370ccc3b815852db600ea1b29c19c975ae665f93735380fbfd
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.0.0.beta19] — 2025-03-16
6
+
7
+ - Update to minimum support for ViewComponent 3.21.0 API
8
+
5
9
  ## [1.0.0.beta18] — 2024-11-27
6
10
 
7
11
  - Simplifications and improvements to server directive syntax and CSS handling [#1]
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- heartml (1.0.0.beta18)
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.5.2)
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.source_location = caller_locations(1, 10).reject { |l| l.label == "inherited" }[0].path
32
- klass.virtual_path = klass.source_location.gsub(
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
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Heartml
4
4
  # @return [String]
5
- VERSION = "1.0.0.beta18"
5
+ VERSION = "1.0.0.beta19"
6
6
  end
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.beta18
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: 2024-11-28 00:00:00.000000000 Z
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.3
91
+ rubygems_version: 3.5.16
92
92
  signing_key:
93
93
  specification_version: 4
94
94
  summary: Server-rendered web components