tiptap-ruby 0.6.1 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/README.md +5 -1
- data/lib/tip_tap/json_renderable.rb +2 -2
- data/lib/tip_tap/node.rb +1 -1
- data/lib/tip_tap/nodes/text.rb +1 -1
- data/lib/tip_tap/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72933879434ba89c5d8e4098c88742ca7c0cba2695440de87a549583df48241d
|
4
|
+
data.tar.gz: f54733e71099b36b8cf59b3beb83a36f330930cc687c768ff9fad5256175ef74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec61a23fa173bf933d2296f7eab32d30192f2d2636004012e22bdf80df985c35dcf8438ef714c119a52e683db22493af03750c961fc2293dfe4486de884f07d4
|
7
|
+
data.tar.gz: e370161edd3717f8a22641e00a468254962c1cd3e4d3e1c89ff64c90d5d85a90e5872c245dfdd1351acf3f0ad076e0ff55eb8f7a024da21793e92a41868b133e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
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
|
+
|
9
|
+
## [0.7.0] - 2023-11-02
|
10
|
+
|
11
|
+
### Breaking
|
12
|
+
|
13
|
+
- Renamed `to_json` to `as_json` to follow Ruby/Rails convention.
|
14
|
+
|
15
|
+
## [0.6.1] - 2023-11-01
|
16
|
+
|
17
|
+
- Allow customizing the `separator` when calling `to_plain_text`.
|
18
|
+
|
19
|
+
## [0.6.0] - 2023-11-01
|
20
|
+
|
21
|
+
- Implement `Enumerable` for the `HasContent` module.
|
22
|
+
|
3
23
|
## [0.5.0] - 2023-10-30
|
4
24
|
|
5
25
|
- Make `Text` a subclass of `Node`.
|
data/README.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
A gem for parsing, generating, and rendering TipTap Documents and Nodes using Ruby.
|
4
4
|
|
5
|
+
## Note
|
6
|
+
|
7
|
+
This gem is under active development and is changing somewhat quickly. There is a chance that there may be breaking changes until a stable version is released.
|
8
|
+
|
5
9
|
## Installation
|
6
10
|
|
7
11
|
Install the gem and add to the application's Gemfile by executing:
|
@@ -55,7 +59,7 @@ Once you have a Document with some content you can render it to HTML, JSON, and
|
|
55
59
|
#### JSON
|
56
60
|
|
57
61
|
```ruby
|
58
|
-
document.
|
62
|
+
document.to_h # => { type: 'doc', content: […nodes]}
|
59
63
|
```
|
60
64
|
|
61
65
|
### HTML
|
@@ -9,9 +9,9 @@ module TipTap
|
|
9
9
|
end
|
10
10
|
|
11
11
|
# Generate a JSON object that is useable by the editor
|
12
|
-
def
|
12
|
+
def to_h
|
13
13
|
json = {type: type_name}
|
14
|
-
json = json.merge(content: content.map(&:
|
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
|
data/lib/tip_tap/node.rb
CHANGED
data/lib/tip_tap/nodes/text.rb
CHANGED
data/lib/tip_tap/version.rb
CHANGED
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.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chad Wilken
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionview
|