vident-typed-view_component 0.13.1 → 0.14.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 +5 -0
  3. data/README.md +0 -53
  4. metadata +6 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8a835741cc2852e9b14cf601c58962bceeca925a578b0eeda47bfbc233dac0dd
4
- data.tar.gz: c50db627539ac521c5c5713cd7421bcebec16631e71a792e29e02c7c9ae04ef8
3
+ metadata.gz: d709462bc69c6a038ef103aa2fca6ad862268863ccde8213241df9f285936002
4
+ data.tar.gz: f4807e33a2ba051301fcc6969bdd15f1c8f56fdf7649c06a18e0c4f830b5ddcb
5
5
  SHA512:
6
- metadata.gz: e07e4871c958d485fe7617bd84b763c09d924889862138166e0fb33f0dbcd17a1474e7f09c85705a938fbb39bfe755e89615d0ee896d7e4d01ea6ca8add96259
7
- data.tar.gz: 22be56576e222155327efb2e2392997a779d3a758d329e4de262cc9637eb8726c60a3dda7af8b572e0f76409049a383c80eb7f11c1b0f413b706a4a1a9fcd713
6
+ metadata.gz: 4b56c3ba16c809475214c64ee8c6c6f9e56100fc362673ec39e31e2f8b1bcda5bcabcc83bc7f3a2fc3fd74e3831b79869bceb9414cdfab8ce347b224cb19f583
7
+ data.tar.gz: c18a2f654d4a528f696a434766be4de8d9367d6d109385ba2379b2d1f66776c8378f8e0a00f326e449189c5bbfc01590137d5e59995ec181cfe860ca4f2a30a4
data/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
  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
+ ## [0.14.0] - 2025-09-17
9
+
10
+ ## Breaking
11
+
12
+ Drop support for `better_html`
8
13
 
9
14
  ## [0.13.0] - 2024-04-07
10
15
 
data/README.md CHANGED
@@ -19,7 +19,6 @@ And then optional extra features:
19
19
  - `vident-typed-minitest`: Minitest integration for typed Vident components
20
20
  - `vident-typed-phlex`: Phlex integration for typed Vident components
21
21
  - `vident-typed-view_component`: ViewComponent integration for typed Vident
22
- - `vident-better_html`: Better HTML integration for Vident
23
22
 
24
23
  ## Directory Structure
25
24
 
@@ -30,12 +29,6 @@ vident/
30
29
  ├── lib/ # All gem code
31
30
  │ ├── vident.rb # Core entry point
32
31
  │ ├── vident-phlex.rb # Gem entry points
33
- │ ├── vident-better_html.rb
34
- │ ├── vident/ # Shared code
35
- │ ├── base.rb
36
- │ ├── phlex/ # Phlex integration
37
- │ ├── better_html/ # Better HTML integration
38
- │ └── ...
39
32
  ├── test/ # All tests
40
33
  │ ├── vident/ # Core tests
41
34
  │ ├── vident-phlex/ # Tests for each gem
@@ -652,52 +645,6 @@ Or install it yourself as:
652
645
  $ gem install vident-view_component
653
646
  ```
654
647
 
655
- ---
656
-
657
- ## gem: vident-better_html
658
-
659
- # Vident::BetterHtml
660
- Short description and motivation.
661
-
662
- ### Usage
663
- How to use my plugin.
664
-
665
- ```ruby
666
- BetterHtml.config = BetterHtml::Config.new(YAML.load(File.read(".better-html.yml")))
667
-
668
- BetterHtml.configure do |config|
669
- config.template_exclusion_filter = proc { |filename| !filename.start_with?(Rails.root.to_s) }
670
- end
671
- # ViewComponent needs to do this hack to work in certain cases
672
- # see https://github.com/Shopify/better-html/pull/98
673
- class BetterHtml::HtmlAttributes
674
- alias_method :to_s_without_html_safe, :to_s
675
-
676
- def to_s
677
- to_s_without_html_safe.html_safe
678
- end
679
- end
680
- ```
681
-
682
- ### Installation
683
- Add this line to your application's Gemfile:
684
-
685
- ```ruby
686
- gem "vident-better_html"
687
- ```
688
-
689
- And then execute:
690
- ```bash
691
- $ bundle
692
- ```
693
-
694
- Or install it yourself as:
695
- ```bash
696
- $ gem install vident-better_html
697
- ```
698
-
699
- ---
700
-
701
648
  ## gem: vident-phlex
702
649
 
703
650
  # Vident::Phlex
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vident-typed-view_component
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.1
4
+ version: 0.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Ierodiaconou
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-06-26 00:00:00.000000000 Z
10
+ date: 2025-09-17 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: railties
@@ -55,28 +55,28 @@ dependencies:
55
55
  requirements:
56
56
  - - "~>"
57
57
  - !ruby/object:Gem::Version
58
- version: 0.13.1
58
+ version: 0.14.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: 0.13.1
65
+ version: 0.14.1
66
66
  - !ruby/object:Gem::Dependency
67
67
  name: vident-view_component
68
68
  requirement: !ruby/object:Gem::Requirement
69
69
  requirements:
70
70
  - - "~>"
71
71
  - !ruby/object:Gem::Version
72
- version: 0.13.1
72
+ version: 0.14.1
73
73
  type: :runtime
74
74
  prerelease: false
75
75
  version_requirements: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - "~>"
78
78
  - !ruby/object:Gem::Version
79
- version: 0.13.1
79
+ version: 0.14.1
80
80
  description: Vident with ViewComponent & typed attributes
81
81
  email:
82
82
  - stevegeek@gmail.com