tiptap-ruby 0.9.12 → 0.9.14

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: 4a0a40b9c23ed1c8eeb1c3647fa388a2d56bd0daf3c98312a9f58a653dca333f
4
- data.tar.gz: 5a87ef32fb583d65aa93755be40f183837c924144e5a94eb5ceed3c7a3046dd7
3
+ metadata.gz: f1d4a2286df0584889187a659b7589b206410ee43451f81b43a90ff3b18107a0
4
+ data.tar.gz: 6f6a4d0424fa4d3a9788daf08be0b58c0ab1be17c316309e88d11dbf96cb5885
5
5
  SHA512:
6
- metadata.gz: 595e2b238d23308e84794ad0f7a40ecfec32d0f080b271d7f3a0f33fba0b8f5426eb92e3e0cae1aa00354721cbdc9625821fcbc8bb943ee78a071f118e81c68a
7
- data.tar.gz: d6f45b9c5ea6f699622906ea92ab06ee546ff131924906062c48d4813f223ac3f099659dc216fe5dce5b1f60ad2e34aca86d506080c7d0b7c793960b758bda2e
6
+ metadata.gz: fb7f2be666c822fff4143d8580f7f70ea3123069b459effa5442412366ecd32a83ad80a55f6fab4587f10cb37a87317c5ef51bc5b0e5eb8c9c23557739ea2bd5
7
+ data.tar.gz: ee9eca3728c6c1c5961a40c9710a83ee72757606d138fc2031c489425cdc5ece5838526bf831be472c60aaa376e132a04a79e458709626696d5c08eefeb7dd00
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.9.14] - 2025-03-05
4
+
5
+ - Allow `alt` attribute for `Image` node.
6
+
7
+ ## [0.9.13] - 2025-02-19
8
+
9
+ - Update Nokogiri for CVE
10
+ - require URI explicity in HtmlRenderable
11
+ - Force set platform to ruby for Gemfile.lock
12
+
3
13
  ## [0.9.12] - 2024-12-20
4
14
 
5
15
  - Add inline styles when converting headings and paragraphs to HTML
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "action_view"
4
+ require "uri"
4
5
 
5
6
  module TipTap
6
7
  module HtmlRenderable
@@ -12,7 +12,11 @@ module TipTap
12
12
  end
13
13
 
14
14
  def to_html
15
- image_tag(src)
15
+ image_tag(src, alt: alt)
16
+ end
17
+
18
+ def alt
19
+ attrs["alt"]
16
20
  end
17
21
 
18
22
  def src
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TipTap
4
- VERSION = "0.9.12"
4
+ VERSION = "0.9.14"
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiptap-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.12
4
+ version: 0.9.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chad Wilken
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-20 00:00:00.000000000 Z
10
+ date: 2025-03-05 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: actionview
@@ -84,7 +83,6 @@ metadata:
84
83
  homepage_uri: https://github.com/CompanyCam/tiptap-ruby
85
84
  source_code_uri: https://github.com/CompanyCam/tiptap-ruby
86
85
  changelog_uri: https://github.com/CompanyCam/tiptap-ruby/blob/master/CHANGELOG.md
87
- post_install_message:
88
86
  rdoc_options: []
89
87
  require_paths:
90
88
  - lib
@@ -99,8 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
97
  - !ruby/object:Gem::Version
100
98
  version: '0'
101
99
  requirements: []
102
- rubygems_version: 3.5.22
103
- signing_key:
100
+ rubygems_version: 3.6.2
104
101
  specification_version: 4
105
102
  summary: Parse, generate and render TipTap documents in Ruby.
106
103
  test_files: []