tiptap-ruby 0.5.0 → 0.6.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 +4 -4
- data/lib/tip_tap/has_content.rb +14 -2
- 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: fd7f762d8377a8a4b86b901315b1b4d3d5bc96abd58f6b469861e84ba87b6296
|
4
|
+
data.tar.gz: cfaa3409507308edef86236e01b3d563d023546f2fa75eb0c4d7a0b476bbb7d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99ceb0b18400d9c1549e433d4c5ed488797f9599366859ebd10d17d75b64a80ffb58628786e464abddb7caea42a58d2d1a498ce901ed96d14b026dcfda85c7b1
|
7
|
+
data.tar.gz: ac01ac19fd18f06518711922821b5477fc03bc56ea98797b7e4c8e2f35d4d6f9c59c333583a6c136a66d0007f7a1241987baa9c9e657dba812c6ae1b34b97c46
|
data/lib/tip_tap/has_content.rb
CHANGED
@@ -4,6 +4,8 @@ require "active_support/core_ext/hash"
|
|
4
4
|
|
5
5
|
module TipTap
|
6
6
|
module HasContent
|
7
|
+
include Enumerable
|
8
|
+
|
7
9
|
attr_reader :attrs, :content
|
8
10
|
|
9
11
|
def self.included(base)
|
@@ -20,13 +22,23 @@ module TipTap
|
|
20
22
|
yield self if block_given?
|
21
23
|
end
|
22
24
|
|
23
|
-
def
|
24
|
-
content.
|
25
|
+
def each
|
26
|
+
content.each { |child| yield child }
|
27
|
+
end
|
28
|
+
|
29
|
+
def find_node(type_class_or_name)
|
30
|
+
node_type = type_class_or_name.is_a?(String) ? TipTap.node_for(type_class_or_name) : type_class_or_name
|
31
|
+
find { |child| child.is_a?(node_type) }
|
25
32
|
end
|
26
33
|
|
27
34
|
def add_content(node)
|
28
35
|
@content << node
|
29
36
|
end
|
37
|
+
alias_method :<<, :add_content
|
38
|
+
|
39
|
+
def size
|
40
|
+
content.size
|
41
|
+
end
|
30
42
|
|
31
43
|
module ClassMethods
|
32
44
|
# Create a new instance from a TipTap JSON object.
|
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.6.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
|
+
date: 2023-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionview
|