vident-phlex 2.0.0 → 2.0.1

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +7 -0
  3. data/lib/vident-phlex.rb +8 -0
  4. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6fd97e08c66d8473338aded609cf45f63d982dddc72e376a598218a5224139c5
4
- data.tar.gz: 15db0bb5c243e378327792710e491b49c93ab185a0286730e1420d8eae0de2e0
3
+ metadata.gz: cdf84f000e9046e59015ac323eb5cedcdfd91405c93cd796161179f33d8f0f8a
4
+ data.tar.gz: a567dbfc018d5f3a12902fc2c3efd23587d1a6c2533e8a1a2d1a0aaa5937603d
5
5
  SHA512:
6
- metadata.gz: e53d2df34d5720dbd801139e0326bc2837b6af70d4a6ef6a3bbe6b718c8021275931a5adae8b1ce409063aec68c9f286af5aa1ba434e91ca97dc812331506f73
7
- data.tar.gz: 4ea8a5f6707e92a0340bb8f409d33533eac3cd509e4e4f0e108218d303cbb077e3965ec551c8f0f9a8bcfd4fd73e817b98f336923e02258aaf5d452507b242ba
6
+ metadata.gz: 70bdb5431b9b760409e29daa8614ee8af074f6980e13d13daea6c8192f048456bdd78db63712082d54259ed1ea76ff217b2d37cac79b09386ca38a3743403bfd
7
+ data.tar.gz: 00cb73db841a2e10b28dbed5f96e7adf0ef1f11f5090e3dcc0786ce0f3f8d2dd86a44e985e5ecef3ed394dc77e7104f32980d46db88fd1ef04d93223b0c5568e
data/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
8
 
9
+ ## [2.0.1] - 2026-04-24
10
+
11
+ ### Fixed
12
+
13
+ - Base gem no longer fails to load when installed without the adapter gems — adapter requires moved to their own entry points (`lib/vident-phlex.rb`, `lib/vident-view_component.rb`) (#29).
14
+
15
+
9
16
  ## [2.0.0] - 2026-04-24
10
17
 
11
18
  Vident 2.0 is a ground-up rearchitecture of the DSL, attribute resolution, and composition model. The public shape of `stimulus do ... end`, `root_element`, `child_element`, outlets, props, and the `stimulus_*:` prop/kwarg API is preserved for common cases, but several internals and a handful of edge-case behaviours changed. See `doc/reviews/v1-gotchas.md` for the full list of fixed gotchas; the highlights are below.
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Entry point for the `vident-phlex` gem — loaded automatically by
4
+ # `Bundler.require` when `gem "vident-phlex"` is in the Gemfile.
5
+
6
+ require "phlex"
7
+ require "vident"
8
+ require "vident/phlex"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vident-phlex
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Ierodiaconou
@@ -55,14 +55,14 @@ dependencies:
55
55
  requirements:
56
56
  - - "~>"
57
57
  - !ruby/object:Gem::Version
58
- version: 2.0.0
58
+ version: 2.0.1
59
59
  type: :runtime
60
60
  prerelease: false
61
61
  version_requirements: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - "~>"
64
64
  - !ruby/object:Gem::Version
65
- version: 2.0.0
65
+ version: 2.0.1
66
66
  - !ruby/object:Gem::Dependency
67
67
  name: phlex
68
68
  requirement: !ruby/object:Gem::Requirement
@@ -113,6 +113,7 @@ files:
113
113
  - CHANGELOG.md
114
114
  - LICENSE.txt
115
115
  - README.md
116
+ - lib/vident-phlex.rb
116
117
  - lib/vident/phlex.rb
117
118
  - lib/vident/phlex/html.rb
118
119
  homepage: https://github.com/stevegeek/vident