tiptap-ruby 0.7.0 → 0.8.0

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: 4c3416b54084b6d2eee7cb1fa23e935d7fa495578a2dbfac7cb028f91c3bd62e
4
- data.tar.gz: 9e62d38585790d5efaaed7506f532c20fc6351644f71b370ba32d95638772ed5
3
+ metadata.gz: 72933879434ba89c5d8e4098c88742ca7c0cba2695440de87a549583df48241d
4
+ data.tar.gz: f54733e71099b36b8cf59b3beb83a36f330930cc687c768ff9fad5256175ef74
5
5
  SHA512:
6
- metadata.gz: 9b8c3a916a053f93f21b0735285bf99c8840b0a5ffed9769cc91ce217fa3bbf4c3e3a9f5a247f8c1c02b5f2f47ff635999d33d6ba3aa9587b7bc5917d8245776
7
- data.tar.gz: 10e9ae09b3b816041d63d4c8a7feda62f804757608ca49a897955b3acc240911e66d694df86b310bb0874f369bcf84b0466b763c721d8cf932fd8cc42f325397
6
+ metadata.gz: ec61a23fa173bf933d2296f7eab32d30192f2d2636004012e22bdf80df985c35dcf8438ef714c119a52e683db22493af03750c961fc2293dfe4486de884f07d4
7
+ data.tar.gz: e370161edd3717f8a22641e00a468254962c1cd3e4d3e1c89ff64c90d5d85a90e5872c245dfdd1351acf3f0ad076e0ff55eb8f7a024da21793e92a41868b133e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.8.0] - 2023-11-02
4
+
5
+ ### Breaking
6
+
7
+ - Renamed `as_json` to `to_h` details outlined in https://github.com/chadwilken/tiptap-ruby/issues/10.
8
+
3
9
  ## [0.7.0] - 2023-11-02
4
10
 
5
11
  ### Breaking
data/README.md CHANGED
@@ -59,7 +59,7 @@ Once you have a Document with some content you can render it to HTML, JSON, and
59
59
  #### JSON
60
60
 
61
61
  ```ruby
62
- document.as_json # => { type: 'doc', content: […nodes]}
62
+ document.to_h # => { type: 'doc', content: […nodes]}
63
63
  ```
64
64
 
65
65
  ### HTML
@@ -9,13 +9,12 @@ module TipTap
9
9
  end
10
10
 
11
11
  # Generate a JSON object that is useable by the editor
12
- def as_json
12
+ def to_h
13
13
  json = {type: type_name}
14
- json = json.merge(content: content.map(&:as_json)) if should_include_content?
14
+ json = json.merge(content: content.map(&:to_h)) if should_include_content?
15
15
  json = json.merge(attrs: attrs.deep_symbolize_keys) if attrs.present?
16
16
  json
17
17
  end
18
- alias_method :to_h, :as_json
19
18
 
20
19
  private
21
20
 
data/lib/tip_tap/node.rb CHANGED
@@ -12,9 +12,9 @@ require "tip_tap/has_content"
12
12
  module TipTap
13
13
  class Node
14
14
  include Registerable
15
+ include HasContent
15
16
  include HtmlRenderable
16
17
  include JsonRenderable
17
18
  include PlainTextRenderable
18
- include HasContent
19
19
  end
20
20
  end
@@ -21,7 +21,7 @@ module TipTap
21
21
  new(json["text"], marks: Array(json["marks"]))
22
22
  end
23
23
 
24
- def as_json
24
+ def to_h
25
25
  {type: type_name, text: text, marks: marks.map(&:deep_symbolize_keys)}.compact_blank
26
26
  end
27
27
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TipTap
4
- VERSION = "0.7.0"
4
+ VERSION = "0.8.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiptap-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chad Wilken