tiptap-ruby 0.9.2 → 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08e27c486a2bfa45e51accdc4133b9d1815f7c1fb00b69dada945719b3fec053'
4
- data.tar.gz: 518aeab3c5d4bf156331bfac2ab5c8436d71cfd1acddabbcce00cc8c2882ebf9
3
+ metadata.gz: '0492d7a3d71f1c04116a24773305134ed9c6c91170efa6dc34689a2acb9b2cdc'
4
+ data.tar.gz: a2ad51ac535e7d610cf769be234ce0c3fd3e3812712db7349c3f049c6322ca14
5
5
  SHA512:
6
- metadata.gz: 879418f4b6cc4d8f8824e4676037f31def9562607d2b2554f18b1a44b561666e1e75cbd5a43d5aca6e01a71a9a12c130d9eb877b054b2a8b0424a8f57201aea4
7
- data.tar.gz: 3c0393a1e0b94d1abdebafbf8083f46f37e627a3dec271bb5bbcd1d78ba2bfc91b5191617693695963eef5427c7dd32e4b91c374ea84c71cc0f16f0f1ccfa125
6
+ metadata.gz: 9a7e0d12c58cc24772e41d531d0e2ddf2e2b96fdc6a7722204884231e1dd4839e26abb1158ae6c1866cda0f82bad6a2151a32cf15e179370231d3795052e122e
7
+ data.tar.gz: d2582ec30236b67a8df45f3a8eb65c5d00a3d0fa8b45feab7497a01663d2845992b67dbd48080ca0b0abeadef9be9be4ad7d16cdf56af033c5d012b8dc591fbc
@@ -11,6 +11,13 @@ module TipTap
11
11
  def text(text, marks: [])
12
12
  add_content(Text.new(text, marks: marks))
13
13
  end
14
+
15
+ # Override the default to_plain_text method to account for the nested Text nodes
16
+ # we don't want to use the separator when joining the text nodes since it could
17
+ # be a newline or some other character that we don't want to include in the plain text
18
+ def to_plain_text(separator: " ")
19
+ content.map { |node| node.to_plain_text(separator: separator) }.join("")
20
+ end
14
21
  end
15
22
  end
16
23
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TipTap
4
- VERSION = "0.9.2"
4
+ VERSION = "0.9.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiptap-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chad Wilken
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-21 00:00:00.000000000 Z
11
+ date: 2024-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionview